/** * @type SuggestedTerm: Document representing a suggested term. * * @property completed: Returns whether this term value is a completion match. * * @property corrected: Returns whether this term value is a correction match. * * @property exactMatch: Returns whether this term value is a exact match. * * @property value: Returns the term value. * - **Min Length:** 1 * - **Max Length:** 50 * */ export type SuggestedTerm = { completed: boolean; corrected: boolean; exactMatch: boolean; value: string; } & { [key: string]: any; };