mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 23:15:30 +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
DashboardLayoutDetails
Layout details including widget positioning.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| widget_positioning | **List[WidgetPosition]** | List of widget positions within the layout. | [optional] |
Example
from thousandeyes_sdk.dashboards.models.dashboard_layout_details import DashboardLayoutDetails
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardLayoutDetails from a JSON string
dashboard_layout_details_instance = DashboardLayoutDetails.from_json(json)
# print the JSON string representation of the object
print(DashboardLayoutDetails.to_json())
# convert the object into a dict
dashboard_layout_details_dict = dashboard_layout_details_instance.to_dict()
# create an instance of DashboardLayoutDetails from a dict
dashboard_layout_details_from_dict = DashboardLayoutDetails.from_dict(dashboard_layout_details_dict)