/* Options: Date: 2025-07-04 07:56:03 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetWorkflowTaskComments.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class GetWorkflowTaskComments implements IReturn> { public Integer ID = null; public Integer getId() { return ID; } public GetWorkflowTaskComments setId(Integer value) { this.ID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static interface IComment { public String Text = null; public Date Date = null; public String Username = null; public Boolean IsMine = null; } public static class WorkflowTaskComment implements IComment { public Integer WorkflowTaskID = null; public Integer UserID = null; public String TaskTitle = null; public String Connection = null; public String Username = null; public String Text = null; public Date Date = null; public Boolean IsMine = null; public Integer getWorkflowTaskID() { return WorkflowTaskID; } public WorkflowTaskComment setWorkflowTaskID(Integer value) { this.WorkflowTaskID = value; return this; } public Integer getUserID() { return UserID; } public WorkflowTaskComment setUserID(Integer value) { this.UserID = value; return this; } public String getTaskTitle() { return TaskTitle; } public WorkflowTaskComment setTaskTitle(String value) { this.TaskTitle = value; return this; } public String getConnection() { return Connection; } public WorkflowTaskComment setConnection(String value) { this.Connection = value; return this; } public String getUsername() { return Username; } public WorkflowTaskComment setUsername(String value) { this.Username = value; return this; } public String getText() { return Text; } public WorkflowTaskComment setText(String value) { this.Text = value; return this; } public Date getDate() { return Date; } public WorkflowTaskComment setDate(Date value) { this.Date = value; return this; } public Boolean getIsMine() { return IsMine; } public WorkflowTaskComment setIsMine(Boolean value) { this.IsMine = value; return this; } } }