/* Options: Date: 2025-12-06 06:26:04 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: NCESGetDropdownsRequest.* //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/NCES/GetDropdowns", Verbs="GET") // @Route(Path="/v1/NCES/GetDropdowns/{StateID}", Verbs="GET") // @Route(Path="/v1/NCES/GetDropdowns/{StateID}/{CountyID}", Verbs="GET") // @Route(Path="/v1/NCES/GetDropdowns/{StateID}/{CountyID}/{DistrictID}", Verbs="GET") public static class NCESGetDropdownsRequest implements IReturn { public Integer StateID = null; public Integer CountyID = null; public Integer DistrictID = null; public Integer getStateID() { return StateID; } public NCESGetDropdownsRequest setStateID(Integer value) { this.StateID = value; return this; } public Integer getCountyID() { return CountyID; } public NCESGetDropdownsRequest setCountyID(Integer value) { this.CountyID = value; return this; } public Integer getDistrictID() { return DistrictID; } public NCESGetDropdownsRequest setDistrictID(Integer value) { this.DistrictID = value; return this; } private static Object responseType = NCESGetDropdownsResponse.class; public Object getResponseType() { return responseType; } } public static class NCESGetDropdownsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Dropdowns = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NCESGetDropdownsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getDropdowns() { return Dropdowns; } public NCESGetDropdownsResponse setDropdowns(ArrayList value) { this.Dropdowns = value; return this; } } public static class NCESDropdown { public Long ID = null; public String Name = null; public Long getId() { return ID; } public NCESDropdown setId(Long value) { this.ID = value; return this; } public String getName() { return Name; } public NCESDropdown setName(String value) { this.Name = value; return this; } } }