/* Options: Date: 2025-12-06 07:32:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AgentTaskRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/AgentTask", Verbs="GET,POST,PUT,OPTIONS") // @Route(Path="/v1/AgentTask/{TaskId}", Verbs="DELETE,OPTIONS") public static class AgentTaskRequest implements IReturn { public AgentTaskExtended Task = null; public UUID TaskId = null; public AgentTaskExtended getTask() { return Task; } public AgentTaskRequest setTask(AgentTaskExtended value) { this.Task = value; return this; } public UUID getTaskId() { return TaskId; } public AgentTaskRequest setTaskId(UUID value) { this.TaskId = value; return this; } private static Object responseType = AgentTaskResponse.class; public Object getResponseType() { return responseType; } } public static class AgentTaskResponse { public ResponseStatus ResponseStatus = null; public ArrayList Task = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentTaskResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getTask() { return Task; } public AgentTaskResponse setTask(ArrayList value) { this.Task = value; return this; } } public static class AgentTaskExtended extends AgentTask { public String AssignedToName = null; public String RelatedToName = null; public String getAssignedToName() { return AssignedToName; } public AgentTaskExtended setAssignedToName(String value) { this.AssignedToName = value; return this; } public String getRelatedToName() { return RelatedToName; } public AgentTaskExtended setRelatedToName(String value) { this.RelatedToName = value; return this; } } public static class AgentTask { public UUID TaskId = null; public String Description = null; public Date DueDate = null; public Integer AssignedToAgentId = null; public Integer RelatedToAgentId = null; public Integer CreatedBy = null; public Date DateCreated = null; public Date DateCompleted = null; public Integer CompletedBy = null; public Date DateDeleted = null; public Integer DeletedBy = null; public UUID getTaskId() { return TaskId; } public AgentTask setTaskId(UUID value) { this.TaskId = value; return this; } public String getDescription() { return Description; } public AgentTask setDescription(String value) { this.Description = value; return this; } public Date getDueDate() { return DueDate; } public AgentTask setDueDate(Date value) { this.DueDate = value; return this; } public Integer getAssignedToAgentId() { return AssignedToAgentId; } public AgentTask setAssignedToAgentId(Integer value) { this.AssignedToAgentId = value; return this; } public Integer getRelatedToAgentId() { return RelatedToAgentId; } public AgentTask setRelatedToAgentId(Integer value) { this.RelatedToAgentId = value; return this; } public Integer getCreatedBy() { return CreatedBy; } public AgentTask setCreatedBy(Integer value) { this.CreatedBy = value; return this; } public Date getDateCreated() { return DateCreated; } public AgentTask setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCompleted() { return DateCompleted; } public AgentTask setDateCompleted(Date value) { this.DateCompleted = value; return this; } public Integer getCompletedBy() { return CompletedBy; } public AgentTask setCompletedBy(Integer value) { this.CompletedBy = value; return this; } public Date getDateDeleted() { return DateDeleted; } public AgentTask setDateDeleted(Date value) { this.DateDeleted = value; return this; } public Integer getDeletedBy() { return DeletedBy; } public AgentTask setDeletedBy(Integer value) { this.DeletedBy = value; return this; } } }