import { EndEvent } from '../../Model/Events/index'; import { ProcessModelLike } from '../BaseElementViewModel'; import { EventViewModel } from './EventBaseViewModel'; /** * @swagger * components: * schemas: * EndEventViewModel: * description: An EndEvent. * allOf: * - $ref: '#/components/schemas/EventViewModel' * - type: object * properties: * errorName: * description: The name of the error. * type: string * errorCode: * description: The code of the error. * type: string * errorMessage: * description: The message of the error. * type: string * messageChannel: * description: The channel to which the Message End Event will publish its message. * type: string * signalChannel: * description: The channel to which the Signal End Event will send its signal. * type: string */ export declare class EndEventViewModel extends EventViewModel { errorName?: string; errorCode?: string; errorMessage?: string; constructor(endEvent: EndEvent, processModel: ProcessModelLike); }