@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
27 lines (26 loc) • 647 B
TypeScript
import { Transaction } from './transaction';
export declare class AccountTransactionList {
/**
* The code of the account.
*/
'accountCode'?: string;
/**
* Indicates whether there is a next page of transactions available.
*/
'hasNextPage'?: boolean;
/**
* The list of transactions.
*/
'transactions'?: Array<Transaction>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}