Types > OrderPayment
Commerce APITypesOrderPayment
OrderPayment

Description

Topic: Orders

Fields

confirm: Boolean

Confirm pending payment intent


credit_card: OrderPaymentCreditCard

Use it to perform gateway payment


manual: OrderPaymentManual

Use it to perform manual payment


payment_method: String

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

ordersPay

Preview (typescript)

interface OrderPayment {
confirm?: boolean
credit_card?: OrderPaymentCreditCard | null
manual?: OrderPaymentManual | null
payment_method?: string
paypal?: OrderPaymentPaypal | null
}