import type { Transaction } from './Transaction'; /** * * @export * @interface TransactionListResponse */ export interface TransactionListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof TransactionListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof TransactionListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof TransactionListResponse */ readonly limit?: number; } /** * Check if a given object implements the TransactionListResponse interface. */ export declare function instanceOfTransactionListResponse(value: object): value is TransactionListResponse; export declare function TransactionListResponseFromJSON(json: any): TransactionListResponse; export declare function TransactionListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionListResponse; export declare function TransactionListResponseToJSON(json: any): TransactionListResponse; export declare function TransactionListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;