UNPKG

542 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 type VariantIndex = number;
9export type VariantDisplays = {
10 [k: string]: unknown;
11}[];
12
13export interface RecommendResponseV3 {
14 displays: APIDisplay[];
15 error?: string;
16}
17export interface APIDisplay {
18 variant_index: VariantIndex;
19 variant_displays: VariantDisplays;
20 [k: string]: unknown;
21}