/* Options: Date: 2026-06-22 22:53:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InvoiceRecordPaymentRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/invoice/{InvoiceUID}/payment", Verbs="PUT,OPTIONS") open class InvoiceRecordPaymentRequest : IReturn { open var InvoiceUID:UUID? = null open var StripeToken:String? = null companion object { private val responseType = InvoiceRecordPaymentResponse::class.java } override fun getResponseType(): Any? = InvoiceRecordPaymentRequest.responseType } open class InvoiceRecordPaymentResponse { open var ResponseStatus:ResponseStatus? = null open var Success:Boolean? = null open var Paid:Boolean? = null open var ReceiptUrl:String? = null open var Message:String? = null }