thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/UserAccountGroupRole.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

1.1 KiB

UserAccountGroupRole

Properties

Name Type Description Notes
account_group_id str Unique ID of the account group. [optional]
role_ids List[str] Unique role IDs. [optional]

Example

from thousandeyes_sdk.admin.models.user_account_group_role import UserAccountGroupRole

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

# convert the object into a dict
user_account_group_role_dict = user_account_group_role_instance.to_dict()
# create an instance of UserAccountGroupRole from a dict
user_account_group_role_from_dict = UserAccountGroupRole.from_dict(user_account_group_role_dict)

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