UNPKG

@adyen/api-library

Version:

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

23 lines (22 loc) 662 B
import { UKFpsTracingData } from "./uKFpsTracingData"; import { USAchTracingData } from "./uSAchTracingData"; /** * Contains information for tracing the transfer after Adyen forwards it to the network. */ /** * @type TransferDataTracing * Type * @export */ export type TransferDataTracing = UKFpsTracingData | USAchTracingData; /** * @type TransferDataTracingClass * Contains information for tracing the transfer after Adyen forwards it to the network. * @export */ export declare class TransferDataTracingClass { static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; }