Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Instance Attribute Summary collapse
-
#connection_action_id ⇒ String
Corresponds to the JSON property
connectionActionId. -
#entity_operation ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
Corresponds to the JSON property
entityOperation. -
#input_fields ⇒ Array<String>
Corresponds to the JSON property
inputFields. -
#output_fields ⇒ Array<String>
Corresponds to the JSON property
outputFields.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
Returns a new instance of GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction.
12795 12796 12797 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12795 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connection_action_id ⇒ String
Corresponds to the JSON property connectionActionId
12778 12779 12780 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12778 def connection_action_id @connection_action_id end |
#entity_operation ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
Corresponds to the JSON property entityOperation
12783 12784 12785 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12783 def entity_operation @entity_operation end |
#input_fields ⇒ Array<String>
Corresponds to the JSON property inputFields
12788 12789 12790 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12788 def input_fields @input_fields end |
#output_fields ⇒ Array<String>
Corresponds to the JSON property outputFields
12793 12794 12795 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12793 def output_fields @output_fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12800 12801 12802 12803 12804 12805 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 12800 def update!(**args) @connection_action_id = args[:connection_action_id] if args.key?(:connection_action_id) @entity_operation = args[:entity_operation] if args.key?(:entity_operation) @input_fields = args[:input_fields] if args.key?(:input_fields) @output_fields = args[:output_fields] if args.key?(:output_fields) end |