/** * 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 * as runtime from '../runtime'; import { MFADeviceType, OrganizationMfaSettings, OrganizationMfaSettingsResponse } from '../models'; export interface DisableMfaDeviceForOrganizationRequest { organizationId: string; mfaDeviceType: MFADeviceType; } export interface EnableMfaDeviceForOrganizationRequest { organizationId: string; mfaDeviceType: MFADeviceType; } export interface GetOrganizationMfaSettingsRequest { organizationId: string; } /** * */ export declare class MfaSettingsApi extends runtime.BaseAPI { /** * Disables the specified MFA device type for the organization. * Disable the given mfa device for the organization */ disableMfaDeviceForOrganizationRaw(requestParameters: DisableMfaDeviceForOrganizationRequest, initOverrides?: RequestInit): Promise>; /** * Disables the specified MFA device type for the organization. * Disable the given mfa device for the organization */ disableMfaDeviceForOrganization(requestParameters: DisableMfaDeviceForOrganizationRequest, initOverrides?: RequestInit): Promise; /** * Enables the specified MFA device type for the organization. * Enable the given mfa device for the organization */ enableMfaDeviceForOrganizationRaw(requestParameters: EnableMfaDeviceForOrganizationRequest, initOverrides?: RequestInit): Promise>; /** * Enables the specified MFA device type for the organization. * Enable the given mfa device for the organization */ enableMfaDeviceForOrganization(requestParameters: EnableMfaDeviceForOrganizationRequest, initOverrides?: RequestInit): Promise; /** * Returns the MFA settings for the specified organization. * Get all mfa settings for an organization */ getOrganizationMfaSettingsRaw(requestParameters: GetOrganizationMfaSettingsRequest, initOverrides?: RequestInit): Promise>; /** * Returns the MFA settings for the specified organization. * Get all mfa settings for an organization */ getOrganizationMfaSettings(requestParameters: GetOrganizationMfaSettingsRequest, initOverrides?: RequestInit): Promise; }