Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

TwoFactorVerifyOtpPostRequest

Properties

Name Type Description Notes
code str The otp code to verify. Eg: "012345"
trust_device bool [optional]

Example

from better_auth.models.two_factor_verify_otp_post_request import TwoFactorVerifyOtpPostRequest

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

# convert the object into a dict
two_factor_verify_otp_post_request_dict = two_factor_verify_otp_post_request_instance.to_dict()
# create an instance of TwoFactorVerifyOtpPostRequest from a dict
two_factor_verify_otp_post_request_from_dict = TwoFactorVerifyOtpPostRequest.from_dict(two_factor_verify_otp_post_request_dict)

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