Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SentimentData
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SentimentData
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
The data for a sentiment annotation.
Instance Attribute Summary collapse
-
#magnitude ⇒ Float
A non-negative number from 0 to infinity which represents the abolute magnitude of sentiment regardless of score.
-
#score ⇒ Float
The sentiment score between -1.0 (negative) and 1.0 (positive).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1SentimentData
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1SentimentData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1SentimentData
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1SentimentData.
5463 5464 5465 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5463 def initialize(**args) update!(**args) end |
Instance Attribute Details
#magnitude ⇒ Float
A non-negative number from 0 to infinity which represents the abolute
magnitude of sentiment regardless of score.
Corresponds to the JSON property magnitude
5456 5457 5458 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5456 def magnitude @magnitude end |
#score ⇒ Float
The sentiment score between -1.0 (negative) and 1.0 (positive).
Corresponds to the JSON property score
5461 5462 5463 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5461 def score @score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5468 5469 5470 5471 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5468 def update!(**args) @magnitude = args[:magnitude] if args.key?(:magnitude) @score = args[:score] if args.key?(:score) end |