@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
35 lines (34 loc) • 912 B
TypeScript
import { TransactionType } from "./transactionType";
/**
* Totals of the payment transaction during the reconciliation period.
*/
export declare class PaymentTotals {
"TransactionType": TransactionType;
/**
* Number of processed transaction during the period.
*/
"TransactionCount": number;
/**
* Sum of amount of processed transaction during the period.
*/
"TransactionAmount": number;
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 PaymentTotals {
}