thousandeyes-sdk-python/admin_api/docs/CreateAccountGroup201Response.md
2023-12-07 10:28:08 +00:00

1.8 KiB

CreateAccountGroup201Response

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]
links SelfLinksLinks [optional]

Example

from admin_api.models.create_account_group201_response import CreateAccountGroup201Response

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

# convert the object into a dict
create_account_group201_response_dict = create_account_group201_response_instance.to_dict()
# create an instance of CreateAccountGroup201Response from a dict
create_account_group201_response_form_dict = create_account_group201_response.from_dict(create_account_group201_response_dict)

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