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

    Interface Card

    Card details. When used as input to payWithCardDetails, the merchant supplies number, expiryMonth, expiryYear, cvc, and optionally name.

    The remaining fields (bin, last4, brand, fingerprint, cvcCheck, avsCheck, etc.) are populated by Airwallex when a Card is returned as part of a saved payment method on a PaymentConsent.

    interface Card {
        avsCheck?: string;
        bin?: string;
        brand?: string;
        cardType?: string;
        country?: string;
        cvc?: string;
        cvcCheck?: string;
        expiryMonth?: string;
        expiryYear?: string;
        fingerprint?: string;
        funding?: string;
        issuerCountryCode?: string;
        last4?: string;
        name?: string;
        number?: string;
        numberType?: string;
    }
    Index

    Properties

    avsCheck?: string
    bin?: string
    brand?: string
    cardType?: string
    country?: string
    cvc?: string
    cvcCheck?: string
    expiryMonth?: string
    expiryYear?: string
    fingerprint?: string
    funding?: string
    issuerCountryCode?: string
    last4?: string
    name?: string
    number?: string
    numberType?: string