Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 860 Bytes

File metadata and controls

30 lines (21 loc) · 860 Bytes

UserCreate

Properties

Name Type Description Notes
email str
password str

Example

from sorrydb_api_client.models.user_create import UserCreate

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

# convert the object into a dict
user_create_dict = user_create_instance.to_dict()
# create an instance of UserCreate from a dict
user_create_from_dict = UserCreate.from_dict(user_create_dict)

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