/* Options: Date: 2024-12-29 03:24:26 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: StudentAcademicCredentialAdditionalInstructorsRequest.* //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}/AdditionalInstructors/{stac_uuid}", Verbs="POST") open class StudentAcademicCredentialAdditionalInstructorsRequest : IReturn { var uuid:String? = null var stac_uuid:String? = null companion object { private val responseType = StudentAcademicCredentialAdditionalInstructorsResponse::class.java } override fun getResponseType(): Any? = StudentAcademicCredentialAdditionalInstructorsRequest.responseType } open class StudentAcademicCredentialAdditionalInstructorsResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var stac_uuid:String? = null var course_name:String? = null var term:String? = null var reporting_term:String? = null var instructors:ArrayList = ArrayList() } open class InstructorResponse { var responseStatus:ResponseStatus? = null var regent_id:Int? = null var regent_login:String? = null var preferred_name:String? = null var first_name:String? = null var last_name:String? = null var full_name:String? = null var email:String? = null var image_base64:String? = null }