/** * 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. */ /** * JSON schema for a faceted key-value pair. * @export * @interface KeyValue */ export interface KeyValue { /** * The facet name * @type {string} * @memberof KeyValue */ key?: string; /** * The facet value * @type {string} * @memberof KeyValue */ value?: string; /** * True when this key value should be negated * @type {boolean} * @memberof KeyValue */ not?: boolean; } /** * Check if a given object implements the KeyValue interface. */ export declare function instanceOfKeyValue(value: object): value is KeyValue; export declare function KeyValueFromJSON(json: any): KeyValue; export declare function KeyValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeyValue; export declare function KeyValueToJSON(json: any): KeyValue; export declare function KeyValueToJSONTyped(value?: KeyValue | null, ignoreDiscriminator?: boolean): any;