Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2AnnotatedMessagePart
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2AnnotatedMessagePart
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents a part of a message possibly annotated with an entity. The part can be an entity or purely a part of the message between two entities or message start/end.
Instance Attribute Summary collapse
-
#entity_type ⇒ String
The Dialogflow system entity type of this message part.
-
#formatted_value ⇒ Object
The Dialogflow system entity formatted value of this message part.
-
#text ⇒ String
A part of a message possibly annotated with an entity.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2AnnotatedMessagePart
constructor
A new instance of GoogleCloudDialogflowV2AnnotatedMessagePart.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2AnnotatedMessagePart
Returns a new instance of GoogleCloudDialogflowV2AnnotatedMessagePart.
4665 4666 4667 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4665 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
The Dialogflow system entity type of this message part. If this is empty, Dialogflow
could not annotate the phrase part with a system entity.
Corresponds to the JSON property entityType
4650 4651 4652 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4650 def entity_type @entity_type end |
#formatted_value ⇒ Object
The Dialogflow system entity formatted value of this message part. For example
for a system entity of type @sys.unit-currency
, this may contain: "amount":
5, "currency": "USD"
Corresponds to the JSON property formattedValue
4658 4659 4660 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4658 def formatted_value @formatted_value end |
#text ⇒ String
A part of a message possibly annotated with an entity.
Corresponds to the JSON property text
4663 4664 4665 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4663 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4670 4671 4672 4673 4674 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4670 def update!(**args) @entity_type = args[:entity_type] if args.key?(:entity_type) @formatted_value = args[:formatted_value] if args.key?(:formatted_value) @text = args[:text] if args.key?(:text) end |