administrativeArea = $administrativeArea; } /** * @return string */ public function getAdministrativeArea() { return $this->administrativeArea; } /** * Required. City, town or commune. May also include dependent localities or * sublocalities (for example, neighborhoods or suburbs). * * @param string $city */ public function setCity($city) { $this->city = $city; } /** * @return string */ public function getCity() { return $this->city; } /** * Required. [CLDR country code](https://github.com/unicode- * org/cldr/blob/latest/common/main/en.xml) (for example, "US"). * * @param string $country */ public function setCountry($country) { $this->country = $country; } /** * @return string */ public function getCountry() { return $this->country; } /** * Required. Postal code or ZIP (for example, "94043"). * * @param string $postalCode */ public function setPostalCode($postalCode) { $this->postalCode = $postalCode; } /** * @return string */ public function getPostalCode() { return $this->postalCode; } /** * Street-level part of the address. Use `\n` to add a second line. * * @param string $streetAddress */ public function setStreetAddress($streetAddress) { $this->streetAddress = $streetAddress; } /** * @return string */ public function getStreetAddress() { return $this->streetAddress; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Address::class, 'Google_Service_ShoppingContent_Address');