country = $country; } /** * @return string */ public function getCountry() { return $this->country; } /** * @param string[] */ public function setExcludedDestinations($excludedDestinations) { $this->excludedDestinations = $excludedDestinations; } /** * @return string[] */ public function getExcludedDestinations() { return $this->excludedDestinations; } /** * @param string[] */ public function setIncludedDestinations($includedDestinations) { $this->includedDestinations = $includedDestinations; } /** * @return string[] */ public function getIncludedDestinations() { return $this->includedDestinations; } /** * @param string */ public function setLanguage($language) { $this->language = $language; } /** * @return string */ public function getLanguage() { return $this->language; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DatafeedTarget::class, 'Google_Service_ShoppingContent_DatafeedTarget');