Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

SnapshotListResponse

Properties

Name Type Description Notes
items List[SnapshotResponse]
page CursorPage

Example

from wordlift_client.models.snapshot_list_response import SnapshotListResponse

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

# convert the object into a dict
snapshot_list_response_dict = snapshot_list_response_instance.to_dict()
# create an instance of SnapshotListResponse from a dict
snapshot_list_response_from_dict = SnapshotListResponse.from_dict(snapshot_list_response_dict)

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