| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| name |
str |
|
[optional] |
| public_key |
str |
|
|
| user_id |
str |
|
|
| credential_id |
str |
|
|
| counter |
float |
|
|
| device_type |
str |
|
|
| backed_up |
bool |
|
|
| transports |
str |
|
[optional] |
| created_at |
datetime |
|
[optional] |
| aaguid |
str |
|
[optional] |
from better_auth.models.passkey import Passkey
# TODO update the JSON string below
json = "{}"
# create an instance of Passkey from a JSON string
passkey_instance = Passkey.from_json(json)
# print the JSON string representation of the object
print(Passkey.to_json())
# convert the object into a dict
passkey_dict = passkey_instance.to_dict()
# create an instance of Passkey from a dict
passkey_from_dict = Passkey.from_dict(passkey_dict)
[Back to Model list] [Back to API list] [Back to README]