UNPKG

@adyen/api-library

Version:

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

37 lines (36 loc) 1.1 kB
import { CardBrandDetails } from "./cardBrandDetails"; export declare class CardDetailsResponse { /** * The list of brands identified for the card. */ "brands"?: Array<CardBrandDetails>; /** * The funding source of the card, for example **DEBIT**, **CREDIT**, or **PREPAID**. */ "fundingSource"?: string; /** * Indicates if this is a commercial card or a consumer card. If **true**, it is a commercial card. If **false**, it is a consumer card. */ "isCardCommercial"?: boolean; /** * The two-letter country code of the country where the card was issued. */ "issuingCountryCode"?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }