/* Options: Date: 2026-03-31 21:25:55 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: CancelAcceptedTaskOperation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Cancel acceptation of an offered task. */ // @Route("/workflowtasks/cancelaccepted", "POST") // @Api(Description="Cancel acceptation of an offered task.") public class CancelAcceptedTaskOperation : 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(){} }