/* Options: Date: 2026-03-31 17:11:01 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: AddCommentOperation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Add a workflow task comment. */ // @Route("/workflowtasks/addcomment", "POST") // @Api(Description="Add a workflow task comment.") public class AddCommentOperation : 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] = [] /** * The comment to be added */ // @ApiMember(Description="The comment to be added", IsRequired=true) public var comment:String? required public init(){} }