/* Options: Date: 2026-03-31 17:11:04 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: GetTaskCommentsOperation.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Get all comments of a workflow task. */ // @Route("/workflowtasks/getcomments", "POST") // @Api(Description="Get all comments of a workflow task.") export class GetTaskCommentsOperation implements IReturn { /** @description ID of the workflow task */ // @ApiMember(Description="ID of the workflow task", IsRequired=true) public TaskID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetTaskCommentsOperation'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }