Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1EntityMentionData
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1EntityMentionData
- 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 an entity mention annotation. This represents a mention of an
Entity in the conversation.
Instance Attribute Summary collapse
-
#entity_unique_id ⇒ String
The key of this entity in conversation entities.
-
#sentiment ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SentimentData
The data for a sentiment annotation.
-
#type ⇒ String
The type of the entity mention.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1EntityMentionData
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1EntityMentionData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1EntityMentionData
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1EntityMentionData.
7631 7632 7633 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7631 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_unique_id ⇒ String
The key of this entity in conversation entities. Can be used to retrieve the
exact Entity this mention is attached to.
Corresponds to the JSON property entityUniqueId
7619 7620 7621 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7619 def entity_unique_id @entity_unique_id end |
#sentiment ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SentimentData
The data for a sentiment annotation.
Corresponds to the JSON property sentiment
7624 7625 7626 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7624 def sentiment @sentiment end |
#type ⇒ String
The type of the entity mention.
Corresponds to the JSON property type
7629 7630 7631 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7629 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7636 7637 7638 7639 7640 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7636 def update!(**args) @entity_unique_id = args[:entity_unique_id] if args.key?(:entity_unique_id) @sentiment = args[:sentiment] if args.key?(:sentiment) @type = args[:type] if args.key?(:type) end |