/* Options: Date: 2025-12-06 08:40:40 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: AgentNBCDrilldownRequest.* //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/AgentNBCDrilldown", Verbs="GET,OPTIONS") // @Route(Path="/v1/AgentNBCDrilldown/{AgentId}/{PolicyType}", Verbs="GET,OPTIONS") public static class AgentNBCDrilldownRequest implements IReturn { public Integer AgentId = null; public String PolicyType = null; public Integer getAgentId() { return AgentId; } public AgentNBCDrilldownRequest setAgentId(Integer value) { this.AgentId = value; return this; } public String getPolicyType() { return PolicyType; } public AgentNBCDrilldownRequest setPolicyType(String value) { this.PolicyType = value; return this; } private static Object responseType = AgentNBCDrilldownResponse.class; public Object getResponseType() { return responseType; } } public static class AgentNBCDrilldownResponse { public ResponseStatus ResponseStatus = null; public ArrayList result = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentNBCDrilldownResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getResult() { return result; } public AgentNBCDrilldownResponse setResult(ArrayList value) { this.result = value; return this; } } public static class AgentNBCDrilldownItem { public String FirstName = null; public String LastName = null; public String PolicyNumber = null; public String Amount = null; public String AltAmount = null; public String Phase = null; public String getFirstName() { return FirstName; } public AgentNBCDrilldownItem setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public AgentNBCDrilldownItem setLastName(String value) { this.LastName = value; return this; } public String getPolicyNumber() { return PolicyNumber; } public AgentNBCDrilldownItem setPolicyNumber(String value) { this.PolicyNumber = value; return this; } public String getAmount() { return Amount; } public AgentNBCDrilldownItem setAmount(String value) { this.Amount = value; return this; } public String getAltAmount() { return AltAmount; } public AgentNBCDrilldownItem setAltAmount(String value) { this.AltAmount = value; return this; } public String getPhase() { return Phase; } public AgentNBCDrilldownItem setPhase(String value) { this.Phase = value; return this; } } }