Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

ReviewerUser

Properties

Name Type Description Notes
pk int [readonly]
uuid UUID [readonly]
username str Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
name str User's display name.

Example

from authentik_client.models.reviewer_user import ReviewerUser

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

# convert the object into a dict
reviewer_user_dict = reviewer_user_instance.to_dict()
# create an instance of ReviewerUser from a dict
reviewer_user_from_dict = ReviewerUser.from_dict(reviewer_user_dict)

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