/* Options: Date: 2025-04-10 09:52:54 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: FinanceRegistrationDepositPaymentRequest.* //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/RegistrationDepositPayment/{uuid}/{reporting_term}", Verbs="POST") open class FinanceRegistrationDepositPaymentRequest : IReturn { var uuid:String? = null var reporting_term:String? = null var transaction_uuid:String? = null var amount:BigDecimal? = null var is_audio:Boolean? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = FinanceRegistrationDepositPaymentRequest.responseType }