Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.02 KB

File metadata and controls

34 lines (25 loc) · 1.02 KB

Snapshots

Properties

Name Type Description Notes
count int [optional]
message str [optional]
page int [optional]
page_size int [optional]
snapshots List[SnapshotFields] [optional]
status bool [optional]

Example

from hyperstack.models.snapshots import Snapshots

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

# convert the object into a dict
snapshots_dict = snapshots_instance.to_dict()
# create an instance of Snapshots from a dict
snapshots_from_dict = Snapshots.from_dict(snapshots_dict)

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