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