action = $action; } /** * @return string */ public function getAction() { return $this->action; } /** * Optional. The action's input parameters. * * @param array[] $inputParameters */ public function setInputParameters($inputParameters) { $this->inputParameters = $inputParameters; } /** * @return array[] */ public function getInputParameters() { return $this->inputParameters; } /** * Required. The tool associated with this call. Format: * `projects//locations//agents//tools/`. * * @param string $tool */ public function setTool($tool) { $this->tool = $tool; } /** * @return string */ public function getTool() { return $this->tool; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3beta1ToolCall::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3beta1ToolCall');