/* tslint:disable */ /* eslint-disable */ /** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; /** * * @export * @interface Search200ResponseHitsInnerAllOfEmbeddings */ export interface Search200ResponseHitsInnerAllOfEmbeddings { /** * * @type {Array} * @memberof Search200ResponseHitsInnerAllOfEmbeddings */ 'small3_512'?: Array; /** * * @type {Array} * @memberof Search200ResponseHitsInnerAllOfEmbeddings */ 'clip2'?: Array; } /** * Check if a given object implements the Search200ResponseHitsInnerAllOfEmbeddings interface. */ export function instanceOfSearch200ResponseHitsInnerAllOfEmbeddings(value: object): value is Search200ResponseHitsInnerAllOfEmbeddings { return true; } export function Search200ResponseHitsInnerAllOfEmbeddingsFromJSON(json: any): Search200ResponseHitsInnerAllOfEmbeddings { return Search200ResponseHitsInnerAllOfEmbeddingsFromJSONTyped(json, false); } export function Search200ResponseHitsInnerAllOfEmbeddingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Search200ResponseHitsInnerAllOfEmbeddings { if (json == null) { return json; } const result = { } as Search200ResponseHitsInnerAllOfEmbeddings; if (json['small3_512'] !== undefined) { result['small3_512'] = json['small3_512']; } if (json['clip2'] !== undefined) { result['clip2'] = json['clip2']; } return result; } export function Search200ResponseHitsInnerAllOfEmbeddingsToJSON(json: any): Search200ResponseHitsInnerAllOfEmbeddings { return Search200ResponseHitsInnerAllOfEmbeddingsToJSONTyped(json, false); } export function Search200ResponseHitsInnerAllOfEmbeddingsToJSONTyped(value?: Search200ResponseHitsInnerAllOfEmbeddings | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'small3_512': value['small3_512'], 'clip2': value['clip2'], }; }