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