Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1017 Bytes

File metadata and controls

34 lines (25 loc) · 1017 Bytes

Verification

Properties

Name Type Description Notes
id str [optional]
identifier str
value str
expires_at datetime
created_at datetime
updated_at datetime

Example

from better_auth.models.verification import Verification

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

# convert the object into a dict
verification_dict = verification_instance.to_dict()
# create an instance of Verification from a dict
verification_from_dict = Verification.from_dict(verification_dict)

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