Class Asset
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.Asset
-
public class Asset extends PathResponse
Specifies both the unique identifier and the parameters for an asset
-
-
Field Summary
Fields Modifier and Type Field Description BigInteger
createdAtRound
Round during which this asset was created.Boolean
deleted
Whether or not this asset is currently deleted.BigInteger
destroyedAtRound
Round during which this asset was destroyed.Long
index
unique asset identifierAssetParams
params
AssetParams specifies the parameters for an asset.
-
Constructor Summary
Constructors Constructor Description Asset()
-
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
-
createdAtRound
public BigInteger createdAtRound
Round during which this asset was created.
-
deleted
public Boolean deleted
Whether or not this asset is currently deleted.
-
destroyedAtRound
public BigInteger destroyedAtRound
Round during which this asset was destroyed.
-
index
public Long index
unique asset identifier
-
params
public AssetParams params
AssetParams specifies the parameters for an asset. (apar) when part of an AssetConfig transaction. Definition: data/transactions/asset.go : AssetParams
-
-