thousandeyes-sdk-python/thousandeyes-sdk-endpoint-instant-tests/docs/TestLabel.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.0 KiB

TestLabel

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 thousandeyes_sdk.endpoint_instant_tests.models.test_label import TestLabel

# TODO update the JSON string below
json = "{}"
# create an instance of TestLabel from a JSON string
test_label_instance = TestLabel.from_json(json)
# print the JSON string representation of the object
print(TestLabel.to_json())

# convert the object into a dict
test_label_dict = test_label_instance.to_dict()
# create an instance of TestLabel from a dict
test_label_from_dict = TestLabel.from_dict(test_label_dict)

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