Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
- 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
-
#generator ⇒ String
Corresponds to the JSON property
generator. -
#input_parameters ⇒ Hash<String,String>
Corresponds to the JSON property
inputParameters. -
#output_parameter ⇒ String
Corresponds to the JSON property
outputParameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
constructor
A new instance of GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
Returns a new instance of GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings.
3495 3496 3497 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3495 def initialize(**args) update!(**args) end |
Instance Attribute Details
#generator ⇒ String
Corresponds to the JSON property generator
3483 3484 3485 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3483 def generator @generator end |
#input_parameters ⇒ Hash<String,String>
Corresponds to the JSON property inputParameters
3488 3489 3490 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3488 def input_parameters @input_parameters end |
#output_parameter ⇒ String
Corresponds to the JSON property outputParameter
3493 3494 3495 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3493 def output_parameter @output_parameter end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3500 3501 3502 3503 3504 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3500 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 |