method = $method; } /** * @return string */ public function getMethod() { return $this->method; } /** * Output only. The path for the method such as * `v1/cssproductsservice.listcssproducts`. * * @param string $path */ public function setPath($path) { $this->path = $path; } /** * @return string */ public function getPath() { return $this->path; } /** * Output only. The sub-API that the method belongs to. In the CSS API, this * is always `css`. * * @param string $subapi */ public function setSubapi($subapi) { $this->subapi = $subapi; } /** * @return string */ public function getSubapi() { return $this->subapi; } /** * Output only. The API version that the method belongs to. * * @param string $version */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MethodDetails::class, 'Google_Service_Css_MethodDetails');