/* Options: Date: 2024-10-06 10:28:14 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: FinancialAidSummaryInTermRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Finance/FinancialAid/Awards/{reporting_term}/Summary", Verbs="POST") open class FinancialAidSummaryInTermRequest : IReturn { var reporting_term:String? = null companion object { private val responseType = FinancialAidSummaryInTermResponse::class.java } override fun getResponseType(): Any? = FinancialAidSummaryInTermRequest.responseType } open class FinancialAidSummaryInTermResponse { var responseStatus:ResponseStatus? = null var reporting_term:String? = null var awards:ArrayList = ArrayList() } open class FinancialAidAwardSummaryInTermResponse { var award_id:Int? = null var award_code:String? = null var award_description:String? = null var budget_amount:BigDecimal? = null var awarded_amount:BigDecimal? = null var person_awards:ArrayList = ArrayList() } open class FinancialAidAwardResponse { var uuid:String? = null var regent_id:Int? = null var first_name:String? = null var last_name:String? = null var awarded_amount:BigDecimal? = null }