/** * 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. */ import type { Suggestion } from './Suggestion'; /** * JSON Schema for a list of suggested replacements for a search term * @export * @interface SuggestionList */ export interface SuggestionList { /** * The free text search term. The suggestion will be provided for this term. * @type {string} * @memberof SuggestionList */ key?: string; /** * The suggested values for search term. * @type {Set} * @memberof SuggestionList */ values?: Set; } /** * Check if a given object implements the SuggestionList interface. */ export declare function instanceOfSuggestionList(value: object): value is SuggestionList; export declare function SuggestionListFromJSON(json: any): SuggestionList; export declare function SuggestionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuggestionList; export declare function SuggestionListToJSON(json: any): SuggestionList; export declare function SuggestionListToJSONTyped(value?: SuggestionList | null, ignoreDiscriminator?: boolean): any;