Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.23 KB

File metadata and controls

35 lines (26 loc) · 1.23 KB

PatchedGroupRequest

Group Serializer

Properties

Name Type Description Notes
name str [optional]
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.patched_group_request import PatchedGroupRequest

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

# convert the object into a dict
patched_group_request_dict = patched_group_request_instance.to_dict()
# create an instance of PatchedGroupRequest from a dict
patched_group_request_from_dict = PatchedGroupRequest.from_dict(patched_group_request_dict)

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