Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

SnapshotRetrieve

Properties

Name Type Description Notes
message str [optional]
snapshot SnapshotRetrieveFields [optional]
status bool [optional]

Example

from hyperstack.models.snapshot_retrieve import SnapshotRetrieve

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

# convert the object into a dict
snapshot_retrieve_dict = snapshot_retrieve_instance.to_dict()
# create an instance of SnapshotRetrieve from a dict
snapshot_retrieve_from_dict = SnapshotRetrieve.from_dict(snapshot_retrieve_dict)

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