thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/AccountGroupInfo.md
Shahid Hussain Khan 745e74afc4
CP-2189 Update SDK names for admin and monitors modules (#9)
* CP-2189 Update SDK names for admin and monitors modules

* CP-2189 Move client to core

* CP-2189 Change client to core
2024-06-04 16:09:40 +01:00

34 lines
1.5 KiB
Markdown

# AccountGroupInfo
## 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]
## Example
```python
from thousandeyes_sdk.admin.models.account_group_info import AccountGroupInfo
# TODO update the JSON string below
json = "{}"
# create an instance of AccountGroupInfo from a JSON string
account_group_info_instance = AccountGroupInfo.from_json(json)
# print the JSON string representation of the object
print(AccountGroupInfo.to_json())
# convert the object into a dict
account_group_info_dict = account_group_info_instance.to_dict()
# create an instance of AccountGroupInfo from a dict
account_group_info_from_dict = AccountGroupInfo.from_dict(account_group_info_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)