/* Options: Date: 2024-12-29 03:27:41 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: StudentStatusNoAuthRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/StudentStatusNoAuth", Verbs="POST") open class StudentStatusNoAuthRequest : IReturn { var regent_login:String? = null companion object { private val responseType = StudentStatusResponse::class.java } override fun getResponseType(): Any? = StudentStatusNoAuthRequest.responseType } open class StudentStatusResponse { var is_active:Boolean? = null var is_authenticated:Boolean? = null var is_admitted:Boolean? = null }