/** * 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 SubscriberCount */ export interface SubscriberCount { /** * The total number of subscribers for a given topic. * @type {number} * @memberof SubscriberCount */ count?: number; } /** * Check if a given object implements the SubscriberCount interface. */ export declare function instanceOfSubscriberCount(value: object): value is SubscriberCount; export declare function SubscriberCountFromJSON(json: any): SubscriberCount; export declare function SubscriberCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriberCount; export declare function SubscriberCountToJSON(json: any): SubscriberCount; export declare function SubscriberCountToJSONTyped(value?: SubscriberCount | null, ignoreDiscriminator?: boolean): any;