/* Options: Date: 2026-06-23 00:06:53 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: InvoicePaymentIntentRequest.* //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-intent", Verbs="POST,OPTIONS") open class InvoicePaymentIntentRequest : IReturn { open var InvoiceUID:UUID? = null companion object { private val responseType = InvoicePaymentIntentResponse::class.java } override fun getResponseType(): Any? = InvoicePaymentIntentRequest.responseType } open class InvoicePaymentIntentResponse { open var ResponseStatus:ResponseStatus? = null open var Success:Boolean? = null open var ClientSecret:String? = null open var AmountDue:BigDecimal? = null open var Message:String? = null }