UNPKG

wallee

Version:
35 lines (34 loc) 1.49 kB
import type { CustomerComment } from './CustomerComment'; /** * * @export * @interface CustomerCommentListResponse */ export interface CustomerCommentListResponse { /** * An array containing the actual response objects. * @type {Array<CustomerComment>} * @memberof CustomerCommentListResponse */ readonly data?: Array<CustomerComment>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof CustomerCommentListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof CustomerCommentListResponse */ readonly limit?: number; } /** * Check if a given object implements the CustomerCommentListResponse interface. */ export declare function instanceOfCustomerCommentListResponse(value: object): value is CustomerCommentListResponse; export declare function CustomerCommentListResponseFromJSON(json: any): CustomerCommentListResponse; export declare function CustomerCommentListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerCommentListResponse; export declare function CustomerCommentListResponseToJSON(json: any): CustomerCommentListResponse; export declare function CustomerCommentListResponseToJSONTyped(value?: Omit<CustomerCommentListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;