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 java.math.BigInteger
numByteSlice
Maximum number of TEAL byte slices that may be stored in the key/value store.java.math.BigInteger
numUint
Maximum number of TEAL uints that may be stored in the key/value store. -
Constructor Summary
Constructors Constructor Description StateSchema()
-
Method Summary
Modifier and Type Method Description boolean
equals(java.lang.Object o)
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
numByteSlice
public java.math.BigInteger numByteSliceMaximum number of TEAL byte slices that may be stored in the key/value store. -
numUint
public java.math.BigInteger numUintMaximum number of TEAL uints that may be stored in the key/value store.
-
-
Constructor Details
-
StateSchema
public StateSchema()
-
-
Method Details
-
equals
public boolean equals(java.lang.Object o)- Overrides:
equals
in classjava.lang.Object
-