/** * 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 CommentWithAuthorAnonymousIdentity */ export interface CommentWithAuthorAnonymousIdentity { /** * * @type {string} * @memberof CommentWithAuthorAnonymousIdentity */ 'displayName'?: string | null; /** * * @type {string} * @memberof CommentWithAuthorAnonymousIdentity */ 'sessionHash'?: string | null; } /** * Check if a given object implements the CommentWithAuthorAnonymousIdentity interface. */ export declare function instanceOfCommentWithAuthorAnonymousIdentity(value: object): value is CommentWithAuthorAnonymousIdentity; export declare function CommentWithAuthorAnonymousIdentityFromJSON(json: any): CommentWithAuthorAnonymousIdentity; export declare function CommentWithAuthorAnonymousIdentityFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentWithAuthorAnonymousIdentity; export declare function CommentWithAuthorAnonymousIdentityToJSON(json: any): CommentWithAuthorAnonymousIdentity; export declare function CommentWithAuthorAnonymousIdentityToJSONTyped(value?: CommentWithAuthorAnonymousIdentity | null, ignoreDiscriminator?: boolean): any;