/** * 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. */ /** * An Annotation containing a Long value * @export * @interface LongAnnotation */ export interface LongAnnotation { /** * The key of this Annotation * @type {string} * @memberof LongAnnotation */ key?: string; /** * Flag denoting whether this Annotation should be private. * @type {boolean} * @memberof LongAnnotation */ isPrivate?: boolean; /** * The value of this Annotation * @type {number} * @memberof LongAnnotation */ value?: number; } /** * Check if a given object implements the LongAnnotation interface. */ export declare function instanceOfLongAnnotation(value: object): value is LongAnnotation; export declare function LongAnnotationFromJSON(json: any): LongAnnotation; export declare function LongAnnotationFromJSONTyped(json: any, ignoreDiscriminator: boolean): LongAnnotation; export declare function LongAnnotationToJSON(json: any): LongAnnotation; export declare function LongAnnotationToJSONTyped(value?: LongAnnotation | null, ignoreDiscriminator?: boolean): any;