huddleStatus = $huddleStatus; } /** * @return self::HUDDLE_STATUS_* */ public function getHuddleStatus() { return $this->huddleStatus; } /** * Meeting code of the linked Meet space. * * @param string $meetingCode */ public function setMeetingCode($meetingCode) { $this->meetingCode = $meetingCode; } /** * @return string */ public function getMeetingCode() { return $this->meetingCode; } /** * Indicates the type of the Meet space. * * Accepted values: TYPE_UNSPECIFIED, MEETING, HUDDLE * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MeetSpaceLinkData::class, 'Google_Service_HangoutsChat_MeetSpaceLinkData');