/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The model object represents the number of threads that mentioned a particular entity. * @export * @interface EntityThreadCount */ export interface EntityThreadCount { /** * * @type {string} * @memberof EntityThreadCount */ entityId?: string; /** * The number of threads that the current user can view. * @type {number} * @memberof EntityThreadCount */ count?: number; } /** * Check if a given object implements the EntityThreadCount interface. */ export declare function instanceOfEntityThreadCount(value: object): value is EntityThreadCount; export declare function EntityThreadCountFromJSON(json: any): EntityThreadCount; export declare function EntityThreadCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityThreadCount; export declare function EntityThreadCountToJSON(json: any): EntityThreadCount; export declare function EntityThreadCountToJSONTyped(value?: EntityThreadCount | null, ignoreDiscriminator?: boolean): any;