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