Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Represents a value for an intent parameter.
Instance Attribute Summary collapse
-
#original_value ⇒ String
Always present.
-
#resolved_value ⇒ Object
Always present.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue
constructor
A new instance of GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue
Returns a new instance of GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue.
8667 8668 8669 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8667 def initialize(**args) update!(**args) end |
Instance Attribute Details
#original_value ⇒ String
Always present. Original text value extracted from user utterance.
Corresponds to the JSON property originalValue
8659 8660 8661 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8659 def original_value @original_value end |
#resolved_value ⇒ Object
Always present. Structured value for the parameter extracted from user
utterance.
Corresponds to the JSON property resolvedValue
8665 8666 8667 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8665 def resolved_value @resolved_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8672 8673 8674 8675 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8672 def update!(**args) @original_value = args[:original_value] if args.key?(:original_value) @resolved_value = args[:resolved_value] if args.key?(:resolved_value) end |