Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 953 Bytes

File metadata and controls

30 lines (21 loc) · 953 Bytes

AccountReset

Properties

Name Type Description Notes
activation_code str The activation code generated by Ibutsu
password str The user's password

Example

from ibutsu_client.models.account_reset import AccountReset

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

# convert the object into a dict
account_reset_dict = account_reset_instance.to_dict()
# create an instance of AccountReset from a dict
account_reset_from_dict = AccountReset.from_dict(account_reset_dict)

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