Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

BlockchainMetadata.md

File metadata and controls

32 lines (23 loc) · 1.19 KB

BlockchainMetadata

Properties

Name Type Description Notes
scope str Is blockchain listed on all workspaces? Global or Local
deprecated bool Is blockchain deprecated
media List[BlockchainMedia] Blockchain’s media [optional]
explorer BlockchainExplorer [optional]

Example

from fireblocks.models.blockchain_metadata import BlockchainMetadata

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

# convert the object into a dict
blockchain_metadata_dict = blockchain_metadata_instance.to_dict()
# create an instance of BlockchainMetadata from a dict
blockchain_metadata_from_dict = BlockchainMetadata.from_dict(blockchain_metadata_dict)

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