Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnnotatedMessagePart
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnnotatedMessagePart
- 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) ⇒ 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.
7479 7480 7481 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7479 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
Corresponds to the JSON property entityType
7467 7468 7469 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7467 def entity_type @entity_type end |
#formatted_value ⇒ Object
Corresponds to the JSON property formattedValue
7472 7473 7474 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7472 def formatted_value @formatted_value end |
#text ⇒ String
Corresponds to the JSON property text
7477 7478 7479 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7477 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7484 7485 7486 7487 7488 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7484 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 |