/** * * @export * @interface AbstractCustomerCommentActive */ export interface AbstractCustomerCommentActive { /** * The comment's actual content. * @type {string} * @memberof AbstractCustomerCommentActive */ content?: string; } /** * Check if a given object implements the AbstractCustomerCommentActive interface. */ export declare function instanceOfAbstractCustomerCommentActive(value: object): value is AbstractCustomerCommentActive; export declare function AbstractCustomerCommentActiveFromJSON(json: any): AbstractCustomerCommentActive; export declare function AbstractCustomerCommentActiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): AbstractCustomerCommentActive; export declare function AbstractCustomerCommentActiveToJSON(json: any): AbstractCustomerCommentActive; export declare function AbstractCustomerCommentActiveToJSONTyped(value?: AbstractCustomerCommentActive | null, ignoreDiscriminator?: boolean): any;