mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
# AccountGroup
|
|
|
|
|
|
## 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]
|
|
**account_group_name** | **str** | Account group name | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.admin.models.account_group import AccountGroup
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of AccountGroup from a JSON string
|
|
account_group_instance = AccountGroup.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(AccountGroup.to_json())
|
|
|
|
# convert the object into a dict
|
|
account_group_dict = account_group_instance.to_dict()
|
|
# create an instance of AccountGroup from a dict
|
|
account_group_from_dict = AccountGroup.from_dict(account_group_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)
|
|
|
|
|