thousandeyes-sdk-python/dashboards_api/docs/ApiReportDataComponentLabelMap.md
2023-12-11 09:29:15 +00:00

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_api.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_form_dict = api_report_data_component_label_map.from_dict(api_report_data_component_label_map_dict)

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