@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
46 lines (45 loc) • 1.24 kB
TypeScript
export declare class ThreeDSAvailabilityRequest {
/**
* This field contains additional data, which may be required for a particular request. The `additionalData` object consists of entries, each of which includes the key and value.
*/
"additionalData"?: {
[]: string;
};
/**
* List of brands.
*/
"brands"?: Array<string>;
/**
* Card number or BIN.
*/
"cardNumber"?: string;
/**
* The merchant account identifier.
*/
"merchantAccount": string;
/**
* A recurring detail reference corresponding to a card.
*/
"recurringDetailReference"?: string;
/**
* The shopper\'s reference to uniquely identify this shopper (e.g. user ID or account ID).
*/
"shopperReference"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}