thousandeyes-sdk-python/dashboards/docs/DashboardSnapshots200Response.md

1.3 KiB

DashboardSnapshots200Response

Properties

Name Type Description Notes
pages Dict[str, object] [optional]
dashboard_snapshots **List[ApiDashboardSnapshot]** [optional]
links PaginationLinksLinks [optional]

Example

from dashboards.models.dashboard_snapshots200_response import DashboardSnapshots200Response

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

# convert the object into a dict
dashboard_snapshots200_response_dict = dashboard_snapshots200_response_instance.to_dict()
# create an instance of DashboardSnapshots200Response from a dict
dashboard_snapshots200_response_from_dict = DashboardSnapshots200Response.from_dict(dashboard_snapshots200_response_dict)

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