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