//#region src/model/ExecutionTrigger.d.ts type IExecutionTrigger = { id: string; type: string; variables: any; logFile: string; }; /** * @typedef {Object} IExecutionTrigger * @property {String} id * @property {String} type * @property {Object.} variables * @property {String} logFile */ /** * The ExecutionTrigger model module. * @module model/ExecutionTrigger * @type {IExecutionTrigger} */ declare class ExecutionTrigger { /** * 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, id: any, type: any): void; /** * Constructs a ExecutionTrigger 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/ExecutionTrigger} obj Optional instance to populate. * @return {module:model/ExecutionTrigger} The populated ExecutionTrigger instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ExecutionTrigger. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ExecutionTrigger. */ static validateJSON(data: any): boolean; /** * Constructs a new ExecutionTrigger. * @alias module:model/ExecutionTrigger * @param {String} id - * @param {String} type - */ constructor(id: string, type: string); id: string; type: string; variables: any; logFile: string; } declare namespace ExecutionTrigger { let RequiredProperties: string[]; } //#endregion export { IExecutionTrigger, ExecutionTrigger as default };