Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

GroupRequest

Group Serializer

Properties

Name Type Description Notes
name str
is_superuser bool Users added to this group will be superusers. [optional]
parents List[UUID] [optional]
users List[int] [optional]
attributes Dict[str, object] [optional]
roles List[UUID] [optional]

Example

from authentik_client.models.group_request import GroupRequest

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

# convert the object into a dict
group_request_dict = group_request_instance.to_dict()
# create an instance of GroupRequest from a dict
group_request_from_dict = GroupRequest.from_dict(group_request_dict)

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