Class AccountApplicationResource
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.AccountApplicationResource
-
public class AccountApplicationResource extends PathResponse
AccountApplicationResource describes the account's application resource (local state and params if the account is the creator) for a specific application ID.
-
-
Field Summary
Fields Modifier and Type Field Description ApplicationLocalStateappLocalState(appl) the application local data stored in this account.LongcreatedAtRoundRound when the account opted into or created the application.BooleandeletedWhether the application has been deleted.LongidThe application ID.ApplicationParamsparams(appp) parameters of the application created by this account including app global data.
-
Constructor Summary
Constructors Constructor Description AccountApplicationResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
appLocalState
public ApplicationLocalState appLocalState
(appl) the application local data stored in this account. The raw account uses `AppLocalState` for this type.
-
createdAtRound
public Long createdAtRound
Round when the account opted into or created the application.
-
deleted
public Boolean deleted
Whether the application has been deleted.
-
id
public Long id
The application ID.
-
params
public ApplicationParams params
(appp) parameters of the application created by this account including app global data. The raw account uses `AppParams` for this type. Only present if the account is the creator and `include=params` is specified.
-
-