/* Options: Date: 2025-12-06 09:25:06 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: SlotDistrictSchoolRequest.* //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/SlotDistrict/School/{DistrictId}", Verbs="GET,OPTIONS") open class SlotDistrictSchoolRequest : IReturn { open var DistrictId:Long? = null companion object { private val responseType = SlotDistrictSchoolResponse::class.java } override fun getResponseType(): Any? = SlotDistrictSchoolRequest.responseType } open class SlotDistrictSchoolResponse { open var ResponseStatus:ResponseStatus? = null open var SlotDistrictSchool:ArrayList = ArrayList() } open class School { open var SchoolId:Long? = null open var SchoolName:String? = null open var DistrictId:Int? = null open var DistrictName:String? = null open var CountyId:Int? = null open var CountyName:String? = null open var StateId:Int? = null open var StateName:String? = null }