Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 945 Bytes

File metadata and controls

30 lines (21 loc) · 945 Bytes

LoginParams

Properties

Name Type Description Notes
email str The email address associated with the user profile.
password str The password for your account.

Example

from talon_one.models.login_params import LoginParams

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

# convert the object into a dict
login_params_dict = login_params_instance.to_dict()
# create an instance of LoginParams from a dict
login_params_from_dict = LoginParams.from_dict(login_params_dict)

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