Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.91 KB

VerifyWebAuthnAuthenticationVerificationRequestPayload.md

File metadata and controls

35 lines (26 loc) · 1.91 KB

VerifyWebAuthnAuthenticationVerificationRequestPayload

The WebAuthn assertion response from the user's WebAuthn credential.

Properties

Name Type Description Notes
type str
id str
raw_id str
authenticator_attachment str [optional]
client_extension_results VerifyWebAuthnRegistrationVerificationRequestPayloadClientExtensionResults
response VerifyWebAuthnAuthenticationVerificationRequestPayloadResponse

Example

from py_logto.models.verify_web_authn_authentication_verification_request_payload import VerifyWebAuthnAuthenticationVerificationRequestPayload

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

# convert the object into a dict
verify_web_authn_authentication_verification_request_payload_dict = verify_web_authn_authentication_verification_request_payload_instance.to_dict()
# create an instance of VerifyWebAuthnAuthenticationVerificationRequestPayload from a dict
verify_web_authn_authentication_verification_request_payload_from_dict = VerifyWebAuthnAuthenticationVerificationRequestPayload.from_dict(verify_web_authn_authentication_verification_request_payload_dict)

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