/** * 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 { OrganizationMfaSettings } from './OrganizationMfaSettings'; /** * * @export * @interface OrganizationMfaSettingsResponse */ export interface OrganizationMfaSettingsResponse { /** * List of MFA device type settings for the organization * @type {Array} * @memberof OrganizationMfaSettingsResponse */ mfaSettings?: Array; } export declare function OrganizationMfaSettingsResponseFromJSON(json: any): OrganizationMfaSettingsResponse; export declare function OrganizationMfaSettingsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationMfaSettingsResponse; export declare function OrganizationMfaSettingsResponseToJSON(value?: OrganizationMfaSettingsResponse | null): any;