description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setProductCategory($productCategory) { $this->productCategory = $productCategory; } /** * @return string */ public function getProductCategory() { return $this->productCategory; } /** * @param KeyValue[] */ public function setProductLabels($productLabels) { $this->productLabels = $productLabels; } /** * @return KeyValue[] */ public function getProductLabels() { return $this->productLabels; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Product::class, 'Google_Service_Vision_Product');