UNPKG

544 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
8export interface ContentSearchRequestV2 {
9 tenant: string;
10 market: string;
11 /**
12 * The locale to use for the search. If not set, the default locale will be used.
13 */
14 locale?: string;
15 /**
16 * The search query.
17 */
18 query?: string;
19 user_id?: string;
20 session_id?: string;
21 dsid?: string;
22}