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
Instance Attribute Summary collapse
-
#entity_type ⇒ String
Corresponds to the JSON property
entityType. -
#formatted_value ⇒ Object
Corresponds to the JSON property
formattedValue. -
#text ⇒ String
Corresponds to the JSON property
text.
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.
11416 11417 11418 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11416 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
Corresponds to the JSON property entityType
11404 11405 11406 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11404 def entity_type @entity_type end |
#formatted_value ⇒ Object
Corresponds to the JSON property formattedValue
11409 11410 11411 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11409 def formatted_value @formatted_value end |
#text ⇒ String
Corresponds to the JSON property text
11414 11415 11416 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11414 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11421 11422 11423 11424 11425 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11421 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 |