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