import "../ApiClient-fBZ10h6n.mjs"; import { t as ExecutionTrigger_default } from "../ExecutionTrigger-CzKbJUnh.mjs"; import "../StateType-CA4aMnXy.mjs"; import "../StateHistory-CKitluwW.mjs"; import { t as State_default } from "../State-DVXHVcVv.mjs"; //#region src/model/WebhookResponse.d.ts type IWebhookResponse = { tenantId: string; id: string; namespace: string; flowId: string; flowRevision: number; trigger: ExecutionTrigger_default; outputs: any; /** * :model/Label>} labels */ "": Array; state: State_default; url: string; }; /** * @typedef {Object} IWebhookResponse * @property {String} tenantId * @property {String} id * @property {String} namespace * @property {String} flowId * @property {Number} flowRevision * @property {ExecutionTrigger} trigger * @property {Object.} outputs * @property {Array.} labels * @property {State} state * @property {String} url */ /** * The WebhookResponse model module. * @module model/WebhookResponse * @type {IWebhookResponse} */ declare class WebhookResponse { /** * 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 WebhookResponse 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/WebhookResponse} obj Optional instance to populate. * @return {module:model/WebhookResponse} The populated WebhookResponse instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to WebhookResponse. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to WebhookResponse. */ static validateJSON(data: any): boolean; tenantId: string; id: string; namespace: string; flowId: string; flowRevision: number; trigger: ExecutionTrigger_default; outputs: any; labels: any; state: State_default; url: string; } //#endregion export { IWebhookResponse, WebhookResponse as default };