airwallex-payment-react-native - v0.3.1
    Preparing search index...

    Interface OneOffSession

    A single (non-recurring) payment against a payment intent.

    interface OneOffSession {
        amount: number;
        applePayOptions?: ApplePayOptions;
        autoCapture?: boolean;
        clientSecret: string;
        countryCode: string;
        currency: string;
        customerId?: string;
        googlePayOptions?: GooglePayOptions;
        hidePaymentConsents?: boolean;
        isBillingRequired?: boolean;
        isEmailRequired?: boolean;
        paymentIntentId: string;
        paymentMethods?: string[];
        returnUrl?: string;
        shipping?: Shipping;
        type: "OneOff";
    }

    Hierarchy

    • BaseSession
      • OneOffSession
    Index

    Properties

    amount: number
    applePayOptions?: ApplePayOptions
    autoCapture?: boolean
    clientSecret: string
    countryCode: string
    currency: string
    customerId?: string
    googlePayOptions?: GooglePayOptions
    hidePaymentConsents?: boolean
    isBillingRequired?: boolean
    isEmailRequired?: boolean
    paymentIntentId: string
    paymentMethods?: string[]
    returnUrl?: string
    shipping?: Shipping
    type: "OneOff"