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