authority = $authority; } /** * @return string */ public function getAuthority() { return $this->authority; } /** * The code of the certification. For example, for the EPREL certificate with * the link https://eprel.ec.europa.eu/screen/product/dishwashers2019/123456 * the code is 123456. The code is required for European Energy Labels. * * @param string $code */ public function setCode($code) { $this->code = $code; } /** * @return string */ public function getCode() { return $this->code; } /** * The name of the certification. At this time, the most common value is * "EPREL", which represents energy efficiency certifications in the EU * European Registry for Energy Labeling (EPREL) database. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Certification::class, 'Google_Service_Css_Certification');