mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.2 KiB
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)