Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1018 Bytes

File metadata and controls

30 lines (21 loc) · 1018 Bytes

PasswordResetRequest

Properties

Name Type Description Notes
old_password str Old password
new_password str New password

Example

from ksapi.models.password_reset_request import PasswordResetRequest

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

# convert the object into a dict
password_reset_request_dict = password_reset_request_instance.to_dict()
# create an instance of PasswordResetRequest from a dict
password_reset_request_from_dict = PasswordResetRequest.from_dict(password_reset_request_dict)

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