activeConference = $activeConference; } /** * @return ActiveConference */ public function getActiveConference() { return $this->activeConference; } /** * @param SpaceConfig */ public function setConfig(SpaceConfig $config) { $this->config = $config; } /** * @return SpaceConfig */ public function getConfig() { return $this->config; } /** * @param string */ public function setMeetingCode($meetingCode) { $this->meetingCode = $meetingCode; } /** * @return string */ public function getMeetingCode() { return $this->meetingCode; } /** * @param string */ public function setMeetingUri($meetingUri) { $this->meetingUri = $meetingUri; } /** * @return string */ public function getMeetingUri() { return $this->meetingUri; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Space::class, 'Google_Service_Meet_Space');