@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
27 lines (26 loc) • 971 B
TypeScript
import { CardAcquisitionTransaction } from "./cardAcquisitionTransaction";
import { SaleData } from "./saleData";
/**
* It conveys Information related to the payment and loyalty cards to read and analyse. This message pair is usually followed by a message pair (e.g. payment or loyalty) which refers to this Card Acquisition message pair. Content of the Card Acquisition Request message.
*/
export declare class CardAcquisitionRequest {
"SaleData": SaleData;
"CardAcquisitionTransaction": CardAcquisitionTransaction;
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();
}