/* Options: Date: 2026-03-31 21:22:36 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetTaskCommentsOperation.* //ExcludeTypes: //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.*; public class dtos { /** * Get all comments of a workflow task. */ @Route(Path="/workflowtasks/getcomments", Verbs="POST") @Api(Description="Get all comments of a workflow task.") public static class GetTaskCommentsOperation implements IReturn> { /** * ID of the workflow task */ @ApiMember(Description="ID of the workflow task", IsRequired=true) public Integer TaskID = null; public Integer getTaskID() { return TaskID; } public GetTaskCommentsOperation setTaskID(Integer value) { this.TaskID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }