Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

PasskeyVerifyRegistrationRequest

Properties

Name Type Description Notes
response str
name str Name of the passkey [optional]

Example

from better_auth.models.passkey_verify_registration_request import PasskeyVerifyRegistrationRequest

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

# convert the object into a dict
passkey_verify_registration_request_dict = passkey_verify_registration_request_instance.to_dict()
# create an instance of PasskeyVerifyRegistrationRequest from a dict
passkey_verify_registration_request_from_dict = PasskeyVerifyRegistrationRequest.from_dict(passkey_verify_registration_request_dict)

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