| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| snapshot | SnapshotRetrieveFields | [optional] | |
| status | bool | [optional] |
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)