import { DiagnosticReportCategoryEnum } from './DiagnosticReportCategoryEnum';
import { DiagnosticReportLevelEnum } from './DiagnosticReportLevelEnum';
/** Relevant informations of the service detected from the MOS or the signal leg in SIP/MGCP protocol. */
export interface DiagnosticReport {
    /** Identifier of the concerned leg */
    callId: string;
    /** Typology where the diagnostic arriving from */
    category: DiagnosticReportCategoryEnum;
    /** Datetime of the diagnostic */
    datetime: string;
    /** Explanation of the diagnostic */
    description: string;
    /** The level of the diagnostic */
    level: DiagnosticReportLevelEnum;
    /** Name of the rule detected */
    name: string;
    /** Report of the diagnostic */
    report: string;
}
//# sourceMappingURL=DiagnosticReport.d.ts.map