Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1009 Bytes

UserUpdate.md

File metadata and controls

33 lines (24 loc) · 1009 Bytes

UserUpdate

Properties

Name Type Description Notes
password str [optional]
email str [optional]
is_active bool [optional]
is_superuser bool [optional]
is_verified bool [optional]

Example

from openapi_client.models.user_update import UserUpdate

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

# convert the object into a dict
user_update_dict = user_update_instance.to_dict()
# create an instance of UserUpdate from a dict
user_update_from_dict = UserUpdate.from_dict(user_update_dict)

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