/** * 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 Count */ export interface Count { /** * * @type {number} * @memberof Count */ count?: number; } /** * Check if a given object implements the Count interface. */ export declare function instanceOfCount(value: object): value is Count; export declare function CountFromJSON(json: any): Count; export declare function CountFromJSONTyped(json: any, ignoreDiscriminator: boolean): Count; export declare function CountToJSON(json: any): Count; export declare function CountToJSONTyped(value?: Count | null, ignoreDiscriminator?: boolean): any;