/* Options: Date: 2025-12-06 06:26:05 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: AgentHistoryRequest.* //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/AgentHistory", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class AgentHistoryRequest implements IReturn { public ArrayList AgentHistory = new ArrayList(); public ArrayList getAgentHistory() { return AgentHistory; } public AgentHistoryRequest setAgentHistory(ArrayList value) { this.AgentHistory = value; return this; } private static Object responseType = AgentHistoryResponse.class; public Object getResponseType() { return responseType; } } public static class AgentHistoryResponse { public ResponseStatus ResponseStatus = null; public ArrayList AgentHistory = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentHistoryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getAgentHistory() { return AgentHistory; } public AgentHistoryResponse setAgentHistory(ArrayList value) { this.AgentHistory = value; return this; } } public static class AgentHistory { public Integer AgentHistoryId = null; public Integer SubAgentId = null; public Integer EventId = null; public Integer AgentId = null; public Date EventDate = null; public Date DateCreated = null; public String Note = null; public Integer getAgentHistoryId() { return AgentHistoryId; } public AgentHistory setAgentHistoryId(Integer value) { this.AgentHistoryId = value; return this; } public Integer getSubAgentId() { return SubAgentId; } public AgentHistory setSubAgentId(Integer value) { this.SubAgentId = value; return this; } public Integer getEventId() { return EventId; } public AgentHistory setEventId(Integer value) { this.EventId = value; return this; } public Integer getAgentId() { return AgentId; } public AgentHistory setAgentId(Integer value) { this.AgentId = value; return this; } public Date getEventDate() { return EventDate; } public AgentHistory setEventDate(Date value) { this.EventDate = value; return this; } public Date getDateCreated() { return DateCreated; } public AgentHistory setDateCreated(Date value) { this.DateCreated = value; return this; } public String getNote() { return Note; } public AgentHistory setNote(String value) { this.Note = value; return this; } } }