/* Options: Date: 2024-10-06 10:29:50 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: BeanstreamPaymentVerificationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Beanstream/Payment/{uuid}/Verify", Verbs="POST") open class BeanstreamPaymentVerificationRequest : IReturn { var uuid:String? = null companion object { private val responseType = FinancePaymentResponse::class.java } override fun getResponseType(): Any? = BeanstreamPaymentVerificationRequest.responseType } open class FinancePaymentResponse { var paymentUUID:String? = null var order_id:String? = null var external_payment_id:Int? = null var added_date:Date? = null var regent_id:Int? = null var uuid:String? = null var amount:BigDecimal? = null var payment_type:String? = null var is_pushed_to_gl:Boolean? = null var current_status:String? = null var current_status_date:Date? = null }