Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 940 Bytes

File metadata and controls

30 lines (21 loc) · 940 Bytes

TRLinkAsset

Properties

Name Type Description Notes
format TRLinkAssetFormat
data TRLinkAssetData

Example

from fireblocks.models.tr_link_asset import TRLinkAsset

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

# convert the object into a dict
tr_link_asset_dict = tr_link_asset_instance.to_dict()
# create an instance of TRLinkAsset from a dict
tr_link_asset_from_dict = TRLinkAsset.from_dict(tr_link_asset_dict)

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