/** * 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 Double value * @export * @interface DoubleAnnotation */ export interface DoubleAnnotation { /** * The key of this Annotation * @type {string} * @memberof DoubleAnnotation */ key?: string; /** * Flag denoting whether this Annotation should be private. * @type {boolean} * @memberof DoubleAnnotation */ isPrivate?: boolean; /** * The value of this Annotation * @type {number} * @memberof DoubleAnnotation */ value?: number; } /** * Check if a given object implements the DoubleAnnotation interface. */ export declare function instanceOfDoubleAnnotation(value: object): value is DoubleAnnotation; export declare function DoubleAnnotationFromJSON(json: any): DoubleAnnotation; export declare function DoubleAnnotationFromJSONTyped(json: any, ignoreDiscriminator: boolean): DoubleAnnotation; export declare function DoubleAnnotationToJSON(json: any): DoubleAnnotation; export declare function DoubleAnnotationToJSONTyped(value?: DoubleAnnotation | null, ignoreDiscriminator?: boolean): any;