/* Options: Date: 2025-12-06 06:28:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NCESGetDropdownsRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @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") open class NCESGetDropdownsRequest : IReturn { open var StateID:Int? = null open var CountyID:Int? = null open var DistrictID:Int? = null companion object { private val responseType = NCESGetDropdownsResponse::class.java } override fun getResponseType(): Any? = NCESGetDropdownsRequest.responseType } open class NCESGetDropdownsResponse { open var ResponseStatus:ResponseStatus? = null open var Dropdowns:ArrayList = ArrayList() } open class NCESDropdown { open var ID:Long? = null open var Name:String? = null }