Class ApplicationLocalState
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.ApplicationLocalState
-
public class ApplicationLocalState extends PathResponse
Stores local state associated with an application.
-
-
Field Summary
Fields Modifier and Type Field Description BigIntegerclosedOutAtRoundRound when account closed out of the application.BooleandeletedWhether or not the application local state is currently deleted from its account.LongidThe application which this local state is for.List<TealKeyValue>keyValuestorage.BigIntegeroptedInAtRoundRound when the account opted into the application.ApplicationStateSchemaschemaschema.
-
Constructor Summary
Constructors Constructor Description ApplicationLocalState()
-
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
-
closedOutAtRound
public BigInteger closedOutAtRound
Round when account closed out of the application.
-
deleted
public Boolean deleted
Whether or not the application local state is currently deleted from its account.
-
id
public Long id
The application which this local state is for.
-
keyValue
public List<TealKeyValue> keyValue
storage.
-
optedInAtRound
public BigInteger optedInAtRound
Round when the account opted into the application.
-
schema
public ApplicationStateSchema schema
schema.
-
-