/** * 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 { MFADevice } from './MFADevice'; import { UserPasskey } from './UserPasskey'; /** * * @export * @interface MFAMethodsResponse */ export interface MFAMethodsResponse { /** * List of registered MFA devices * @type {Array} * @memberof MFAMethodsResponse */ devices: Array; /** * List of registered passkeys for MFA * @type {Array} * @memberof MFAMethodsResponse */ passkeys: Array; /** * Whether or not the user has any verified MFA methods * @type {boolean} * @memberof MFAMethodsResponse */ userHasVerifiedMfaMethods: boolean; } export declare function MFAMethodsResponseFromJSON(json: any): MFAMethodsResponse; export declare function MFAMethodsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFAMethodsResponse; export declare function MFAMethodsResponseToJSON(value?: MFAMethodsResponse | null): any;