Types > GatewayCreate
Commerce APITypesGatewayCreate
GatewayCreate

Description

Topic: Gateways

Fields

currencies: [GatewayCurrencyCreate!]

A list of currencies enabled for this gateway


enabled: Boolean

Whether this gateway is enabled or not

Example: true


manual: GatewayManualCreate


paypal: GatewayPaypalCreate


stripe: GatewayStripeCreate


test: GatewayTestCreate


test_mode: Boolean

Whether gateway test mode is enabled

Example: false


type: GatewayType!

Gateway type


visibility: GatewayVisibility

Gateway visibility mode


Used By

Mutations

gatewaysCreate

Preview (typescript)

interface GatewayCreate {
currencies?: GatewayCurrencyCreate[]
enabled?: boolean
manual?: GatewayManualCreate | null
paypal?: GatewayPaypalCreate | null
stripe?: GatewayStripeCreate | null
test?: GatewayTestCreate | null
test_mode?: boolean
type: GatewayType
visibility?: GatewayVisibility | null
}