UNPKG

@adyen/api-library

Version:

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

35 lines (34 loc) 1.16 kB
import { Amount } from "./amount"; export declare class InterchangeData { "interchangeAmount"?: Amount | null; /** * A 3-character alphanumeric code assigned by Visa that identifies the specific interchange reimbursement program a transaction qualified for. The code is assigned based on the card type, entry mode, and security data provided. */ "interchangeRateIndicator"?: string; /** * The type of events data. Possible values: - **interchangeData**: information about the interchange fee applied to a transaction. */ "type": InterchangeData.TypeEnum; 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(); } export declare namespace InterchangeData { enum TypeEnum { InterchangeData = "interchangeData" } }