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