/** * 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 OrganizationMfaSettings */ export interface OrganizationMfaSettings { /** * ISO 8601 timestamp of when this MFA method was enabled, or null if disabled * @type {Date} * @memberof OrganizationMfaSettings */ enabledAt?: Date | null; /** * * @type {MFADeviceType} * @memberof OrganizationMfaSettings */ mfaDeviceType: MFADeviceType; } export declare function OrganizationMfaSettingsFromJSON(json: any): OrganizationMfaSettings; export declare function OrganizationMfaSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationMfaSettings; export declare function OrganizationMfaSettingsToJSON(value?: OrganizationMfaSettings | null): any;