UNPKG

wallee

Version:
35 lines (34 loc) 1.41 kB
import type { Transaction } from './Transaction'; /** * * @export * @interface TransactionListResponse */ export interface TransactionListResponse { /** * An array containing the actual response objects. * @type {Array<Transaction>} * @memberof TransactionListResponse */ readonly data?: Array<Transaction>; /** * 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<TransactionListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;