You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique verification ID of the newly created Password verification record. The `verificationId` is required when verifying the user's identity via the `Identification` API.
Example
frompy_logto.models.create_password_verification200_responseimportCreatePasswordVerification200Response# TODO update the JSON string belowjson="{}"# create an instance of CreatePasswordVerification200Response from a JSON stringcreate_password_verification200_response_instance=CreatePasswordVerification200Response.from_json(json)
# print the JSON string representation of the objectprint(CreatePasswordVerification200Response.to_json())
# convert the object into a dictcreate_password_verification200_response_dict=create_password_verification200_response_instance.to_dict()
# create an instance of CreatePasswordVerification200Response from a dictcreate_password_verification200_response_from_dict=CreatePasswordVerification200Response.from_dict(create_password_verification200_response_dict)