Types > OrderPayment
Description
Topic: Orders
Fields
Confirm pending payment intent
credit_card: OrderPaymentCreditCard
Use it to perform gateway payment
manual: OrderPaymentManual
Use it to perform manual payment
Use it to perform gateway payment (when gateway type is "stripe")
paypal: OrderPaymentPaypal
Use it to perform gateway payment (when gateway type is "paypal")
Used By
Mutations
Preview (typescript)
interface OrderPayment {confirm?: booleancredit_card?: OrderPaymentCreditCard | nullmanual?: OrderPaymentManual | nullpayment_method?: stringpaypal?: OrderPaymentPaypal | null}