/* Options: Date: 2024-10-06 10:31:29 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: FinanceWebFormPaymentTrackingCodeRequest.* //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/WebFormPaymentTrackingCode/{regent_id}", Verbs="POST") open class FinanceWebFormPaymentTrackingCodeRequest : IReturn { var regent_id:Int? = null var amount:BigDecimal? = null var success_callback_url:String? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = FinanceWebFormPaymentTrackingCodeRequest.responseType }