/* Options: Date: 2026-03-31 21:29:33 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: AcceptTaskOperation.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } /** @description Accept an offered task. */ // @Route("/workflowtasks/accept", "POST") // @Api(Description="Accept an offered task.") export class AcceptTaskOperation implements IReturnVoid { /** @description ID of the workflow task(s) to affect */ // @ApiMember(Description="ID of the workflow task(s) to affect", IsRequired=true) public TaskIDs: number[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AcceptTaskOperation'; } public getMethod() { return 'POST'; } public createResponse() {} }