Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 925 Bytes

File metadata and controls

32 lines (23 loc) · 925 Bytes

Snapshot

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec SnapShotSpec

Example

from halo_client.models.snapshot import Snapshot

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

# convert the object into a dict
snapshot_dict = snapshot_instance.to_dict()
# create an instance of Snapshot from a dict
snapshot_from_dict = Snapshot.from_dict(snapshot_dict)

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