| Name |
Type |
Description |
Notes |
| email |
str |
The user's e-mail address |
|
| password |
str |
The user's password |
|
from ibutsu_client.models.account_registration import AccountRegistration
# TODO update the JSON string below
json = "{}"
# create an instance of AccountRegistration from a JSON string
account_registration_instance = AccountRegistration.from_json(json)
# print the JSON string representation of the object
print(AccountRegistration.to_json())
# convert the object into a dict
account_registration_dict = account_registration_instance.to_dict()
# create an instance of AccountRegistration from a dict
account_registration_from_dict = AccountRegistration.from_dict(account_registration_dict)
[Back to Model list] [Back to API list] [Back to README]