Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

CreatePasswordVerificationRequest.md

File metadata and controls

30 lines (21 loc) · 1.24 KB

CreatePasswordVerificationRequest

Properties

Name Type Description Notes
identifier CreatePasswordVerificationRequestIdentifier
password str The user password.

Example

from py_logto.models.create_password_verification_request import CreatePasswordVerificationRequest

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

# convert the object into a dict
create_password_verification_request_dict = create_password_verification_request_instance.to_dict()
# create an instance of CreatePasswordVerificationRequest from a dict
create_password_verification_request_from_dict = CreatePasswordVerificationRequest.from_dict(create_password_verification_request_dict)

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