You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If true, the device will be trusted for 30 days. It'll be refreshed on every sign in request within this time. Eg: true
[optional]
Example
frombetter_auth.models.two_factor_verify_totp_post_requestimportTwoFactorVerifyTotpPostRequest# TODO update the JSON string belowjson="{}"# create an instance of TwoFactorVerifyTotpPostRequest from a JSON stringtwo_factor_verify_totp_post_request_instance=TwoFactorVerifyTotpPostRequest.from_json(json)
# print the JSON string representation of the objectprint(TwoFactorVerifyTotpPostRequest.to_json())
# convert the object into a dicttwo_factor_verify_totp_post_request_dict=two_factor_verify_totp_post_request_instance.to_dict()
# create an instance of TwoFactorVerifyTotpPostRequest from a dicttwo_factor_verify_totp_post_request_from_dict=TwoFactorVerifyTotpPostRequest.from_dict(two_factor_verify_totp_post_request_dict)