link = $link; } /** * @return string */ public function getLink() { return $this->link; } /** * Human-readable name of this entity, such as an email address, file ID, or * device name. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Extra values beyond name. The order of values should align with headers in * EntityList. * * @param string[] $values */ public function setValues($values) { $this->values = $values; } /** * @return string[] */ public function getValues() { return $this->values; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entity::class, 'Google_Service_AlertCenter_Entity');