countryCode = $countryCode; } /** * @return string */ public function getCountryCode() { return $this->countryCode; } /** * @param DeliveryAreaPostalCodeRange */ public function setPostalCodeRange(DeliveryAreaPostalCodeRange $postalCodeRange) { $this->postalCodeRange = $postalCodeRange; } /** * @return DeliveryAreaPostalCodeRange */ public function getPostalCodeRange() { return $this->postalCodeRange; } /** * @param string */ public function setRegionCode($regionCode) { $this->regionCode = $regionCode; } /** * @return string */ public function getRegionCode() { return $this->regionCode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeliveryArea::class, 'Google_Service_ShoppingContent_DeliveryArea');