/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ import type { LinkItem } from './LinkItem'; import type { TransactionResponse } from './TransactionResponse'; /** * Returns an array of Transaction Objects. Returns empty array when there is no result. * @export * @interface TransactionsResponse */ export interface TransactionsResponse { /** * Indicates whether there are more items to be queried with `after_id` of the last item from the current result. Use the `links` to follow to the next result. * @type {boolean} * @memberof TransactionsResponse */ hasMore: boolean; /** * The links to the next page based on LinkItem if there is next result. * @type {Array} * @memberof TransactionsResponse */ links?: Array; /** * * @type {Array} * @memberof TransactionsResponse */ data: Array; } /** * Check if a given object implements the TransactionsResponse interface. */ export declare function instanceOfTransactionsResponse(value: object): boolean; export declare function TransactionsResponseFromJSON(json: any): TransactionsResponse; export declare function TransactionsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionsResponse; export declare function TransactionsResponseToJSON(value?: TransactionsResponse | null): any;