/* Options: Date: 2024-10-06 10:28:01 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: StudentProgramRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/StudentProgram", Verbs="POST") open class StudentProgramRequest : IReturn { var uuid:String? = null var programId:Int? = null companion object { private val responseType = StudentProgramResponse::class.java } override fun getResponseType(): Any? = StudentProgramRequest.responseType } open class StudentProgramResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var id:Int? = null var program_code:String? = null var concentration_code:String? = null var start_date:Date? = null var end_date:Date? = null var catalog:String? = null var current_status:String? = null var current_status_date:Date? = null var added_by:String? = null var added_date:Date? = null var changed_by:String? = null var changed_date:Date? = null }