/** * 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 String value * @export * @interface StringAnnotation */ export interface StringAnnotation { /** * The key of this Annotation * @type {string} * @memberof StringAnnotation */ key?: string; /** * Flag denoting whether this Annotation should be private. * @type {boolean} * @memberof StringAnnotation */ isPrivate?: boolean; /** * The value of this Annotation * @type {string} * @memberof StringAnnotation */ value?: string; } /** * Check if a given object implements the StringAnnotation interface. */ export declare function instanceOfStringAnnotation(value: object): value is StringAnnotation; export declare function StringAnnotationFromJSON(json: any): StringAnnotation; export declare function StringAnnotationFromJSONTyped(json: any, ignoreDiscriminator: boolean): StringAnnotation; export declare function StringAnnotationToJSON(json: any): StringAnnotation; export declare function StringAnnotationToJSONTyped(value?: StringAnnotation | null, ignoreDiscriminator?: boolean): any;