Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

PasswordResetTokenResponse

Properties

Name Type Description Notes
password_reset_token str

Example

from ksapi.models.password_reset_token_response import PasswordResetTokenResponse

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

# convert the object into a dict
password_reset_token_response_dict = password_reset_token_response_instance.to_dict()
# create an instance of PasswordResetTokenResponse from a dict
password_reset_token_response_from_dict = PasswordResetTokenResponse.from_dict(password_reset_token_response_dict)

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