mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.1 KiB
1.1 KiB
TestLabelsInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| label_id | str | Label ID. | [optional] |
| name | str | Name of the label. | [optional] |
| is_builtin | bool | Value indicating if the label in question is BuiltIn (Account Admin, Organization Admin, Regular User). | [optional] |
Example
from tests.models.test_labels_inner import TestLabelsInner
# TODO update the JSON string below
json = "{}"
# create an instance of TestLabelsInner from a JSON string
test_labels_inner_instance = TestLabelsInner.from_json(json)
# print the JSON string representation of the object
print(TestLabelsInner.to_json())
# convert the object into a dict
test_labels_inner_dict = test_labels_inner_instance.to_dict()
# create an instance of TestLabelsInner from a dict
test_labels_inner_from_dict = TestLabelsInner.from_dict(test_labels_inner_dict)