/* Options: Date: 2025-12-06 05:19:23 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: orgGetSingleRequest.* //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/Organization/GetSingleBySchoolID/{schoolID}", Verbs="GET, OPTIONS") // @Route(Path="/v1/Organization/GetSingleByDistrictID/{districtID}", Verbs="GET, OPTIONS") open class orgGetSingleRequest : IReturn { open var schoolID:Long? = null open var districtID:Int? = null companion object { private val responseType = orgGetSingleResponse::class.java } override fun getResponseType(): Any? = orgGetSingleRequest.responseType } open class orgGetSingleResponse { open var ResponseStatus:ResponseStatus? = null open var org:Organization? = null } open class Organization { open var OrganizationId:Long? = null open var OrganizationTypeId:Int? = null open var StateID:Int? = null open var StateName:String? = null open var DistrictID:Int? = null open var DistrictName:String? = null open var CountyID:Int? = null open var CountyName:String? = null open var SchoolID:Long? = null open var SchoolName:String? = null open var EntityName:String? = null open var EntityId:String? = null open var Source:String? = null open var Pera_ListId:Int? = null }