Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 920 Bytes

File metadata and controls

29 lines (20 loc) · 920 Bytes

AccountRecovery

Properties

Name Type Description Notes
email str The user's e-mail address

Example

from ibutsu_client.models.account_recovery import AccountRecovery

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

# convert the object into a dict
account_recovery_dict = account_recovery_instance.to_dict()
# create an instance of AccountRecovery from a dict
account_recovery_from_dict = AccountRecovery.from_dict(account_recovery_dict)

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