Class ApplicationInitialStates
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.ApplicationInitialStates
-
public class ApplicationInitialStates extends PathResponse
An application's initial global/local/box states that were accessed during simulation.
-
-
Field Summary
Fields Modifier and Type Field Description ApplicationKVStorage
appBoxes
An application's global/local/box state.ApplicationKVStorage
appGlobals
An application's global/local/box state.List<ApplicationKVStorage>
appLocals
An application's initial local states tied to different accounts.BigInteger
id
Application index.
-
Constructor Summary
Constructors Constructor Description ApplicationInitialStates()
-
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
-
appBoxes
public ApplicationKVStorage appBoxes
An application's global/local/box state.
-
appGlobals
public ApplicationKVStorage appGlobals
An application's global/local/box state.
-
appLocals
public List<ApplicationKVStorage> appLocals
An application's initial local states tied to different accounts.
-
id
public BigInteger id
Application index.
-
-