github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/application.go (about) 1 package models 2 3 // Application application index and its parameters 4 type Application struct { 5 // CreatedAtRound round when this application was created. 6 CreatedAtRound uint64 `json:"created-at-round,omitempty"` 7 8 // Deleted whether or not this application is currently deleted. 9 Deleted bool `json:"deleted,omitempty"` 10 11 // DeletedAtRound round when this application was deleted. 12 DeletedAtRound uint64 `json:"deleted-at-round,omitempty"` 13 14 // Id (appidx) application index. 15 Id uint64 `json:"id"` 16 17 // Params (appparams) application parameters. 18 Params ApplicationParams `json:"params"` 19 }