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
Indicates if the backup codes were generated successfully
backup_codes
List[str]
Array of generated backup codes in plain text
Example
frombetter_auth.models.two_factor_generate_backup_codes_post200_responseimportTwoFactorGenerateBackupCodesPost200Response# TODO update the JSON string belowjson="{}"# create an instance of TwoFactorGenerateBackupCodesPost200Response from a JSON stringtwo_factor_generate_backup_codes_post200_response_instance=TwoFactorGenerateBackupCodesPost200Response.from_json(json)
# print the JSON string representation of the objectprint(TwoFactorGenerateBackupCodesPost200Response.to_json())
# convert the object into a dicttwo_factor_generate_backup_codes_post200_response_dict=two_factor_generate_backup_codes_post200_response_instance.to_dict()
# create an instance of TwoFactorGenerateBackupCodesPost200Response from a dicttwo_factor_generate_backup_codes_post200_response_from_dict=TwoFactorGenerateBackupCodesPost200Response.from_dict(two_factor_generate_backup_codes_post200_response_dict)