mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.3 KiB
1.3 KiB
ApiReportDataComponentLabelMap
Map of group labels.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| group_property | str | Defines the criterion used to aggregate data points under specific group values. | [optional] |
| group_labels | **List[ApiReportDataComponentLabelMapEntry]** | List of group labels. | [optional] |
Example
from dashboards.models.api_report_data_component_label_map import ApiReportDataComponentLabelMap
# TODO update the JSON string below
json = "{}"
# create an instance of ApiReportDataComponentLabelMap from a JSON string
api_report_data_component_label_map_instance = ApiReportDataComponentLabelMap.from_json(json)
# print the JSON string representation of the object
print(ApiReportDataComponentLabelMap.to_json())
# convert the object into a dict
api_report_data_component_label_map_dict = api_report_data_component_label_map_instance.to_dict()
# create an instance of ApiReportDataComponentLabelMap from a dict
api_report_data_component_label_map_from_dict = ApiReportDataComponentLabelMap.from_dict(api_report_data_component_label_map_dict)