//#region src/model/AssetsControllerApiAssetLineageEvent.d.ts type IAssetsControllerApiAssetLineageEvent = { uid: string; namespace: string; flowId: string; flowRevision: number; executionId: string; taskId: string; taskRunId: string; state: string; /** * :model/AssetIdentifier>} inputs */ "": Array; created: Date; startDate: Date; endDate: Date; }; /** * @typedef {Object} IAssetsControllerApiAssetLineageEvent * @property {String} uid * @property {String} namespace * @property {String} flowId * @property {Number} flowRevision * @property {String} executionId * @property {String} taskId * @property {String} taskRunId * @property {String} state * @property {Array.} inputs * @property {Array.} outputs * @property {Date} created * @property {Date} startDate * @property {Date} endDate */ /** * The AssetsControllerApiAssetLineageEvent model module. * @module model/AssetsControllerApiAssetLineageEvent * @type {IAssetsControllerApiAssetLineageEvent} */ declare class AssetsControllerApiAssetLineageEvent { /** * 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): void; /** * Constructs a AssetsControllerApiAssetLineageEvent 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/AssetsControllerApiAssetLineageEvent} obj Optional instance to populate. * @return {module:model/AssetsControllerApiAssetLineageEvent} The populated AssetsControllerApiAssetLineageEvent instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to AssetsControllerApiAssetLineageEvent. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to AssetsControllerApiAssetLineageEvent. */ static validateJSON(data: any): boolean; uid: string; namespace: string; flowId: string; flowRevision: number; executionId: string; taskId: string; taskRunId: string; state: string; inputs: any; outputs: any; created: Date; startDate: Date; endDate: Date; } //#endregion export { IAssetsControllerApiAssetLineageEvent, AssetsControllerApiAssetLineageEvent as default };