/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { MFADeviceType } from './MFADeviceType'; /** * * @export * @interface MFASettingsMethods */ export interface MFASettingsMethods { /** * * @type {MFADeviceType} * @memberof MFASettingsMethods */ type: MFADeviceType; /** * Whether this MFA method is enabled * @type {boolean} * @memberof MFASettingsMethods */ enabled: boolean; /** * * @type {boolean} * @memberof MFASettingsMethods */ allowBackupCodes?: boolean | null; } export declare function MFASettingsMethodsFromJSON(json: any): MFASettingsMethods; export declare function MFASettingsMethodsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFASettingsMethods; export declare function MFASettingsMethodsToJSON(value?: MFASettingsMethods | null): any;