Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.14 KB

AssetWallet.md

File metadata and controls

39 lines (30 loc) · 2.14 KB

AssetWallet

Properties

Name Type Description Notes
vault_id str ID of the vault account. You can get the vault account by this ID to retrieve vault properties such as its name, auto fueling, hidden on UI or customer reference ID. [optional]
asset_id str ID of the asset. You can get more information about this asset by using the supported assets API [optional]
available str Available balance, available to use in a transaction. [optional]
total str Total balance at the asset wallet, as seen at the blockchain explorers. This includes balance available, and any kind of unavailable balance such as locked, frozen, or others. [optional]
pending str Pending balance. [optional]
staked str Staked balance. [optional]
frozen str Funds frozen due to the anti-money laundering policy at this workspace. [optional]
locked_amount str Locked balance. [optional]
block_height str The height (number) of the block of the balance. Can by empty. [optional]
block_hash str The hash of the block of the balance. Can by empty. [optional]
creation_timestamp str Unix timestamp of the time the asset wallet was created. [optional]

Example

from fireblocks.models.asset_wallet import AssetWallet

# TODO update the JSON string below
json = "{}"
# create an instance of AssetWallet from a JSON string
asset_wallet_instance = AssetWallet.from_json(json)
# print the JSON string representation of the object
print(AssetWallet.to_json())

# convert the object into a dict
asset_wallet_dict = asset_wallet_instance.to_dict()
# create an instance of AssetWallet from a dict
asset_wallet_from_dict = AssetWallet.from_dict(asset_wallet_dict)

[Back to Model list] [Back to API list] [Back to README]