/* Options: Date: 2025-04-06 10:02:11 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StudentStatusRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/StudentStatus", Verbs="POST") open class StudentStatusRequest : IReturn { var regent_login:String? = null var password:String? = null companion object { private val responseType = StudentStatusResponse::class.java } override fun getResponseType(): Any? = StudentStatusRequest.responseType } open class StudentStatusResponse { var is_active:Boolean? = null var is_authenticated:Boolean? = null var is_admitted:Boolean? = null }