Class AccountAssetResponse
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.AccountAssetResponse
-
public class AccountAssetResponse extends PathResponse
AccountAssetResponse describes the account's asset holding and asset parameters (if either exist) for a specific asset ID. Asset parameters will only be returned if the provided address is the asset's creator.
-
-
Field Summary
Fields Modifier and Type Field Description AssetHolding
assetHolding
(asset) Details about the asset held by this account.AssetParams
createdAsset
(apar) parameters of the asset created by this account.Long
round
The round for which this information is relevant.
-
Constructor Summary
Constructors Constructor Description AccountAssetResponse()
-
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
-
assetHolding
public AssetHolding assetHolding
(asset) Details about the asset held by this account. The raw account uses `AssetHolding` for this type.
-
createdAsset
public AssetParams createdAsset
(apar) parameters of the asset created by this account. The raw account uses `AssetParams` for this type.
-
round
public Long round
The round for which this information is relevant.
-
-