class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue

Represents a value for an intent parameter.

Attributes

original_value[RW]

Always present. Original text value extracted from user utterance. Corresponds to the JSON property `originalValue` @return [String]

resolved_value[RW]

Always present. Structured value for the parameter extracted from user utterance. Corresponds to the JSON property `resolvedValue` @return [Object]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 2453
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 2458
def update!(**args)
  @original_value = args[:original_value] if args.key?(:original_value)
  @resolved_value = args[:resolved_value] if args.key?(:resolved_value)
end