Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 951 Bytes

AssetMedia.md

File metadata and controls

31 lines (22 loc) · 951 Bytes

AssetMedia

Properties

Name Type Description Notes
url str Media URL
type str Media type
attributes AssetMediaAttributes [optional]

Example

from fireblocks.models.asset_media import AssetMedia

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

# convert the object into a dict
asset_media_dict = asset_media_instance.to_dict()
# create an instance of AssetMedia from a dict
asset_media_from_dict = AssetMedia.from_dict(asset_media_dict)

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