github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/application_local_states_response.go (about) 1 package models 2 3 // ApplicationLocalStatesResponse 4 type ApplicationLocalStatesResponse struct { 5 // AppsLocalStates 6 AppsLocalStates []ApplicationLocalState `json:"apps-local-states"` 7 8 // CurrentRound round at which the results were computed. 9 CurrentRound uint64 `json:"current-round"` 10 11 // NextToken used for pagination, when making another request provide this token 12 // with the next parameter. 13 NextToken string `json:"next-token,omitempty"` 14 }