/* Options: Date: 2026-03-31 21:22:28 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: AddCommentOperation.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } /** @description Add a workflow task comment. */ // @Route("/workflowtasks/addcomment", "POST") // @Api(Description="Add a workflow task comment.") export class AddCommentOperation 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[] = []; /** @description The comment to be added */ // @ApiMember(Description="The comment to be added", IsRequired=true) public Comment: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddCommentOperation'; } public getMethod() { return 'POST'; } public createResponse() {} }