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