thousandeyes-sdk-python/dashboards_api/docs/DashboardSnapshots200Response.md
2023-12-11 09:29:15 +00:00

1.2 KiB

DashboardSnapshots200Response

Properties

Name Type Description Notes
dashboard_snapshots **List[ApiDashboardSnapshot]** [optional]
links PaginationLinksLinks [optional]

Example

from dashboards_api.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_form_dict = dashboard_snapshots200_response.from_dict(dashboard_snapshots200_response_dict)

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