Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue

Returns a new instance of GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue.



12668
12669
12670
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12668

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#original_valueString

Always present. Original text value extracted from user utterance. Corresponds to the JSON property originalValue

Returns:

  • (String)


12660
12661
12662
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12660

def original_value
  @original_value
end

#resolved_valueObject

Always present. Structured value for the parameter extracted from user utterance. Corresponds to the JSON property resolvedValue

Returns:

  • (Object)


12666
12667
12668
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12666

def resolved_value
  @resolved_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12673
12674
12675
12676
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12673

def update!(**args)
  @original_value = args[:original_value] if args.key?(:original_value)
  @resolved_value = args[:resolved_value] if args.key?(:resolved_value)
end