mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.4 KiB
1.4 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] |
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)