UNPKG

750 BTypeScriptView Raw
1/* eslint-disable */
2/**
3 * This file was automatically generated by json-schema-to-typescript.
4 * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5 * and run json-schema-to-typescript to regenerate this file.
6 */
7
8/**
9 * Request model for the search suggestions endpoint.
10 */
11export interface SearchSuggestionsRequestV2 {
12 tenant: string;
13 market: string;
14 /**
15 * The locale to use for the search. If not set, the default locale will be used.
16 */
17 locale?: string;
18 /**
19 * The search query.
20 */
21 query?: string;
22 user_id?: string;
23 session_id?: string;
24 dsid?: string;
25 /**
26 * Metadata that can be used to modify the behaviour of the search suggestions.
27 */
28 metadata?: {
29 [k: string]: unknown;
30 };
31}