/* Options: Date: 2025-05-06 16:30:18 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PaymentServices.PaymentCancelRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/payments/cancel", Verbs="GET POST") open class PaymentCancelRequest : IReturn { var paymentMethodId:String? = null var paymentId:String? = null var details:String? = null companion object { private val responseType = PaymentCancelResponse::class.java } override fun getResponseType(): Any? = PaymentCancelRequest.responseType } open class PaymentCancelResponse { var status:String? = null var message:String? = null var paymentMethodId:String? = null var jsonResponse:String? = null }