interface IExceptionInternal {
    exceptions: IExceptionDetailsInternal[];
    id: string;
    isManual: boolean;
    measurements?: {
        [key: string]: number;
    };
    problemGroup: string;
    properties?: {
        [key: string]: any;
    };
    severityLevel?: number;
    ver: string;
}

Hierarchy

  • IPartC
    • IExceptionInternal

Properties

exceptions: IExceptionDetailsInternal[]
id: string
isManual: boolean
measurements?: {
    [key: string]: number;
}

Property bag to contain additional custom measurements (Part C)

-- please use properties instead

problemGroup: string
properties?: {
    [key: string]: any;
}

Property bag to contain additional custom properties (Part C)

severityLevel?: number
ver: string