mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 08:03:56 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.5 KiB
1.5 KiB
InstantTestRequestProperties
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| labels | List[str] | A list of test label identifiers (get `labelId` from `/labels` endpoint). | [optional] |
| tags | List[str] | A list of test tag identifiers (get `id` from `/tags` endpoint). | [optional] |
| shared_with_accounts | List[str] | A list of account group identifiers that the test is shared with (get `aid` from `/account-groups` endpoint). | [optional] |
Example
from thousandeyes_sdk.instant_tests.models.instant_test_request_properties import InstantTestRequestProperties
# TODO update the JSON string below
json = "{}"
# create an instance of InstantTestRequestProperties from a JSON string
instant_test_request_properties_instance = InstantTestRequestProperties.from_json(json)
# print the JSON string representation of the object
print(InstantTestRequestProperties.to_json())
# convert the object into a dict
instant_test_request_properties_dict = instant_test_request_properties_instance.to_dict()
# create an instance of InstantTestRequestProperties from a dict
instant_test_request_properties_from_dict = InstantTestRequestProperties.from_dict(instant_test_request_properties_dict)