UNPKG

@adyen/api-library

Version:

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

34 lines (33 loc) 1.19 kB
import { TransactionIDType } from "./transactionIDType"; export declare class LoyaltyAcquirerData { /** * Identification of the loyalty Acquirer. */ "LoyaltyAcquirerID"?: string; /** * Code assigned to a transaction approval by the Acquirer. Could be an identifier of the approved transaction for the Acquirer. This data element is conditional for the Loyalty Acquirers. Used in the PaymentRequest request for a referral. */ "ApprovalCode"?: string; "LoyaltyTransactionID"?: TransactionIDType | null; /** * Identifier of a reconciliation period with a payment or loyalty host. Allows the assignment of a transaction to the Acquirer reconciliation (or batch). */ "HostReconciliationID"?: 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(); }