buildingId = $buildingId; } /** * @return string */ public function getBuildingId() { return $this->buildingId; } /** * @param bool */ public function setCurrent($current) { $this->current = $current; } /** * @return bool */ public function getCurrent() { return $this->current; } /** * @param string */ public function setDeskCode($deskCode) { $this->deskCode = $deskCode; } /** * @return string */ public function getDeskCode() { return $this->deskCode; } /** * @param string */ public function setFloor($floor) { $this->floor = $floor; } /** * @return string */ public function getFloor() { return $this->floor; } /** * @param string */ public function setFloorSection($floorSection) { $this->floorSection = $floorSection; } /** * @return string */ public function getFloorSection() { return $this->floorSection; } /** * @param FieldMetadata */ public function setMetadata(FieldMetadata $metadata) { $this->metadata = $metadata; } /** * @return FieldMetadata */ public function getMetadata() { return $this->metadata; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Location::class, 'Google_Service_PeopleService_Location');