/* Options: Date: 2025-12-06 08:17:00 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: AgentDownlineCountRequest.* //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/AgentDownlineCount", Verbs="GET,OPTIONS") // @Route(Path="/v1/AgentDownlineCount/{AgentId}", Verbs="GET,OPTIONS") public static class AgentDownlineCountRequest implements IReturn { public Integer AgentId = null; public Integer getAgentId() { return AgentId; } public AgentDownlineCountRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = AgentDownlineCountResponse.class; public Object getResponseType() { return responseType; } } public static class AgentDownlineCountResponse { public ArrayList result = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getResult() { return result; } public AgentDownlineCountResponse setResult(ArrayList value) { this.result = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentDownlineCountResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class AgentDownlineCount { public String AgentStatus = null; public Integer CountAgentStatus = null; public String getAgentStatus() { return AgentStatus; } public AgentDownlineCount setAgentStatus(String value) { this.AgentStatus = value; return this; } public Integer getCountAgentStatus() { return CountAgentStatus; } public AgentDownlineCount setCountAgentStatus(Integer value) { this.CountAgentStatus = value; return this; } } }