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

31 lines
1.3 KiB
Markdown

# 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
```python
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)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)