thousandeyes-sdk-python/admin/docs/AccountGroupDetail.md

1.7 KiB

AccountGroupDetail

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]

Example

from admin.models.account_group_detail import AccountGroupDetail

# TODO update the JSON string below
json = "{}"
# create an instance of AccountGroupDetail from a JSON string
account_group_detail_instance = AccountGroupDetail.from_json(json)
# print the JSON string representation of the object
print(AccountGroupDetail.to_json())

# convert the object into a dict
account_group_detail_dict = account_group_detail_instance.to_dict()
# create an instance of AccountGroupDetail from a dict
account_group_detail_from_dict = AccountGroupDetail.from_dict(account_group_detail_dict)

[Back to Model list] [Back to API list] [Back to README]