Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnnotatedMessagePart
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnnotatedMessagePart
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/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
Optional.
-
#formatted_value ⇒ Object
Optional.
-
#text ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AnnotatedMessagePart
constructor
A new instance of GoogleCloudDialogflowV2beta1AnnotatedMessagePart.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AnnotatedMessagePart
Returns a new instance of GoogleCloudDialogflowV2beta1AnnotatedMessagePart.
11579 11580 11581 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11579 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
Optional. 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
11564 11565 11566 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11564 def entity_type @entity_type end |
#formatted_value ⇒ Object
Optional. 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
11572 11573 11574 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11572 def formatted_value @formatted_value end |
#text ⇒ String
Required. A part of a message possibly annotated with an entity.
Corresponds to the JSON property text
11577 11578 11579 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11577 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11584 11585 11586 11587 11588 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11584 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 |