github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/account_application_response.go (about) 1 package models 2 3 // AccountApplicationResponse accountApplicationResponse describes the account's 4 // application local state and global state (AppLocalState and AppParams, if either 5 // exists) for a specific application ID. Global state will only be returned if the 6 // provided address is the application's creator. 7 type AccountApplicationResponse struct { 8 // AppLocalState (appl) the application local data stored in this account. 9 // The raw account uses `AppLocalState` for this type. 10 AppLocalState ApplicationLocalState `json:"app-local-state,omitempty"` 11 12 // CreatedApp (appp) parameters of the application created by this account 13 // including app global data. 14 // The raw account uses `AppParams` for this type. 15 CreatedApp ApplicationParams `json:"created-app,omitempty"` 16 17 // Round the round for which this information is relevant. 18 Round uint64 `json:"round"` 19 }