Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 930 Bytes

BlockchainMedia.md

File metadata and controls

30 lines (21 loc) · 930 Bytes

BlockchainMedia

Properties

Name Type Description Notes
url str Media URL
type str Media type

Example

from fireblocks.models.blockchain_media import BlockchainMedia

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

# convert the object into a dict
blockchain_media_dict = blockchain_media_instance.to_dict()
# create an instance of BlockchainMedia from a dict
blockchain_media_from_dict = BlockchainMedia.from_dict(blockchain_media_dict)

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