public sealed class SentimentAnalysisResult : IMessage<SentimentAnalysisResult>, IEquatable<SentimentAnalysisResult>, IDeepCloneable<SentimentAnalysisResult>, IBufferMessage, IMessage
The result of sentiment analysis. Sentiment analysis inspects user input and identifies the prevailing subjective opinion, especially to determine a user's attitude as positive, negative, or neutral.
Implements
IMessage<SentimentAnalysisResult>, IEquatable<SentimentAnalysisResult>, IDeepCloneable<SentimentAnalysisResult>, IBufferMessage, IMessageNamespace
Google.Cloud.Dialogflow.Cx.V3Assembly
Google.Cloud.Dialogflow.Cx.V3.dll
Constructors
SentimentAnalysisResult()
public SentimentAnalysisResult()
SentimentAnalysisResult(SentimentAnalysisResult)
public SentimentAnalysisResult(SentimentAnalysisResult other)
Parameter | |
---|---|
Name | Description |
other | SentimentAnalysisResult |
Properties
Magnitude
public float Magnitude { get; set; }
A non-negative number in the [0, +inf) range, which represents the absolute magnitude of sentiment, regardless of score (positive or negative).
Property Value | |
---|---|
Type | Description |
Single |
Score
public float Score { get; set; }
Sentiment score between -1.0 (negative sentiment) and 1.0 (positive sentiment).
Property Value | |
---|---|
Type | Description |
Single |