Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.63 KB

CreateWebAuthnRegistrationVerification200Response.md

File metadata and controls

30 lines (21 loc) · 1.63 KB

CreateWebAuthnRegistrationVerification200Response

Properties

Name Type Description Notes
verification_id str The unique verification ID for the WebAuthn registration record. This ID is required to verify the WebAuthn registration challenge.
registration_options CreateWebAuthnRegistrationVerification200ResponseRegistrationOptions

Example

from py_logto.models.create_web_authn_registration_verification200_response import CreateWebAuthnRegistrationVerification200Response

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

# convert the object into a dict
create_web_authn_registration_verification200_response_dict = create_web_authn_registration_verification200_response_instance.to_dict()
# create an instance of CreateWebAuthnRegistrationVerification200Response from a dict
create_web_authn_registration_verification200_response_from_dict = CreateWebAuthnRegistrationVerification200Response.from_dict(create_web_authn_registration_verification200_response_dict)

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