_propDict)) { if (is_a($this->_propDict["recipients"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["recipients"])) { return $this->_propDict["recipients"]; } else { $this->_propDict["recipients"] = new IdentitySet($this->_propDict["recipients"]); return $this->_propDict["recipients"]; } } return null; } /** * Sets the recipients * The identities the item was shared with in this action. * * @param IdentitySet $val The value to assign to the recipients * * @return ShareAction The ShareAction */ public function setRecipients($val) { $this->_propDict["recipients"] = $val; return $this; } }