You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Scripts/Services/NaturalLanguageUnderstanding/v1/DataModels.cs
+187Lines changed: 187 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -484,6 +484,193 @@ public class DeletedResponse
484
484
publicstringdeleted{get;set;}
485
485
}
486
486
487
+
[fsObject]
488
+
publicclassParameters
489
+
{
490
+
/// <summary>
491
+
/// The plain text to analyze
492
+
/// </summary>
493
+
publicstringtext{get;set;}
494
+
/// <summary>
495
+
/// The HTML file to analyze
496
+
/// </summary>
497
+
publicstringhtml{get;set;}
498
+
/// <summary>
499
+
/// The web page to analyze
500
+
/// </summary>
501
+
publicstringurl{get;set;}
502
+
/// <summary>
503
+
/// Specific features to analyze the document for
504
+
/// </summary>
505
+
publicFeaturesfeatures{get;set;}
506
+
/// <summary>
507
+
/// Remove website elements, such as links, ads, etc
508
+
/// </summary>
509
+
publicboolclean{get;set;}
510
+
/// <summary>
511
+
/// XPath query for targeting nodes in HTML
512
+
/// </summary>
513
+
publicstringxpath{get;set;}
514
+
/// <summary>
515
+
/// Whether to use raw HTML content if text cleaning fails
516
+
/// </summary>
517
+
publicboolfallback_to_raw{get;set;}
518
+
/// <summary>
519
+
/// Whether or not to return the analyzed text
520
+
/// </summary>
521
+
publicboolreturn_analyzed_text{get;set;}
522
+
/// <summary>
523
+
/// ISO 639-1 code indicating the language to use in the analysis
524
+
/// </summary>
525
+
publicstringlanguage{get;set;}
526
+
}
527
+
528
+
[fsObject]
529
+
publicclassFeatures
530
+
{
531
+
/// <summary>
532
+
/// Whether or not to return the concepts that are mentioned in the analyzed text
533
+
/// </summary>
534
+
publicConceptsOptionsconcepts{get;set;}
535
+
/// <summary>
536
+
/// Whether or not to extract the emotions implied in the analyzed text
537
+
/// </summary>
538
+
publicEmotionOptionsemotion{get;set;}
539
+
/// <summary>
540
+
/// Whether or not to extract detected entity objects from the analyzed text
541
+
/// </summary>
542
+
publicEntitiesOptionsentities{get;set;}
543
+
/// <summary>
544
+
/// Whether or not to return the keywords in the analyzed text
545
+
/// </summary>
546
+
publicKeywordsOptionskeywords{get;set;}
547
+
/// <summary>
548
+
/// Whether or not the author, publication date, and title of the analyzed text should be returned.This parameter is only available for URL and HTML input
549
+
/// </summary>
550
+
publicMetadataOptionsmetadata{get;set;}
551
+
/// <summary>
552
+
/// Whether or not to return the relationships between detected entities in the analyzed text
553
+
/// </summary>
554
+
publicRelationsOptionsrelations{get;set;}
555
+
/// <summary>
556
+
/// Whether or not to return the subject-action-object relations from the analyzed text
0 commit comments