Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 918 Bytes

File metadata and controls

30 lines (21 loc) · 918 Bytes

UserSelfRoles

Properties

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

Example

from authentik_client.models.user_self_roles import UserSelfRoles

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

# convert the object into a dict
user_self_roles_dict = user_self_roles_instance.to_dict()
# create an instance of UserSelfRoles from a dict
user_self_roles_from_dict = UserSelfRoles.from_dict(user_self_roles_dict)

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