toolDefinitions = $toolDefinitions; } /** * @return array[] */ public function getToolDefinitions() { return $this->toolDefinitions; } /** * Version of the tool spec. Format: * providerId/connectorId/versionId/toolSpecId * * @param string $toolSpecVersion */ public function setToolSpecVersion($toolSpecVersion) { $this->toolSpecVersion = $toolSpecVersion; } /** * @return string */ public function getToolSpecVersion() { return $this->toolSpecVersion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ToolSpec::class, 'Google_Service_Connectors_ToolSpec');