id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * A human-friendly name for this language/locale. Example: "English". * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * A human-friendly string representing the region for this locale. Example: * "United States". Not present for every locale. * * @param string $region */ public function setRegion($region) { $this->region = $region; } /** * @return string */ public function getRegion() { return $this->region; } /** * Tags for this dimension. Example: "default". * * @param string[] $tags */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Locale::class, 'Google_Service_Testing_Locale');