Source code for azure.cognitiveservices.language.textanalytics.models.sentiment_batch_result_item_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class SentimentBatchResultItem(Model): """SentimentBatchResultItem. :param id: Unique, non-empty document identifier. :type id: str :param score: A decimal number between 0 and 1 denoting the sentiment of the document. A score above 0.7 usually refers to a positive document while a score below 0.3 normally has a negative connotation. Mid values refer to neutral text. :type score: float :param statistics: (Optional) if showStats=true was specified in the request this field will contain information about the document payload. :type statistics: ~azure.cognitiveservices.language.textanalytics.models.DocumentStatistics """ _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'score': {'key': 'score', 'type': 'float'}, 'statistics': {'key': 'statistics', 'type': 'DocumentStatistics'}, } def __init__(self, *, id: str=None, score: float=None, statistics=None, **kwargs) -> None: super(SentimentBatchResultItem, self).__init__(**kwargs) self.id = id self.score = score self.statistics = statistics