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

1.1 KiB

TestLabelsInner

Properties

Name Type Description Notes
label_id str Label ID. [optional]
name str Name of the label. [optional]
is_built_in bool Value indicating if the label in question is BuiltIn (Account Admin, Organization Admin, Regular User). [optional]

Example

from tests_api.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_form_dict = test_labels_inner.from_dict(test_labels_inner_dict)

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