UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

65 lines (64 loc) 2.82 kB
export declare class ResponseAdditionalDataCard { /** * The first six digits of the card number. This is the [Bank Identification Number (BIN)](https://docs.adyen.com/get-started-with-adyen/payment-glossary#bank-identification-number-bin) for card numbers with a six-digit BIN. Example: 521234 */ 'cardBin'?: string; /** * The cardholder name passed in the payment request. */ 'cardHolderName'?: string; /** * The bank or the financial institution granting lines of credit through card association branded payment cards. This information can be included when available. */ 'cardIssuingBank'?: string; /** * The country where the card was issued. Example: US */ 'cardIssuingCountry'?: string; /** * The currency in which the card is issued, if this information is available. Provided as the currency code or currency number from the ISO-4217 standard. Example: USD */ 'cardIssuingCurrency'?: string; /** * The card payment method used for the transaction. Example: amex */ 'cardPaymentMethod'?: string; /** * The Card Product ID represents the type of card following card scheme product definitions and can be returned for Adyen Acquiring service level payments. Possible values Visa: * **A** - Visa Traditional * **B** - Visa Traditional Rewards * **C** - Visa Signature * **D** - Visa Signature Preferred * **F** - Visa Classic Possible values Mastercard: * **MCC** - Mastercard Card * **MCE** - Mastercard Electronic Card * **MCF** - Mastercard Corporate Fleet Card * **MCG** - Gold Mastercard Card * **MCH** - Mastercard Premium Charge * **MCI** - Mastercard Select Debit */ 'cardProductId'?: ResponseAdditionalDataCard.CardProductIdEnum; /** * The last four digits of a card number. > Returned only in case of a card payment. */ 'cardSummary'?: string; /** * The first eight digits of the card number. Only returned if the card number is 16 digits or more. This is the [Bank Identification Number (BIN)](https://docs.adyen.com/get-started-with-adyen/payment-glossary#bank-identification-number-bin) for card numbers with an eight-digit BIN. Example: 52123423 */ 'issuerBin'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace ResponseAdditionalDataCard { enum CardProductIdEnum { A = "A", B = "B", C = "C", D = "D", F = "F", Mcc = "MCC", Mce = "MCE", Mcf = "MCF", Mcg = "MCG", Mch = "MCH", Mci = "MCI" } }