Name | Type | Description | Notes |
---|---|---|---|
hash | str | The version hash of the cosigner |
from fireblocks.models.version import Version
# TODO update the JSON string below
json = "{}"
# create an instance of Version from a JSON string
version_instance = Version.from_json(json)
# print the JSON string representation of the object
print(Version.to_json())
# convert the object into a dict
version_dict = version_instance.to_dict()
# create an instance of Version from a dict
version_from_dict = Version.from_dict(version_dict)