mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-05 23:45:30 +00:00
1.8 KiB
1.8 KiB
GetAccountGroup200Response
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] |
| is_current_account_group | bool | Indicates whether the requested aid is the context of the current account. | [optional] |
| is_default_account_group | bool | Indicates whether the aid is the default one for the requesting user. | [optional] |
| organization_name | str | (Optional) Indicates whether the aid is the default one for the requesting user. | [optional] |
| users | **List[UserAccountGroup]** | [optional] | |
| agents | **List[EnterpriseAgent]** | [optional] | |
| links | SelfLinksLinks | [optional] |
Example
from admin.models.get_account_group200_response import GetAccountGroup200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetAccountGroup200Response from a JSON string
get_account_group200_response_instance = GetAccountGroup200Response.from_json(json)
# print the JSON string representation of the object
print(GetAccountGroup200Response.to_json())
# convert the object into a dict
get_account_group200_response_dict = get_account_group200_response_instance.to_dict()
# create an instance of GetAccountGroup200Response from a dict
get_account_group200_response_from_dict = GetAccountGroup200Response.from_dict(get_account_group200_response_dict)