thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/CreatedAccountGroup.md
2024-06-05 15:42:37 +01:00

36 lines
1.7 KiB
Markdown

# CreatedAccountGroup
## 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]**](UserAccountGroup.md) | | [optional]
**links** | [**SelfLinks**](SelfLinks.md) | | [optional]
## Example
```python
from thousandeyes_sdk.administrative.models.created_account_group import CreatedAccountGroup
# TODO update the JSON string below
json = "{}"
# create an instance of CreatedAccountGroup from a JSON string
created_account_group_instance = CreatedAccountGroup.from_json(json)
# print the JSON string representation of the object
print(CreatedAccountGroup.to_json())
# convert the object into a dict
created_account_group_dict = created_account_group_instance.to_dict()
# create an instance of CreatedAccountGroup from a dict
created_account_group_from_dict = CreatedAccountGroup.from_dict(created_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)