Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 949 Bytes

File metadata and controls

30 lines (21 loc) · 949 Bytes

AuthSigninRequest

Properties

Name Type Description Notes
email str
password str

Example

from aerostack.models.auth_signin_request import AuthSigninRequest

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

# convert the object into a dict
auth_signin_request_dict = auth_signin_request_instance.to_dict()
# create an instance of AuthSigninRequest from a dict
auth_signin_request_form_dict = auth_signin_request.from_dict(auth_signin_request_dict)

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