Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.11 KB

File metadata and controls

39 lines (30 loc) · 1.11 KB

Passkey

Properties

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]

Example

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]