mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 17:36:51 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.1 KiB
1.1 KiB
DashboardLayout
Dashboard layout configuration for arranging widgets.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| layout_id | str | Unique identifier for the layout. | [optional] |
| type | DashboardLayoutType | ||
| details | DashboardLayoutDetails | [optional] |
Example
from thousandeyes_sdk.dashboards.models.dashboard_layout import DashboardLayout
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardLayout from a JSON string
dashboard_layout_instance = DashboardLayout.from_json(json)
# print the JSON string representation of the object
print(DashboardLayout.to_json())
# convert the object into a dict
dashboard_layout_dict = dashboard_layout_instance.to_dict()
# create an instance of DashboardLayout from a dict
dashboard_layout_from_dict = DashboardLayout.from_dict(dashboard_layout_dict)