/* Options: Date: 2026-04-01 17:22:31 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: GetTaskCommentsOperation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get all comments of a workflow task. */ // @Route("/workflowtasks/getcomments", "POST") // @Api(Description="Get all comments of a workflow task.") public class GetTaskCommentsOperation : IReturn, Codable { public typealias Return = [WorkflowTaskCommentDTO] /** * ID of the workflow task */ // @ApiMember(Description="ID of the workflow task", IsRequired=true) public var taskID:Int? required public init(){} }