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
The unique verification ID of the TOTP verification record. For newly created TOTP secret verification record, this ID is required to bind the TOTP secret to the user account through `Profile` API.
Example
frompy_logto.models.verify_totp_verification200_responseimportVerifyTotpVerification200Response# TODO update the JSON string belowjson="{}"# create an instance of VerifyTotpVerification200Response from a JSON stringverify_totp_verification200_response_instance=VerifyTotpVerification200Response.from_json(json)
# print the JSON string representation of the objectprint(VerifyTotpVerification200Response.to_json())
# convert the object into a dictverify_totp_verification200_response_dict=verify_totp_verification200_response_instance.to_dict()
# create an instance of VerifyTotpVerification200Response from a dictverify_totp_verification200_response_from_dict=VerifyTotpVerification200Response.from_dict(verify_totp_verification200_response_dict)