/* Options: Date: 2024-10-06 10:27:32 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: SectionRefundScheduleRequest.* //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/{reporting_term}/RefundSchedule/{section_refund_uuid}", Verbs="POST") open class SectionRefundScheduleRequest : IReturn { var reporting_term:String? = null var section_refund_uuid:String? = null companion object { private val responseType = SectionRefundScheduleResponse::class.java } override fun getResponseType(): Any? = SectionRefundScheduleRequest.responseType } open class SectionRefundScheduleResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var secUUID:String? = null var section_id:Int? = null var course_name:String? = null var section_code:String? = null var title:String? = null var reporting_term:String? = null var rate_code:String? = null var rate_description:String? = null var percentage:BigDecimal? = null var start_date:Date? = null var end_date:Date? = null }