Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

AssetResponse.md

File metadata and controls

32 lines (23 loc) · 1.02 KB

AssetResponse

Properties

Name Type Description Notes
legacy_id str
asset_class str
onchain AssetResponseOnchain
metadata AssetResponseMetadata

Example

from fireblocks.models.asset_response import AssetResponse

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

# convert the object into a dict
asset_response_dict = asset_response_instance.to_dict()
# create an instance of AssetResponse from a dict
asset_response_from_dict = AssetResponse.from_dict(asset_response_dict)

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