/* Options: Date: 2026-03-31 18:41:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTaskCommentsOperation.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* /** * Get all comments of a workflow task. */ @Route(Path="/workflowtasks/getcomments", Verbs="POST") @Api(Description="Get all comments of a workflow task.") open class GetTaskCommentsOperation : IReturn> { /** * ID of the workflow task */ @ApiMember(Description="ID of the workflow task", IsRequired=true) open var TaskID:Int? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = GetTaskCommentsOperation.responseType }