/** * 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. */ /** * * @export * @interface ThreadCount */ export interface ThreadCount { /** * The total number of threads. * @type {number} * @memberof ThreadCount */ count?: number; } /** * Check if a given object implements the ThreadCount interface. */ export declare function instanceOfThreadCount(value: object): value is ThreadCount; export declare function ThreadCountFromJSON(json: any): ThreadCount; export declare function ThreadCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThreadCount; export declare function ThreadCountToJSON(json: any): ThreadCount; export declare function ThreadCountToJSONTyped(value?: ThreadCount | null, ignoreDiscriminator?: boolean): any;