buildingId = $buildingId; } /** * @return string */ public function getBuildingId() { return $this->buildingId; } /** * An optional desk identifier. * * @param string $deskId */ public function setDeskId($deskId) { $this->deskId = $deskId; } /** * @return string */ public function getDeskId() { return $this->deskId; } /** * An optional floor identifier. * * @param string $floorId */ public function setFloorId($floorId) { $this->floorId = $floorId; } /** * @return string */ public function getFloorId() { return $this->floorId; } /** * An optional floor section identifier. * * @param string $floorSectionId */ public function setFloorSectionId($floorSectionId) { $this->floorSectionId = $floorSectionId; } /** * @return string */ public function getFloorSectionId() { return $this->floorSectionId; } /** * The office name that's displayed in Calendar Web and Mobile clients. We * recommend you reference a building name in the organization's Resources * database. * * @param string $label */ public function setLabel($label) { $this->label = $label; } /** * @return string */ public function getLabel() { return $this->label; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EventWorkingLocationPropertiesOfficeLocation::class, 'Google_Service_Calendar_EventWorkingLocationPropertiesOfficeLocation');