import "../ApiClient-fBZ10h6n.mjs"; import { t as EvaluationType } from "../EvaluationType-BEVBskBx.mjs"; //#region src/model/KillSwitch.d.ts type IKillSwitch = { id: string; name: string; tenantId: string; namespace: string; flowId: string; executionIds: Array; startDate: Date; endDate: Date; description: string; evaluationType: EvaluationType; enabled: boolean; deleted: boolean; }; /** * @typedef {Object} IKillSwitch * @property {String} id * @property {String} name * @property {String} tenantId * @property {String} namespace * @property {String} flowId * @property {Array.} executionIds * @property {Date} startDate * @property {Date} endDate * @property {String} description * @property {EvaluationType} evaluationType * @property {Boolean} enabled * @property {Boolean} deleted */ /** * The KillSwitch model module. * @module model/KillSwitch * @type {IKillSwitch} */ declare class KillSwitch { /** * 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, name: any, startDate: any, evaluationType: any): void; /** * Constructs a KillSwitch 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/KillSwitch} obj Optional instance to populate. * @return {module:model/KillSwitch} The populated KillSwitch instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to KillSwitch. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to KillSwitch. */ static validateJSON(data: any): boolean; /** * Constructs a new KillSwitch. * @alias module:model/KillSwitch * @param {String} name - * @param {Date} startDate - * @param {module:model/EvaluationType} evaluationType - */ constructor(name: string, startDate: Date, evaluationType: any); id: string; name: string; tenantId: string; namespace: string; flowId: string; executionIds: string[]; startDate: Date; endDate: Date; description: string; evaluationType: EvaluationType; enabled: boolean; deleted: boolean; } declare namespace KillSwitch { let RequiredProperties: string[]; } //#endregion export { IKillSwitch, KillSwitch as default };