Request to verify password for a password-protected retriever.
| Name | Type | Description | Notes |
|---|---|---|---|
| password | str | The password to verify against the retriever's password |
from mixpeek.models.verify_password_request import VerifyPasswordRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VerifyPasswordRequest from a JSON string
verify_password_request_instance = VerifyPasswordRequest.from_json(json)
# print the JSON string representation of the object
print(VerifyPasswordRequest.to_json())
# convert the object into a dict
verify_password_request_dict = verify_password_request_instance.to_dict()
# create an instance of VerifyPasswordRequest from a dict
verify_password_request_from_dict = VerifyPasswordRequest.from_dict(verify_password_request_dict)