/** * 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 ReplyCount */ export interface ReplyCount { /** * The total number of replies. * @type {number} * @memberof ReplyCount */ count?: number; } /** * Check if a given object implements the ReplyCount interface. */ export declare function instanceOfReplyCount(value: object): value is ReplyCount; export declare function ReplyCountFromJSON(json: any): ReplyCount; export declare function ReplyCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReplyCount; export declare function ReplyCountToJSON(json: any): ReplyCount; export declare function ReplyCountToJSONTyped(value?: ReplyCount | null, ignoreDiscriminator?: boolean): any;