attributeName = $attributeName; } /** * @return string */ public function getAttributeName() { return $this->attributeName; } /** * The value of the product detail. * * @param string $attributeValue */ public function setAttributeValue($attributeValue) { $this->attributeValue = $attributeValue; } /** * @return string */ public function getAttributeValue() { return $this->attributeValue; } /** * The section header used to group a set of product details. * * @param string $sectionName */ public function setSectionName($sectionName) { $this->sectionName = $sectionName; } /** * @return string */ public function getSectionName() { return $this->sectionName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProductDetail::class, 'Google_Service_Css_ProductDetail');