mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
30 lines
1.1 KiB
Markdown
30 lines
1.1 KiB
Markdown
# TestSharedAccountsInner
|
|
|
|
|
|
## Properties
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**aid** | **str** | Account group ID. | [optional]
|
|
**name** | **str** | Account group name. | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from tests_api.models.test_shared_accounts_inner import TestSharedAccountsInner
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of TestSharedAccountsInner from a JSON string
|
|
test_shared_accounts_inner_instance = TestSharedAccountsInner.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print TestSharedAccountsInner.to_json()
|
|
|
|
# convert the object into a dict
|
|
test_shared_accounts_inner_dict = test_shared_accounts_inner_instance.to_dict()
|
|
# create an instance of TestSharedAccountsInner from a dict
|
|
test_shared_accounts_inner_form_dict = test_shared_accounts_inner.from_dict(test_shared_accounts_inner_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)
|
|
|
|
|