/** * 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 suggested replacement term. * @export * @interface Suggestion */ export interface Suggestion { /** * The suggested term. * @type {string} * @memberof Suggestion */ term?: string; /** * The relative score of suggested term. * @type {number} * @memberof Suggestion */ score?: number; /** * The count of documents that contain the specified term. * @type {number} * @memberof Suggestion */ frequency?: number; } /** * Check if a given object implements the Suggestion interface. */ export declare function instanceOfSuggestion(value: object): value is Suggestion; export declare function SuggestionFromJSON(json: any): Suggestion; export declare function SuggestionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Suggestion; export declare function SuggestionToJSON(json: any): Suggestion; export declare function SuggestionToJSONTyped(value?: Suggestion | null, ignoreDiscriminator?: boolean): any;