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