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 WebAuthn registration record. This `verificationId` is required to bind the WebAuthn credential to the user account via the `Profile` API.
Example
frompy_logto.models.verify_web_authn_registration_verification200_responseimportVerifyWebAuthnRegistrationVerification200Response# TODO update the JSON string belowjson="{}"# create an instance of VerifyWebAuthnRegistrationVerification200Response from a JSON stringverify_web_authn_registration_verification200_response_instance=VerifyWebAuthnRegistrationVerification200Response.from_json(json)
# print the JSON string representation of the objectprint(VerifyWebAuthnRegistrationVerification200Response.to_json())
# convert the object into a dictverify_web_authn_registration_verification200_response_dict=verify_web_authn_registration_verification200_response_instance.to_dict()
# create an instance of VerifyWebAuthnRegistrationVerification200Response from a dictverify_web_authn_registration_verification200_response_from_dict=VerifyWebAuthnRegistrationVerification200Response.from_dict(verify_web_authn_registration_verification200_response_dict)