languageCode = $languageCode; } /** * @return string */ public function getLanguageCode() { return $this->languageCode; } /** * @param string */ public function setLongText($longText) { $this->longText = $longText; } /** * @return string */ public function getLongText() { return $this->longText; } /** * @param string */ public function setShortText($shortText) { $this->shortText = $shortText; } /** * @return string */ public function getShortText() { return $this->shortText; } /** * @param string[] */ public function setTypes($types) { $this->types = $types; } /** * @return string[] */ public function getTypes() { return $this->types; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleMapsPlacesV1PlaceAddressComponent::class, 'Google_Service_MapsPlaces_GoogleMapsPlacesV1PlaceAddressComponent');