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