_propDict)) { if (is_a($this->_propDict["attendees"], "\Microsoft\Graph\Model\MeetingParticipantInfo") || is_null($this->_propDict["attendees"])) { return $this->_propDict["attendees"]; } else { $this->_propDict["attendees"] = new MeetingParticipantInfo($this->_propDict["attendees"]); return $this->_propDict["attendees"]; } } return null; } /** * Sets the attendees * * @param MeetingParticipantInfo $val The value to assign to the attendees * * @return MeetingParticipants The MeetingParticipants */ public function setAttendees($val) { $this->_propDict["attendees"] = $val; return $this; } /** * Gets the organizer * * @return MeetingParticipantInfo|null The organizer */ public function getOrganizer() { if (array_key_exists("organizer", $this->_propDict)) { if (is_a($this->_propDict["organizer"], "\Microsoft\Graph\Model\MeetingParticipantInfo") || is_null($this->_propDict["organizer"])) { return $this->_propDict["organizer"]; } else { $this->_propDict["organizer"] = new MeetingParticipantInfo($this->_propDict["organizer"]); return $this->_propDict["organizer"]; } } return null; } /** * Sets the organizer * * @param MeetingParticipantInfo $val The value to assign to the organizer * * @return MeetingParticipants The MeetingParticipants */ public function setOrganizer($val) { $this->_propDict["organizer"] = $val; return $this; } }