| Name |
Type |
Description |
Notes |
| email |
str |
Email address |
[optional] |
| password |
str |
Password (minimum 8 characters) |
[optional] |
| firstname |
str |
First name (optional) |
[optional] |
| lastname |
str |
Last name (optional) |
[optional] |
| provider |
str |
Optional. Set to 'cruk' for CRUK registration only; otherwise ignored (service). |
[optional] |
from gateway_api_sdk.models.register_request import RegisterRequest
# TODO update the JSON string below
json = "{}"
# create an instance of RegisterRequest from a JSON string
register_request_instance = RegisterRequest.from_json(json)
# print the JSON string representation of the object
print(RegisterRequest.to_json())
# convert the object into a dict
register_request_dict = register_request_instance.to_dict()
# create an instance of RegisterRequest from a dict
register_request_from_dict = RegisterRequest.from_dict(register_request_dict)
[Back to Model list] [Back to API list] [Back to README]