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