Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SentimentData

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1SentimentData

Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1SentimentData.



5439
5440
5441
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5439

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#magnitudeFloat

A non-negative number from 0 to infinity which represents the abolute magnitude of sentiment regardless of score. Corresponds to the JSON property magnitude

Returns:

  • (Float)


5432
5433
5434
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5432

def magnitude
  @magnitude
end

#scoreFloat

The sentiment score between -1.0 (negative) and 1.0 (positive). Corresponds to the JSON property score

Returns:

  • (Float)


5437
5438
5439
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5437

def score
  @score
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5444
5445
5446
5447
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5444

def update!(**args)
  @magnitude = args[:magnitude] if args.key?(:magnitude)
  @score = args[:score] if args.key?(:score)
end