agencies = $agencies; } /** * @return GoogleMapsPlacesV1TransitAgency[] */ public function getAgencies() { return $this->agencies; } /** * The name of the station in the local language. * * @param GoogleTypeLocalizedText $displayName */ public function setDisplayName(GoogleTypeLocalizedText $displayName) { $this->displayName = $displayName; } /** * @return GoogleTypeLocalizedText */ public function getDisplayName() { return $this->displayName; } /** * Transit stops at this station. * * @param GoogleMapsPlacesV1TransitStop[] $stops */ public function setStops($stops) { $this->stops = $stops; } /** * @return GoogleMapsPlacesV1TransitStop[] */ public function getStops() { return $this->stops; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleMapsPlacesV1TransitStation::class, 'Google_Service_MapsPlaces_GoogleMapsPlacesV1TransitStation');