Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ToolConnectorToolAction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ToolConnectorToolAction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#connection_action_id ⇒ String
Corresponds to the JSON property
connectionActionId. -
#entity_operation ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ToolConnectorToolActionEntityOperation
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) ⇒ GoogleCloudDialogflowV2ToolConnectorToolAction
constructor
A new instance of GoogleCloudDialogflowV2ToolConnectorToolAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolConnectorToolAction
Returns a new instance of GoogleCloudDialogflowV2ToolConnectorToolAction.
17303 17304 17305 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17303 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connection_action_id ⇒ String
Corresponds to the JSON property connectionActionId
17286 17287 17288 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17286 def connection_action_id @connection_action_id end |
#entity_operation ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ToolConnectorToolActionEntityOperation
Corresponds to the JSON property entityOperation
17291 17292 17293 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17291 def entity_operation @entity_operation end |
#input_fields ⇒ Array<String>
Corresponds to the JSON property inputFields
17296 17297 17298 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17296 def input_fields @input_fields end |
#output_fields ⇒ Array<String>
Corresponds to the JSON property outputFields
17301 17302 17303 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17301 def output_fields @output_fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17308 17309 17310 17311 17312 17313 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17308 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 |