/* Options: Date: 2025-12-06 05:14:30 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: AgentDropdownAdminRequest.* //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/Agent/Dropdown/Admin", Verbs="GET,OPTIONS") public static class AgentDropdownAdminRequest implements IReturn { private static Object responseType = AgentDropdownResponse.class; public Object getResponseType() { return responseType; } } public static class AgentDropdownResponse { public ResponseStatus ResponseStatus = null; public ArrayList Agents = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentDropdownResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getAgents() { return Agents; } public AgentDropdownResponse setAgents(ArrayList value) { this.Agents = value; return this; } } public static class AgentDD { public Integer AgentId = null; public String AgentName = null; public String AgentStatus = null; public Integer ContactCount = null; public Integer getAgentId() { return AgentId; } public AgentDD setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentName() { return AgentName; } public AgentDD setAgentName(String value) { this.AgentName = value; return this; } public String getAgentStatus() { return AgentStatus; } public AgentDD setAgentStatus(String value) { this.AgentStatus = value; return this; } public Integer getContactCount() { return ContactCount; } public AgentDD setContactCount(Integer value) { this.ContactCount = value; return this; } } }