Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 931 Bytes

File metadata and controls

30 lines (21 loc) · 931 Bytes

UserSelfGroups

Properties

Name Type Description Notes
name str [readonly]
pk str [readonly]

Example

from authentik_client.models.user_self_groups import UserSelfGroups

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

# convert the object into a dict
user_self_groups_dict = user_self_groups_instance.to_dict()
# create an instance of UserSelfGroups from a dict
user_self_groups_from_dict = UserSelfGroups.from_dict(user_self_groups_dict)

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