Class ApplicationStateOperation
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.ApplicationStateOperation
-
public class ApplicationStateOperation extends PathResponse
An operation against an application's global/local/box state.
-
-
Constructor Summary
Constructors Constructor Description ApplicationStateOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
account()
void
account(String account)
For local state changes, the address of the account associated with the local state.boolean
equals(Object o)
String
key()
void
key(String base64Encoded)
The key (name) of the global/local/box state.-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
account
public Address account
-
appStateType
public String appStateType
Type of application state. Value `g` is global state , `l` is local state , `b` is boxes .
-
key
public byte[] key
-
newValue
public AvmValue newValue
Represents an AVM value.
-
operation
public String operation
Operation type. Value `w` is write , `d` is delete .
-
-
Method Detail
-
account
public void account(String account) throws NoSuchAlgorithmException
For local state changes, the address of the account associated with the local state.- Throws:
NoSuchAlgorithmException
-
account
public String account() throws NoSuchAlgorithmException
- Throws:
NoSuchAlgorithmException
-
key
public void key(String base64Encoded)
The key (name) of the global/local/box state.
-
key
public String key()
-
-