// ---------------------- // // generated using a custom program // // ---------------------- export interface EsLogEntryItem { AutomatedApplicationId: number; DateTime: string; Instance?: string | null ; Level: LogEntryLevelString; Message?: string | null ; Source?: string | null ; Type: LogEntryTypeString; } export enum LogEntryLevel { Info = 0, Warn = 1, Error = 2 } export type LogEntryLevelString = keyof typeof LogEntryLevel; export enum LogEntryType { Feedback = 0, Summary = 1 } export type LogEntryTypeString = keyof typeof LogEntryType;