/** * 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. */ import type { EntityThreadCount } from './EntityThreadCount'; /** * The model object represents a list of EntityThreadCounts * @export * @interface EntityThreadCounts */ export interface EntityThreadCounts { /** * * @type {Array} * @memberof EntityThreadCounts */ list?: Array; } /** * Check if a given object implements the EntityThreadCounts interface. */ export declare function instanceOfEntityThreadCounts(value: object): value is EntityThreadCounts; export declare function EntityThreadCountsFromJSON(json: any): EntityThreadCounts; export declare function EntityThreadCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityThreadCounts; export declare function EntityThreadCountsToJSON(json: any): EntityThreadCounts; export declare function EntityThreadCountsToJSONTyped(value?: EntityThreadCounts | null, ignoreDiscriminator?: boolean): any;