/* tslint:disable */ /* eslint-disable */ /** * configuration/labels.yaml * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { ObjectLabelValueConfiguration } from './object-label-value-configuration'; /** * Represents the object label */ export interface ObjectLabelConfiguration { /** * The object labels values */ labels?: Array; /** * The language used for the object label */ language: ObjectLabelConfigurationLanguageEnum; } export const ObjectLabelConfigurationLanguageEnum = { English: 'ENGLISH', Portugese: 'PORTUGESE', Spanish: 'SPANISH', Russian: 'RUSSIAN', French: 'FRENCH', Georgian: 'GEORGIAN', Chinese: 'CHINESE', Indonesian: 'INDONESIAN', Romanian: 'ROMANIAN', Burmese: 'BURMESE', German: 'GERMAN', PortugueseBrazil: 'PORTUGUESE_BRAZIL', Vietnamese: 'VIETNAMESE', Italian: 'ITALIAN', Thai: 'THAI', Norwegian: 'NORWEGIAN', Phrase: 'PHRASE', } as const; export type ObjectLabelConfigurationLanguageEnum = (typeof ObjectLabelConfigurationLanguageEnum)[keyof typeof ObjectLabelConfigurationLanguageEnum];