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 BigIntegercreatedAtRoundRound during which this asset was created.BooleandeletedWhether or not this asset is currently deleted.BigIntegerdestroyedAtRoundRound during which this asset was destroyed.Longindexunique asset identifierAssetParamsparamsAssetParams 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 booleanequals(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
-
-