Class: Google::Cloud::ContactCenterInsights::V1::EntityMentionData
- Inherits:
-
Object
- Object
- Google::Cloud::ContactCenterInsights::V1::EntityMentionData
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/contactcenterinsights/v1/resources.rb
Overview
The data for an entity mention annotation.
This represents a mention of an Entity
in the conversation.
Defined Under Namespace
Modules: MentionType
Instance Attribute Summary collapse
-
#entity_unique_id ⇒ ::String
The key of this entity in conversation entities.
-
#sentiment ⇒ ::Google::Cloud::ContactCenterInsights::V1::SentimentData
Sentiment expressed for this mention of the entity.
-
#type ⇒ ::Google::Cloud::ContactCenterInsights::V1::EntityMentionData::MentionType
The type of the entity mention.
Instance Attribute Details
#entity_unique_id ⇒ ::String
Returns The key of this entity in conversation entities.
Can be used to retrieve the exact Entity
this mention is attached to.
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/resources.rb', line 693 class EntityMentionData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The supported types of mentions. module MentionType # Unspecified. MENTION_TYPE_UNSPECIFIED = 0 # Proper noun. PROPER = 1 # Common noun (or noun compound). COMMON = 2 end end |
#sentiment ⇒ ::Google::Cloud::ContactCenterInsights::V1::SentimentData
Returns Sentiment expressed for this mention of the entity.
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/resources.rb', line 693 class EntityMentionData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The supported types of mentions. module MentionType # Unspecified. MENTION_TYPE_UNSPECIFIED = 0 # Proper noun. PROPER = 1 # Common noun (or noun compound). COMMON = 2 end end |
#type ⇒ ::Google::Cloud::ContactCenterInsights::V1::EntityMentionData::MentionType
Returns The type of the entity mention.
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/resources.rb', line 693 class EntityMentionData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The supported types of mentions. module MentionType # Unspecified. MENTION_TYPE_UNSPECIFIED = 0 # Proper noun. PROPER = 1 # Common noun (or noun compound). COMMON = 2 end end |