thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/ApiMultiMetricColumnData.md
Miguel Pragosa d44cc6b392
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#116)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-10-21 16:42:32 +01:00

1.5 KiB

ApiMultiMetricColumnData

The data presented within a single column of a Multi-Metric table.

Properties

Name Type Description Notes
column_id str Identifier of the column. [optional]
bin_size int Duration of each bin. [optional]
points **List[ApiWidgetDataPoint]** [optional]
status str Message for not fully configured card or no data. [optional]
alert_suppression_windows **List[ApiDashboardAsw]** [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.dashboards.models.api_multi_metric_column_data import ApiMultiMetricColumnData

# TODO update the JSON string below
json = "{}"
# create an instance of ApiMultiMetricColumnData from a JSON string
api_multi_metric_column_data_instance = ApiMultiMetricColumnData.from_json(json)
# print the JSON string representation of the object
print(ApiMultiMetricColumnData.to_json())

# convert the object into a dict
api_multi_metric_column_data_dict = api_multi_metric_column_data_instance.to_dict()
# create an instance of ApiMultiMetricColumnData from a dict
api_multi_metric_column_data_from_dict = ApiMultiMetricColumnData.from_dict(api_multi_metric_column_data_dict)

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