/* Options: Date: 2026-03-31 18:56:45 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: CancelPostponedTaskOperation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Cancel task postponement. */ // @Route("/workflowtasks/cancelpostponed", "POST") // @Api(Description="Cancel task postponement.") public class CancelPostponedTaskOperation : IReturnVoid, Codable { /** * ID of the workflow task(s) to affect */ // @ApiMember(Description="ID of the workflow task(s) to affect", IsRequired=true) public var taskIDs:[Int] = [] required public init(){} }