Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/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) ⇒ GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue
constructor
A new instance of GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue
Returns a new instance of GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue.
12394 12395 12396 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12394 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
12386 12387 12388 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12386 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
12392 12393 12394 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12392 def resolved_value @resolved_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12399 12400 12401 12402 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12399 def update!(**args) @original_value = args[:original_value] if args.key?(:original_value) @resolved_value = args[:resolved_value] if args.key?(:resolved_value) end |