mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.3 KiB
1.3 KiB
ApiReportDataComponentLabelMapEntry
Represents a mapping entry of a group label.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| group_id | str | Identifier of the group. | [optional] |
| group_label | str | Label of the group. | [optional] |
Example
from dashboards_api.models.api_report_data_component_label_map_entry import ApiReportDataComponentLabelMapEntry
# TODO update the JSON string below
json = "{}"
# create an instance of ApiReportDataComponentLabelMapEntry from a JSON string
api_report_data_component_label_map_entry_instance = ApiReportDataComponentLabelMapEntry.from_json(json)
# print the JSON string representation of the object
print ApiReportDataComponentLabelMapEntry.to_json()
# convert the object into a dict
api_report_data_component_label_map_entry_dict = api_report_data_component_label_map_entry_instance.to_dict()
# create an instance of ApiReportDataComponentLabelMapEntry from a dict
api_report_data_component_label_map_entry_form_dict = api_report_data_component_label_map_entry.from_dict(api_report_data_component_label_map_entry_dict)