city = $city; } /** * @return string */ public function getCity() { return $this->city; } /** * @param string */ public function setCountry($country) { $this->country = $country; } /** * @return string */ public function getCountry() { return $this->country; } /** * @param string */ public function setCountryCode($countryCode) { $this->countryCode = $countryCode; } /** * @return string */ public function getCountryCode() { return $this->countryCode; } /** * @param string */ public function setState($state) { $this->state = $state; } /** * @return string */ public function getState() { return $this->state; } /** * @param string */ public function setSubLocation($subLocation) { $this->subLocation = $subLocation; } /** * @return string */ public function getSubLocation() { return $this->subLocation; } /** * @param string */ public function setWorldRegion($worldRegion) { $this->worldRegion = $worldRegion; } /** * @return string */ public function getWorldRegion() { return $this->worldRegion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ImageExifIPTCMetadataLocationInfo::class, 'Google_Service_Contentwarehouse_ImageExifIPTCMetadataLocationInfo');