/* Options: Date: 2024-10-06 10:30:47 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: SectionsAvailableForStudentRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Sections/Available/{uuid}/Term/{reporting_term}", Verbs="POST") open class SectionsAvailableForStudentRequest : IReturn { var uuid:String? = null var transaction_uuid:String? = null var reporting_term:String? = null var online_only:Boolean? = null var oncampus_only:Boolean? = null var is_admin:Boolean? = null companion object { private val responseType = SectionsAvailableForStudentResponse::class.java } override fun getResponseType(): Any? = SectionsAvailableForStudentRequest.responseType } open class SectionsAvailableForStudentResponse { var responseStatus:ResponseStatus? = null var regent_id:Int? = null var uuid:String? = null var reporting_term:String? = null var notifyOfAcademicProbation:Boolean? = null var sectionsAvailable:ArrayList = ArrayList() var messages:ArrayList = ArrayList() } open class SectionAvailableForStudentResponse : SectionResponse() { var uuid:String? = null var studentSectionUUID:String? = null var registered_amount:BigDecimal? = null var is_full:Boolean? = null var is_too_late:Boolean? = null var is_too_early:Boolean? = null var is_audit:Boolean? = null var is_selected:Boolean? = null var is_registered:Boolean? = null var is_provisional:Boolean? = null var is_missing_requisites:Boolean? = null var is_completed:Boolean? = null var maximum_credit_hours:BigDecimal? = null var maximum_audit_hours:BigDecimal? = null var can_retake:Boolean? = null var is_credit_restricted:Boolean? = null var is_audit_restricted:Boolean? = null var is_oncampus_restricted_for_change:Boolean? = null var is_online_restricted_for_change:Boolean? = null var can_be_provisional:Boolean? = null var can_be_dropped:Boolean? = null var ruleMessages:ArrayList = ArrayList() }