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

29 lines
1.0 KiB
Markdown

# 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
```python
from 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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)