Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

ApplicationUser

Defines a user

Properties

Name Type Description Notes
username str
password str [optional]
client_roles List[str] [optional]
realm_roles List[str] [optional]

Example

from cloudharness_model.models.application_user import ApplicationUser

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

# convert the object into a dict
application_user_dict = application_user_instance.to_dict()
# create an instance of ApplicationUser from a dict
application_user_from_dict = ApplicationUser.from_dict(application_user_dict)

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