@@ -220,6 +220,8 @@ class CategorizedEntity(DictMixin):
220
220
:ivar confidence_score: Confidence score between 0 and 1 of the extracted
221
221
entity.
222
222
:vartype confidence_score: float
223
+ .. versionadded:: v3.1-preview.1
224
+ The *offset* and *length* properties.
223
225
"""
224
226
225
227
def __init__ (self , ** kwargs ):
@@ -673,6 +675,8 @@ class LinkedEntityMatch(DictMixin):
673
675
:ivar int length: The length of the linked entity match text. Returned
674
676
in unicode code points. Only returned for api versions v3.1-preview.1 and up.
675
677
:vartype text: str
678
+ .. versionadded:: v3.1-preview.1
679
+ The *offset* and *length* properties.
676
680
"""
677
681
678
682
def __init__ (self , ** kwargs ):
@@ -787,9 +791,12 @@ class SentenceSentiment(DictMixin):
787
791
:ivar mined_opinions: The list of opinions mined from this sentence.
788
792
For example in "The food is good, but the service is bad", we would
789
793
mind these two opinions "food is good", "service is bad". Only returned
790
- if `show_opinion_mining` is set to True in the call to `analyze_sentiment`.
794
+ if `show_opinion_mining` is set to True in the call to `analyze_sentiment` and
795
+ api version is v3.1-preview.1 and up.
791
796
:vartype mined_opinions:
792
797
list[~azure.ai.textanalytics.MinedOpinion]
798
+ .. versionadded:: v3.1-preview.1
799
+ The *offset*, *length*, and *mined_opinions* properties.
793
800
"""
794
801
795
802
def __init__ (self , ** kwargs ):
0 commit comments