/** * 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 */ export declare const AnnotationsValueType: { readonly STRING: "STRING"; readonly DOUBLE: "DOUBLE"; readonly LONG: "LONG"; readonly TIMESTAMP_MS: "TIMESTAMP_MS"; readonly BOOLEAN: "BOOLEAN"; }; export type AnnotationsValueType = typeof AnnotationsValueType[keyof typeof AnnotationsValueType]; export declare function instanceOfAnnotationsValueType(value: any): boolean; export declare function AnnotationsValueTypeFromJSON(json: any): AnnotationsValueType; export declare function AnnotationsValueTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnnotationsValueType; export declare function AnnotationsValueTypeToJSON(value?: AnnotationsValueType | null): any; export declare function AnnotationsValueTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AnnotationsValueType;