import "../ApiClient-fBZ10h6n.mjs"; import { t as ExecutionKind } from "../ExecutionKind-CympInQF.mjs"; //#region src/model/MetricEntry.d.ts type IMetricEntry = { namespace: string; flowId: string; taskId: string; executionId: string; taskRunId: string; type: string; name: string; value: number; timestamp: Date; tags: any; executionKind: ExecutionKind; }; /** * @typedef {Object} IMetricEntry * @property {String} namespace * @property {String} flowId * @property {String} taskId * @property {String} executionId * @property {String} taskRunId * @property {String} type * @property {String} name * @property {Number} value * @property {Date} timestamp * @property {Object.} tags * @property {ExecutionKind} executionKind */ /** * The MetricEntry model module. * @module model/MetricEntry * @type {IMetricEntry} */ declare class MetricEntry { /** * 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, type: any, name: any, value: any, timestamp: any): void; /** * Constructs a MetricEntry 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/MetricEntry} obj Optional instance to populate. * @return {module:model/MetricEntry} The populated MetricEntry instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to MetricEntry. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to MetricEntry. */ static validateJSON(data: any): boolean; /** * Constructs a new MetricEntry. * @alias module:model/MetricEntry * @param {String} namespace - * @param {String} flowId - * @param {String} type - * @param {String} name - * @param {Number} value - * @param {Date} timestamp - */ constructor(namespace: string, flowId: string, type: string, name: string, value: number, timestamp: Date); namespace: string; flowId: string; taskId: string; executionId: string; taskRunId: string; type: string; name: string; value: number; timestamp: Date; tags: any; executionKind: ExecutionKind; } declare namespace MetricEntry { let RequiredProperties: string[]; } //#endregion export { IMetricEntry, MetricEntry as default };