| Name |
Type |
Description |
Notes |
| email |
str |
Email address |
[optional] |
| password |
str |
Password |
[optional] |
| provider |
str |
Optional. Set to 'cruk' for CRUK login only; otherwise ignored (service). |
[optional] |
from gateway_api_sdk.models.login_request import LoginRequest
# TODO update the JSON string below
json = "{}"
# create an instance of LoginRequest from a JSON string
login_request_instance = LoginRequest.from_json(json)
# print the JSON string representation of the object
print(LoginRequest.to_json())
# convert the object into a dict
login_request_dict = login_request_instance.to_dict()
# create an instance of LoginRequest from a dict
login_request_from_dict = LoginRequest.from_dict(login_request_dict)
[Back to Model list] [Back to API list] [Back to README]