/* Options: Date: 2026-06-22 20:53:21 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: PortalPaymentIntentRequest.* //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="/portal/{Token}/payment-intent", Verbs="POST,OPTIONS") open class PortalPaymentIntentRequest : IReturn { open var Token:String? = null companion object { private val responseType = PortalPaymentIntentResponse::class.java } override fun getResponseType(): Any? = PortalPaymentIntentRequest.responseType } open class PortalPaymentIntentResponse { 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 }