/* Options: Date: 2024-12-29 03:25:20 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: StudentAcademicCredentialHistoryRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/StudentAcademicCredential/{uuid}/History/{stacUUID}", Verbs="POST") open class StudentAcademicCredentialHistoryRequest : IReturn { var uuid:String? = null var stacUUID:String? = null companion object { private val responseType = StudentAcademicCredentialGradeHistoryResponse::class.java } override fun getResponseType(): Any? = StudentAcademicCredentialHistoryRequest.responseType } open class StudentAcademicCredentialGradeHistoryResponse { var responseStatus:ResponseStatus? = null var regent_id:Int? = null var uuid:String? = null var stacUUID:String? = null var course_name:String? = null var title:String? = null var term:String? = null var student_academic_credential_history_entry:ArrayList = ArrayList() } open class StudentAcademicCredentialGradeHistoryEntryResponse { var grade:String? = null var last_changed_by:String? = null var date:Date? = null }