/** * * @export * @interface CustomerCommentCreate */ export interface CustomerCommentCreate { /** * The comment's actual content. * @type {string} * @memberof CustomerCommentCreate */ content?: string; /** * The customer that the object belongs to. * @type {number} * @memberof CustomerCommentCreate */ customer: number; } /** * Check if a given object implements the CustomerCommentCreate interface. */ export declare function instanceOfCustomerCommentCreate(value: object): value is CustomerCommentCreate; export declare function CustomerCommentCreateFromJSON(json: any): CustomerCommentCreate; export declare function CustomerCommentCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerCommentCreate; export declare function CustomerCommentCreateToJSON(json: any): CustomerCommentCreate; export declare function CustomerCommentCreateToJSONTyped(value?: CustomerCommentCreate | null, ignoreDiscriminator?: boolean): any;