/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CommentCreate */ export interface CommentCreate { /** * * @type {string} * @memberof CommentCreate */ 'content'?: string; /** * * @type {string} * @memberof CommentCreate */ 'anonymousDisplayName'?: string; } /** * Check if a given object implements the CommentCreate interface. */ export declare function instanceOfCommentCreate(value: object): value is CommentCreate; export declare function CommentCreateFromJSON(json: any): CommentCreate; export declare function CommentCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentCreate; export declare function CommentCreateToJSON(json: any): CommentCreate; export declare function CommentCreateToJSONTyped(value?: CommentCreate | null, ignoreDiscriminator?: boolean): any;