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 BigInteger
closedOutAtRound
Round when account closed out of the application.Boolean
deleted
Whether or not the application local state is currently deleted from its account.Long
id
The application which this local state is for.List<TealKeyValue>
keyValue
storage.BigInteger
optedInAtRound
Round when the account opted into the application.ApplicationStateSchema
schema
schema.
-
Constructor Summary
Constructors Constructor Description ApplicationLocalState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(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.
-
-