@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
21 lines (20 loc) • 547 B
TypeScript
import { Links } from './links';
import { Transaction } from './transaction';
export declare class TransactionSearchResponse {
'_links'?: Links | null;
/**
* Contains the transactions that match the query parameters.
*/
'data'?: Array<Transaction>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}