Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

TwoFactorGetTotpUriPost200Response

Properties

Name Type Description Notes
totp_uri str [optional]

Example

from better_auth.models.two_factor_get_totp_uri_post200_response import TwoFactorGetTotpUriPost200Response

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

# convert the object into a dict
two_factor_get_totp_uri_post200_response_dict = two_factor_get_totp_uri_post200_response_instance.to_dict()
# create an instance of TwoFactorGetTotpUriPost200Response from a dict
two_factor_get_totp_uri_post200_response_from_dict = TwoFactorGetTotpUriPost200Response.from_dict(two_factor_get_totp_uri_post200_response_dict)

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