import "../ApiClient-fBZ10h6n.mjs"; import { t as ExecutionKind } from "../ExecutionKind-CympInQF.mjs"; import { t as Level } from "../Level-C7urWy3V.mjs"; //#region src/model/LogEntry.d.ts type ILogEntry = { namespace: string; flowId: string; taskId: string; executionId: string; taskRunId: string; attemptNumber: number; triggerId: string; timestamp: Date; level: Level; thread: string; message: string; executionKind: ExecutionKind; }; /** * @typedef {Object} ILogEntry * @property {String} namespace * @property {String} flowId * @property {String} taskId * @property {String} executionId * @property {String} taskRunId * @property {Number} attemptNumber * @property {String} triggerId * @property {Date} timestamp * @property {Level} level * @property {String} thread * @property {String} message * @property {ExecutionKind} executionKind */ /** * The LogEntry model module. * @module model/LogEntry * @type {ILogEntry} */ declare class LogEntry { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, namespace: any, flowId: any): void; /** * Constructs a LogEntry from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/LogEntry} obj Optional instance to populate. * @return {module:model/LogEntry} The populated LogEntry instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to LogEntry. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to LogEntry. */ static validateJSON(data: any): boolean; /** * Constructs a new LogEntry. * @alias module:model/LogEntry * @param {String} namespace - * @param {String} flowId - */ constructor(namespace: string, flowId: string); namespace: string; flowId: string; taskId: string; executionId: string; taskRunId: string; attemptNumber: number; triggerId: string; timestamp: Date; level: Level; thread: string; message: string; executionKind: ExecutionKind; } declare namespace LogEntry { let RequiredProperties: string[]; } //#endregion export { ILogEntry, LogEntry as default };