UNPKG

@adyen/api-library

Version:

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

34 lines (33 loc) 1.04 kB
import { Response } from "./response"; import { TransactionTotals } from "./transactionTotals"; /** * Content of the Reconciliation Response message. It conveys Information related to the Reconciliation transaction processed by the POI System. */ export declare class GetTotalsResponse { "Response": Response; /** * Identification of the reconciliation period between Sale and POI. */ "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(); }