Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 936 Bytes

File metadata and controls

30 lines (21 loc) · 936 Bytes

UserRequestModel

Properties

Name Type Description Notes
email str
password str

Example

from dat_client.models.user_request_model import UserRequestModel

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

# convert the object into a dict
user_request_model_dict = user_request_model_instance.to_dict()
# create an instance of UserRequestModel from a dict
user_request_model_from_dict = UserRequestModel.from_dict(user_request_model_dict)

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