Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.94 KB

AssetMetadataDto.md

File metadata and controls

41 lines (32 loc) · 1.94 KB

AssetMetadataDto

Properties

Name Type Description Notes
asset_id str The Fireblocks` asset id
name str The name of the token [optional]
symbol str The symbol of the token [optional]
network_protocol str The network protocol of the token [optional]
total_supply str The total supply of the token [optional]
holders_count float The number of holders of the token [optional]
type str The type of the token [optional]
contract_address str The address of the token contract [optional]
issuer_address str In case of Stellar or Ripple, the address of the issuer of the token [optional]
testnet bool Is it deployed on testnet or to mainnet [optional]
blockchain str The blockchain native asset id which the token is deployed on [optional]
decimals float The number of decimals of the token [optional]
vault_account_id str The id of the vault account that initiated the request to issue the token. Will be empty if token was issued outside of Fireblocks. [optional]

Example

from fireblocks.models.asset_metadata_dto import AssetMetadataDto

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

# convert the object into a dict
asset_metadata_dto_dict = asset_metadata_dto_instance.to_dict()
# create an instance of AssetMetadataDto from a dict
asset_metadata_dto_from_dict = AssetMetadataDto.from_dict(asset_metadata_dto_dict)

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