/* Options: Date: 2026-03-31 18:41:16 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: ChangePostponedTaskOperation.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } /** @description Change workflow task postponement. */ // @Route("/workflowtasks/changepostponed", "POST") // @Api(Description="Change workflow task postponement.") export class ChangePostponedTaskOperation 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 Postpone until? */ // @ApiMember(Description="Postpone until?", IsRequired=true) public DateTime: string; /** @description Reason for postponing workflow task */ // @ApiMember(Description="Reason for postponing workflow task", IsRequired=true) public Reason: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ChangePostponedTaskOperation'; } public getMethod() { return 'POST'; } public createResponse() {} }