_propDict)) { return $this->_propDict["calendarEventId"]; } else { return null; } } /** * Sets the calendarEventId * The identifier of the calendar event associated with the meeting. * * @param string $val The value of the calendarEventId * * @return TeamworkOnlineMeetingInfo */ public function setCalendarEventId($val) { $this->_propDict["calendarEventId"] = $val; return $this; } /** * Gets the joinWebUrl * The URL that users click to join or uniquely identify the meeting. * * @return string|null The joinWebUrl */ public function getJoinWebUrl() { if (array_key_exists("joinWebUrl", $this->_propDict)) { return $this->_propDict["joinWebUrl"]; } else { return null; } } /** * Sets the joinWebUrl * The URL that users click to join or uniquely identify the meeting. * * @param string $val The value of the joinWebUrl * * @return TeamworkOnlineMeetingInfo */ public function setJoinWebUrl($val) { $this->_propDict["joinWebUrl"] = $val; return $this; } /** * Gets the organizer * The organizer of the meeting. * * @return TeamworkUserIdentity|null The organizer */ public function getOrganizer() { if (array_key_exists("organizer", $this->_propDict)) { if (is_a($this->_propDict["organizer"], "\Microsoft\Graph\Model\TeamworkUserIdentity") || is_null($this->_propDict["organizer"])) { return $this->_propDict["organizer"]; } else { $this->_propDict["organizer"] = new TeamworkUserIdentity($this->_propDict["organizer"]); return $this->_propDict["organizer"]; } } return null; } /** * Sets the organizer * The organizer of the meeting. * * @param TeamworkUserIdentity $val The value to assign to the organizer * * @return TeamworkOnlineMeetingInfo The TeamworkOnlineMeetingInfo */ public function setOrganizer($val) { $this->_propDict["organizer"] = $val; return $this; } }