Payment option configuration for a charging station.
Describes a specific payment method and associated payment brands/networks accepted at a charging location.
The brands array may include specific payment network names or provider brands that are accepted when using the specified payment method.
brands
// Credit card payment with specific brandsconst paymentOption: ChargingPaymentOption = { method: 'Direct', brands: ['Visa', 'Mastercard', 'American Express']};// Subscription-based paymentconst subscriptionOption: ChargingPaymentOption = { method: 'Subscription', brands: ['ChargePoint', 'EVgo']}; Copy
// Credit card payment with specific brandsconst paymentOption: ChargingPaymentOption = { method: 'Direct', brands: ['Visa', 'Mastercard', 'American Express']};// Subscription-based paymentconst subscriptionOption: ChargingPaymentOption = { method: 'Subscription', brands: ['ChargePoint', 'EVgo']};
Optional
Optional list of specific payment brands or networks accepted.
Examples: credit card brands (Visa, Mastercard), charging networks (ChargePoint, EVgo), or payment apps (Apple Pay, Google Pay).
The payment method type accepted at this charging station.
Payment option configuration for a charging station.
Describes a specific payment method and associated payment brands/networks accepted at a charging location.
Remarks
The
brandsarray may include specific payment network names or provider brands that are accepted when using the specified payment method.Example