Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings.



10898
10899
10900
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10898

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

Instance Attribute Details

#generatorString

Corresponds to the JSON property generator

Returns:

  • (String)


10886
10887
10888
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10886

def generator
  @generator
end

#input_parametersHash<String,String>

Corresponds to the JSON property inputParameters

Returns:

  • (Hash<String,String>)


10891
10892
10893
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10891

def input_parameters
  @input_parameters
end

#output_parameterString

Corresponds to the JSON property outputParameter

Returns:

  • (String)


10896
10897
10898
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10896

def output_parameter
  @output_parameter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10903
10904
10905
10906
10907
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10903

def update!(**args)
  @generator = args[:generator] if args.key?(:generator)
  @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
  @output_parameter = args[:output_parameter] if args.key?(:output_parameter)
end