/* Options: Date: 2026-03-31 17:04:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CancelWorkflowOperation.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } /** @description Cancel a workflow. */ // @Route("/workflows/cancel", "POST") // @Api(Description="Cancel a workflow.") export class CancelWorkflowOperation implements IReturnVoid { /** @description ID of the workflow to cancel */ // @ApiMember(Description="ID of the workflow to cancel", IsRequired=true) public WorkflowID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CancelWorkflowOperation'; } public getMethod() { return 'POST'; } public createResponse() {} }