Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

VersionSummary

Properties

Name Type Description Notes
hash str The version hash of the cosigner
name str The name of the version [optional]

Example

from fireblocks.models.version_summary import VersionSummary

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

# convert the object into a dict
version_summary_dict = version_summary_instance.to_dict()
# create an instance of VersionSummary from a dict
version_summary_from_dict = VersionSummary.from_dict(version_summary_dict)

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