/** * 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'; /** * * @export * @interface MFAListDevicesResponse */ export interface MFAListDevicesResponse { /** * The number of MFA devices available * @type {number} * @memberof MFAListDevicesResponse */ count: number; /** * List of registered MFA devices * @type {Array} * @memberof MFAListDevicesResponse */ devices: Array; } export declare function MFAListDevicesResponseFromJSON(json: any): MFAListDevicesResponse; export declare function MFAListDevicesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFAListDevicesResponse; export declare function MFAListDevicesResponseToJSON(value?: MFAListDevicesResponse | null): any;