class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3FulfillmentSetParameterAction

Setting a parameter value.

Attributes

parameter[RW]

Display name of the parameter. Corresponds to the JSON property `parameter` @return [String]

value[RW]

The new value of the parameter. A null value clears the parameter. Corresponds to the JSON property `value` @return [Object]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 836
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_v2beta1/classes.rb, line 841
def update!(**args)
  @parameter = args[:parameter] if args.key?(:parameter)
  @value = args[:value] if args.key?(:value)
end