/* Options: Date: 2025-12-06 06:28:01 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: NCESGetDropdownsRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/NCES/GetDropdowns", "GET") // @Route("/v1/NCES/GetDropdowns/{StateID}", "GET") // @Route("/v1/NCES/GetDropdowns/{StateID}/{CountyID}", "GET") // @Route("/v1/NCES/GetDropdowns/{StateID}/{CountyID}/{DistrictID}", "GET") public class NCESGetDropdownsRequest : IReturn, Codable { public typealias Return = NCESGetDropdownsResponse public var stateID:Int? public var countyID:Int? public var districtID:Int? required public init(){} } public class NCESGetDropdownsResponse : Codable { public var responseStatus:ResponseStatus? public var dropdowns:[NCESDropdown] = [] required public init(){} } public class NCESDropdown : Codable { public var id:Int? public var name:String? required public init(){} }