Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.06 KB

File metadata and controls

34 lines (26 loc) · 1.06 KB

UserIn

Properties

Name Type Description Notes
full_name str
email str
is_superuser bool [optional] [default to False]
is_staff bool [optional] [default to False]
is_active bool [optional] [default to False]
is_confirmed bool [optional] [default to False]
oidc_sub str

Example

from compute_api_client.models.user_in import UserIn

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

# convert the object into a dict
user_in_dict = user_in_instance.to_dict()
# create an instance of UserIn from a dict
user_in_form_dict = user_in.from_dict(user_in_dict)

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