Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

CreateVerificationByPasswordRequest.md

File metadata and controls

29 lines (20 loc) · 1.16 KB

CreateVerificationByPasswordRequest

Properties

Name Type Description Notes
password str The password of the user.

Example

from py_logto.models.create_verification_by_password_request import CreateVerificationByPasswordRequest

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

# convert the object into a dict
create_verification_by_password_request_dict = create_verification_by_password_request_instance.to_dict()
# create an instance of CreateVerificationByPasswordRequest from a dict
create_verification_by_password_request_from_dict = CreateVerificationByPasswordRequest.from_dict(create_verification_by_password_request_dict)

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