cities = $cities; } /** * @return City[] */ public function getCities() { return $this->cities; } /** * @param Country[] */ public function setCountries($countries) { $this->countries = $countries; } /** * @return Country[] */ public function getCountries() { return $this->countries; } /** * @param bool */ public function setExcludeCountries($excludeCountries) { $this->excludeCountries = $excludeCountries; } /** * @return bool */ public function getExcludeCountries() { return $this->excludeCountries; } /** * @param Metro[] */ public function setMetros($metros) { $this->metros = $metros; } /** * @return Metro[] */ public function getMetros() { return $this->metros; } /** * @param PostalCode[] */ public function setPostalCodes($postalCodes) { $this->postalCodes = $postalCodes; } /** * @return PostalCode[] */ public function getPostalCodes() { return $this->postalCodes; } /** * @param Region[] */ public function setRegions($regions) { $this->regions = $regions; } /** * @return Region[] */ public function getRegions() { return $this->regions; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GeoTargeting::class, 'Google_Service_Dfareporting_GeoTargeting');