File tree Expand file tree Collapse file tree 1 file changed +52
-1
lines changed
Scripts/Services/PersonalityInsights/v3 Expand file tree Collapse file tree 1 file changed +52
-1
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ public class ContentType
239
239
/// <summary>
240
240
/// The content language. Either English, Arabic, Spanish or Japanese.
241
241
/// </summary>
242
- public class Language
242
+ public class ContentLanguage
243
243
{
244
244
/// <summary>
245
245
/// English.
@@ -259,6 +259,57 @@ public class Language
259
259
public const string JAPANESE = "ja" ;
260
260
}
261
261
262
+ /// <summary>
263
+ /// The content language.
264
+ /// </summary>
265
+ public class AcceptLanguage
266
+ {
267
+ /// <summary>
268
+ /// English.
269
+ /// </summary>
270
+ public const string ENGLISH = "en" ;
271
+ /// <summary>
272
+ /// Arabic.
273
+ /// </summary>
274
+ public const string ARABIC = "ar" ;
275
+ /// <summary>
276
+ /// Spanish.
277
+ /// </summary>
278
+ public const string SPANISH = "es" ;
279
+ /// <summary>
280
+ /// Japanese.
281
+ /// </summary>
282
+ public const string JAPANESE = "ja" ;
283
+ /// <summary>
284
+ /// German.
285
+ /// </summary>
286
+ public const string GERMAN = "de" ;
287
+ /// <summary>
288
+ /// French.
289
+ /// </summary>
290
+ public const string FRENCH = "fr" ;
291
+ /// <summary>
292
+ /// Italian.
293
+ /// </summary>
294
+ public const string ITALIAN = "it" ;
295
+ /// <summary>
296
+ /// Korean.
297
+ /// </summary>
298
+ public const string KOREAN = "ko" ;
299
+ /// <summary>
300
+ /// Brazilian Portuguese.
301
+ /// </summary>
302
+ public const string BRAZILIAN_PORTUGUESE = "pt-br" ;
303
+ /// <summary>
304
+ /// Simplified Chinese.
305
+ /// </summary>
306
+ public const string SIMPLIFIED_CHINESE = "zh-cn" ;
307
+ /// <summary>
308
+ /// Traditional Chinese.
309
+ /// </summary>
310
+ public const string TRADITIONAL_CHINESE = "zh-tw" ;
311
+ }
312
+
262
313
/// <summary>
263
314
/// The Personality Insights version.
264
315
/// </summary>
You can’t perform that action at this time.
0 commit comments