UNPKG

@adyen/api-library

Version:

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

38 lines (37 loc) 1.26 kB
import { ReconciliationType } from "./reconciliationType"; import { Response } from "./response"; import { TransactionTotals } from "./transactionTotals"; /** * It conveys Information related to the Reconciliation transaction processed by the POI System. Content of the Reconciliation Response message. */ export declare class ReconciliationResponse { "Response": Response; "ReconciliationType": ReconciliationType; /** * Identification of the reconciliation period between Sale and POI. Absent if ReconciliationType is `AcquirerReconciliation`. */ "POIReconciliationID"?: number; /** * Result of the Sale to POI Reconciliation processing. If `Response.Result` is Success. */ "TransactionTotals"?: Array<TransactionTotals>; 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 ReconciliationResponse { }