Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.39 KB

AssetResponseBeta.md

File metadata and controls

36 lines (27 loc) · 1.39 KB

AssetResponseBeta

Properties

Name Type Description Notes
id str The ID of the asset
legacy_id str The Legacy ID of the asset
blockchain_id str The ID of the asset's blockchain [optional]
display_name str Asset's display name [optional]
display_symbol str Asset's display symbol [optional]
asset_class AssetClassBeta
onchain AssetOnchainBeta [optional]
metadata AssetMetadataBeta

Example

from fireblocks.models.asset_response_beta import AssetResponseBeta

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

# convert the object into a dict
asset_response_beta_dict = asset_response_beta_instance.to_dict()
# create an instance of AssetResponseBeta from a dict
asset_response_beta_from_dict = AssetResponseBeta.from_dict(asset_response_beta_dict)

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