displayName = $displayName; } public function getDisplayName() { return $this->displayName; } /** * @param Geometry */ public function setGeometry(Geometry $geometry) { $this->geometry = $geometry; } /** * @return Geometry */ public function getGeometry() { return $this->geometry; } public function setPlaceId($placeId) { $this->placeId = $placeId; } public function getPlaceId() { return $this->placeId; } /** * @param Relation[] */ public function setRelations($relations) { $this->relations = $relations; } /** * @return Relation[] */ public function getRelations() { return $this->relations; } /** * @param SegmentInfo */ public function setSegmentInfo(SegmentInfo $segmentInfo) { $this->segmentInfo = $segmentInfo; } /** * @return SegmentInfo */ public function getSegmentInfo() { return $this->segmentInfo; } public function setType($type) { $this->type = $type; } public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Feature::class, 'Google_Service_SemanticTile_Feature');