mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
1.0 KiB
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)