thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/DashboardLayout.md
Miguel Pragosa fa5af77369
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#149)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-04-30 11:18:18 +01:00

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)

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