Class AvmValue
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.AvmValue
-
public class AvmValue extends PathResponse
Represents an AVM value.
-
-
Field Summary
Fields Modifier and Type Field Description byte[]
bytes
Long
type
value type.BigInteger
uint
uint value.
-
Constructor Summary
Constructors Constructor Description AvmValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
bytes()
void
bytes(String base64Encoded)
bytes value.boolean
equals(Object o)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
bytes
public byte[] bytes
-
type
public Long type
value type. Value `1` refers to bytes , value `2` refers to uint64
-
uint
public BigInteger uint
uint value.
-
-