Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

File metadata and controls

29 lines (20 loc) · 1.12 KB

PasskeyVerifyAuthenticationRequest

Properties

Name Type Description Notes
response str

Example

from better_auth.models.passkey_verify_authentication_request import PasskeyVerifyAuthenticationRequest

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

# convert the object into a dict
passkey_verify_authentication_request_dict = passkey_verify_authentication_request_instance.to_dict()
# create an instance of PasskeyVerifyAuthenticationRequest from a dict
passkey_verify_authentication_request_from_dict = PasskeyVerifyAuthenticationRequest.from_dict(passkey_verify_authentication_request_dict)

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