/** * * @export * @interface CustomerCommentActive */ export interface CustomerCommentActive { /** * The comment's actual content. * @type {string} * @memberof CustomerCommentActive */ content?: string; /** * The version number indicates the version of the entity. The version is incremented whenever the entity is changed. * @type {number} * @memberof CustomerCommentActive */ version: number; } /** * Check if a given object implements the CustomerCommentActive interface. */ export declare function instanceOfCustomerCommentActive(value: object): value is CustomerCommentActive; export declare function CustomerCommentActiveFromJSON(json: any): CustomerCommentActive; export declare function CustomerCommentActiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerCommentActive; export declare function CustomerCommentActiveToJSON(json: any): CustomerCommentActive; export declare function CustomerCommentActiveToJSONTyped(value?: CustomerCommentActive | null, ignoreDiscriminator?: boolean): any;