setODataType("#microsoft.graph.callTranscriptEventMessageDetail"); } /** * Gets the callId * Unique identifier of the call. * * @return string|null The callId */ public function getCallId() { if (array_key_exists("callId", $this->_propDict)) { return $this->_propDict["callId"]; } else { return null; } } /** * Sets the callId * Unique identifier of the call. * * @param string $val The value of the callId * * @return CallTranscriptEventMessageDetail */ public function setCallId($val) { $this->_propDict["callId"] = $val; return $this; } /** * Gets the callTranscriptICalUid * Unique identifier for a call transcript. * * @return string|null The callTranscriptICalUid */ public function getCallTranscriptICalUid() { if (array_key_exists("callTranscriptICalUid", $this->_propDict)) { return $this->_propDict["callTranscriptICalUid"]; } else { return null; } } /** * Sets the callTranscriptICalUid * Unique identifier for a call transcript. * * @param string $val The value of the callTranscriptICalUid * * @return CallTranscriptEventMessageDetail */ public function setCallTranscriptICalUid($val) { $this->_propDict["callTranscriptICalUid"] = $val; return $this; } /** * Gets the meetingOrganizer * The organizer of the meeting. * * @return IdentitySet|null The meetingOrganizer */ public function getMeetingOrganizer() { if (array_key_exists("meetingOrganizer", $this->_propDict)) { if (is_a($this->_propDict["meetingOrganizer"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["meetingOrganizer"])) { return $this->_propDict["meetingOrganizer"]; } else { $this->_propDict["meetingOrganizer"] = new IdentitySet($this->_propDict["meetingOrganizer"]); return $this->_propDict["meetingOrganizer"]; } } return null; } /** * Sets the meetingOrganizer * The organizer of the meeting. * * @param IdentitySet $val The value to assign to the meetingOrganizer * * @return CallTranscriptEventMessageDetail The CallTranscriptEventMessageDetail */ public function setMeetingOrganizer($val) { $this->_propDict["meetingOrganizer"] = $val; return $this; } }