Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1AnnotatedMessagePart
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1AnnotatedMessagePart
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/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.
18205 18206 18207 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18205 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
Corresponds to the JSON property entityType
18193 18194 18195 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18193 def entity_type @entity_type end |
#formatted_value ⇒ Object
Corresponds to the JSON property formattedValue
18198 18199 18200 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18198 def formatted_value @formatted_value end |
#text ⇒ String
Corresponds to the JSON property text
18203 18204 18205 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18203 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18210 18211 18212 18213 18214 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18210 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 |