Class StateSchema
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.StateSchema
-
public class StateSchema extends PathResponse
Represents a (apls) local-state or (apgs) global-state schema. These schemas determine how much storage may be used in a local-state or global-state for an application. The more space used, the larger minimum balance must be maintained in the account holding the data.
-
-
Field Summary
Fields Modifier and Type Field Description BigInteger
numByteSlice
Maximum number of TEAL byte slices that may be stored in the key/value store.BigInteger
numUint
Maximum number of TEAL uints that may be stored in the key/value store.
-
Constructor Summary
Constructors Constructor Description StateSchema()
-
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
-
numByteSlice
public BigInteger numByteSlice
Maximum number of TEAL byte slices that may be stored in the key/value store.
-
numUint
public BigInteger numUint
Maximum number of TEAL uints that may be stored in the key/value store.
-
-