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

1.1 KiB

AccountGroup1

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]

Example

from admin_api.models.account_group1 import AccountGroup1

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

# convert the object into a dict
account_group1_dict = account_group1_instance.to_dict()
# create an instance of AccountGroup1 from a dict
account_group1_form_dict = account_group1.from_dict(account_group1_dict)

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