import "../ApiClient-fBZ10h6n.mjs"; import "../Label-NQsPduJI.mjs"; import { t as Backfill_default } from "../Backfill-wUd12WSz.mjs"; //#region src/model/Trigger.d.ts type ITrigger = { disabled: boolean; tenantId: string; namespace: string; flowId: string; triggerId: string; date: Date; nextExecutionDate: Date; backfill: Backfill_default; /** * :model/StateType>} stopAfter */ "": Array; executionId: string; updatedDate: Date; evaluateRunningDate: Date; workerId: string; }; /** * @typedef {Object} ITrigger * @property {Boolean} disabled * @property {String} tenantId * @property {String} namespace * @property {String} flowId * @property {String} triggerId * @property {Date} date * @property {Date} nextExecutionDate * @property {Backfill} backfill * @property {Array.} stopAfter * @property {String} executionId * @property {Date} updatedDate * @property {Date} evaluateRunningDate * @property {String} workerId */ /** * The Trigger model module. * @module model/Trigger * @type {ITrigger} */ declare class Trigger { /** * 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, triggerId: any, date: any): void; /** * Constructs a Trigger 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/Trigger} obj Optional instance to populate. * @return {module:model/Trigger} The populated Trigger instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Trigger. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Trigger. */ static validateJSON(data: any): boolean; /** * Constructs a new Trigger. * @alias module:model/Trigger * @implements module:model/TriggerContext * @param {String} namespace - * @param {String} flowId - * @param {String} triggerId - * @param {Date} date - */ constructor(namespace: string, flowId: string, triggerId: string, date: Date); disabled: boolean; tenantId: string; namespace: string; flowId: string; triggerId: string; date: Date; nextExecutionDate: Date; backfill: Backfill_default; stopAfter: any; executionId: string; updatedDate: Date; evaluateRunningDate: Date; workerId: string; } declare namespace Trigger { let RequiredProperties: string[]; } //#endregion export { ITrigger, Trigger as default };