@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
27 lines (26 loc) • 715 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 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();
}