import type { Customer } from './Customer';
/**
 *
 * @export
 * @interface CustomerComment
 */
export interface CustomerComment {
    /**
     * The ID of the space this object belongs to.
     * @type {number}
     * @memberof CustomerComment
     */
    readonly linkedSpaceId?: number;
    /**
     * Whether the comment is pinned to the top.
     * @type {boolean}
     * @memberof CustomerComment
     */
    readonly pinned?: boolean;
    /**
     * The ID of the user the comment was last updated by.
     * @type {number}
     * @memberof CustomerComment
     */
    readonly editedBy?: number;
    /**
     * The ID of the user the comment was created by.
     * @type {number}
     * @memberof CustomerComment
     */
    readonly createdBy?: number;
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof CustomerComment
     */
    readonly id?: number;
    /**
     * The date and time when the comment was last updated.
     * @type {Date}
     * @memberof CustomerComment
     */
    readonly editedOn?: Date;
    /**
     * The date and time when the object was created.
     * @type {Date}
     * @memberof CustomerComment
     */
    readonly createdOn?: Date;
    /**
     * The version is used for optimistic locking and incremented whenever the object is updated.
     * @type {number}
     * @memberof CustomerComment
     */
    readonly version?: number;
    /**
     * The comment's actual content.
     * @type {string}
     * @memberof CustomerComment
     */
    readonly content?: string;
    /**
     *
     * @type {Customer}
     * @memberof CustomerComment
     */
    customer?: Customer;
}
/**
 * Check if a given object implements the CustomerComment interface.
 */
export declare function instanceOfCustomerComment(value: object): value is CustomerComment;
export declare function CustomerCommentFromJSON(json: any): CustomerComment;
export declare function CustomerCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerComment;
export declare function CustomerCommentToJSON(json: any): CustomerComment;
export declare function CustomerCommentToJSONTyped(value?: Omit<CustomerComment, 'linkedSpaceId' | 'pinned' | 'editedBy' | 'createdBy' | 'id' | 'editedOn' | 'createdOn' | 'version' | 'content'> | null, ignoreDiscriminator?: boolean): any;
