Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1008 Bytes

UserRead.md

File metadata and controls

33 lines (24 loc) · 1008 Bytes

UserRead

Properties

Name Type Description Notes
id str
email str
is_active bool [optional] [default to True]
is_superuser bool [optional] [default to False]
is_verified bool [optional] [default to False]

Example

from openapi_client.models.user_read import UserRead

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

# convert the object into a dict
user_read_dict = user_read_instance.to_dict()
# create an instance of UserRead from a dict
user_read_from_dict = UserRead.from_dict(user_read_dict)

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