UNPKG

553 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 GetDisplaysRequestV3 {
9 /**
10 * Market identifier
11 */
12 market: string;
13 /**
14 * @minItems 1
15 * @maxItems 50
16 */
17 product_ids: [string, ...string[]];
18 /**
19 * Identifier associated with the API integration
20 */
21 merchant: string;
22 /**
23 * Locale identifier
24 */
25 locale: string;
26}