/** * 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-to-string list pair. * @export * @interface KeyList */ export interface KeyList { /** * The facet name * @type {string} * @memberof KeyList */ key?: string; /** * The value list * @type {Array} * @memberof KeyList */ values?: Array; } /** * Check if a given object implements the KeyList interface. */ export declare function instanceOfKeyList(value: object): value is KeyList; export declare function KeyListFromJSON(json: any): KeyList; export declare function KeyListFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeyList; export declare function KeyListToJSON(json: any): KeyList; export declare function KeyListToJSONTyped(value?: KeyList | null, ignoreDiscriminator?: boolean): any;