thousandeyes-sdk-python/endpoint/instant_tests_api/docs/EndpointTestAid.md
2023-12-11 09:29:15 +00:00

1.0 KiB

EndpointTestAid

Properties

Name Type Description Notes
aid str A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. [optional]

Example

from instant_tests_api.models.endpoint_test_aid import EndpointTestAid

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

# convert the object into a dict
endpoint_test_aid_dict = endpoint_test_aid_instance.to_dict()
# create an instance of EndpointTestAid from a dict
endpoint_test_aid_form_dict = endpoint_test_aid.from_dict(endpoint_test_aid_dict)

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