/* Options: Date: 2024-12-29 03:47:07 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: StudentExemptionCredentialsRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/StudentExemptionCredentials/{uuid}", Verbs="POST") open class StudentExemptionCredentialsRequest : IReturn { var uuid:String? = null companion object { private val responseType = StudentExemptionCredentialsResponse::class.java } override fun getResponseType(): Any? = StudentExemptionCredentialsRequest.responseType } open class StudentExemptionCredentialsResponse { var responseStatus:ResponseStatus? = null var regent_id:Int? = null var uuid:String? = null var studentExemptionCredentials:ArrayList = ArrayList() } open class StudentExemptionCredentialResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var exemption_uuid:String? = null var course_name:String? = null var title:String? = null var credit_value:BigDecimal? = null var added_by:String? = null var added_date:Date? = null var changed_by:String? = null var changed_date:Date? = null }