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