@@ -573,6 +573,89 @@ public class XPathPatterns
573
573
[ fsObject ]
574
574
public class EnrichmentOptions
575
575
{
576
+ /// <summary>
577
+ /// ISO 639-1 code indicating the language to use for the analysis. This code overrides the automatic language
578
+ /// detection performed by the service. Valid codes are `ar` (Arabic), `en` (English), `fr` (French), `de`
579
+ /// (German), `it` (Italian), `pt` (Portuguese), `ru` (Russian), `es` (Spanish), and `sv` (Swedish). **Note:**
580
+ /// Not all features support all languages, automatic detection is recommended.
581
+ /// </summary>
582
+ /// <value>
583
+ /// ISO 639-1 code indicating the language to use for the analysis. This code overrides the automatic language
584
+ /// detection performed by the service. Valid codes are `ar` (Arabic), `en` (English), `fr` (French), `de`
585
+ /// (German), `it` (Italian), `pt` (Portuguese), `ru` (Russian), `es` (Spanish), and `sv` (Swedish). **Note:**
586
+ /// Not all features support all languages, automatic detection is recommended.
587
+ /// </value>
588
+ public enum LanguageEnum
589
+ {
590
+
591
+ /// <summary>
592
+ /// Enum AR for ar
593
+ /// </summary>
594
+ [ EnumMember ( Value = "ar" ) ]
595
+ AR ,
596
+
597
+ /// <summary>
598
+ /// Enum EN for en
599
+ /// </summary>
600
+ [ EnumMember ( Value = "en" ) ]
601
+ EN ,
602
+
603
+ /// <summary>
604
+ /// Enum FR for fr
605
+ /// </summary>
606
+ [ EnumMember ( Value = "fr" ) ]
607
+ FR ,
608
+
609
+ /// <summary>
610
+ /// Enum DE for de
611
+ /// </summary>
612
+ [ EnumMember ( Value = "de" ) ]
613
+ DE ,
614
+
615
+ /// <summary>
616
+ /// Enum IT for it
617
+ /// </summary>
618
+ [ EnumMember ( Value = "it" ) ]
619
+ IT ,
620
+
621
+ /// <summary>
622
+ /// Enum PT for pt
623
+ /// </summary>
624
+ [ EnumMember ( Value = "pt" ) ]
625
+ PT ,
626
+
627
+ /// <summary>
628
+ /// Enum RU for ru
629
+ /// </summary>
630
+ [ EnumMember ( Value = "ru" ) ]
631
+ RU ,
632
+
633
+ /// <summary>
634
+ /// Enum ES for es
635
+ /// </summary>
636
+ [ EnumMember ( Value = "es" ) ]
637
+ ES ,
638
+
639
+ /// <summary>
640
+ /// Enum SV for sv
641
+ /// </summary>
642
+ [ EnumMember ( Value = "sv" ) ]
643
+ SV
644
+ }
645
+ /// <summary>
646
+ /// ISO 639-1 code indicating the language to use for the analysis. This code overrides the automatic language
647
+ /// detection performed by the service. Valid codes are `ar` (Arabic), `en` (English), `fr` (French), `de`
648
+ /// (German), `it` (Italian), `pt` (Portuguese), `ru` (Russian), `es` (Spanish), and `sv` (Swedish). **Note:**
649
+ /// Not all features support all languages, automatic detection is recommended.
650
+ /// </summary>
651
+ /// <value>
652
+ /// ISO 639-1 code indicating the language to use for the analysis. This code overrides the automatic language
653
+ /// detection performed by the service. Valid codes are `ar` (Arabic), `en` (English), `fr` (French), `de`
654
+ /// (German), `it` (Italian), `pt` (Portuguese), `ru` (Russian), `es` (Spanish), and `sv` (Swedish). **Note:**
655
+ /// Not all features support all languages, automatic detection is recommended.
656
+ /// </value>
657
+ [ fsProperty ( "language" ) ]
658
+ public LanguageEnum ? Language { get ; set ; }
576
659
/// <summary>
577
660
/// A comma sepeated list of analyses that should be applied when using the alchemy_language enrichment.
578
661
/// See the the service documentation for details on each extract option.
0 commit comments