TomTom Maps for JavaScript
    Preparing search index...

    Type Alias ChargingPaymentOption

    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.

    // Credit card payment with specific brands
    const paymentOption: ChargingPaymentOption = {
    method: 'Direct',
    brands: ['Visa', 'Mastercard', 'American Express']
    };

    // Subscription-based payment
    const subscriptionOption: ChargingPaymentOption = {
    method: 'Subscription',
    brands: ['ChargePoint', 'EVgo']
    };
    type ChargingPaymentOption = {
        brands?: string[];
        method: PaymentMethod;
    }
    Index

    Properties

    Properties

    brands?: string[]

    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.