Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.46 KB

SnapshotSummary.md

File metadata and controls

45 lines (32 loc) · 1.46 KB

SnapshotSummary

Properties

Name Type Description Notes
operation str

Example

from polaris.catalog.models.snapshot_summary import SnapshotSummary

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

# convert the object into a dict
snapshot_summary_dict = snapshot_summary_instance.to_dict()
# create an instance of SnapshotSummary from a dict
snapshot_summary_from_dict = SnapshotSummary.from_dict(snapshot_summary_dict)

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