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