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