Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

VerifyUserPasswordRequest.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

VerifyUserPasswordRequest

Properties

Name Type Description Notes
password str Password to verify.

Example

from py_logto.models.verify_user_password_request import VerifyUserPasswordRequest

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

# convert the object into a dict
verify_user_password_request_dict = verify_user_password_request_instance.to_dict()
# create an instance of VerifyUserPasswordRequest from a dict
verify_user_password_request_from_dict = VerifyUserPasswordRequest.from_dict(verify_user_password_request_dict)

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