_propDict)) { if (is_a($this->_propDict["manager"], "\Beta\Microsoft\Graph\Model\SynchronizationJobSubject") || is_null($this->_propDict["manager"])) { return $this->_propDict["manager"]; } else { $this->_propDict["manager"] = new SynchronizationJobSubject($this->_propDict["manager"]); return $this->_propDict["manager"]; } } return null; } /** * Sets the manager * * @param SynchronizationJobSubject $val The value to assign to the manager * * @return SynchronizationLinkedObjects The SynchronizationLinkedObjects */ public function setManager($val) { $this->_propDict["manager"] = $val; return $this; } /** * Gets the members * All group members that you would like to provision. * * @return SynchronizationJobSubject|null The members */ public function getMembers() { if (array_key_exists("members", $this->_propDict)) { if (is_a($this->_propDict["members"], "\Beta\Microsoft\Graph\Model\SynchronizationJobSubject") || is_null($this->_propDict["members"])) { return $this->_propDict["members"]; } else { $this->_propDict["members"] = new SynchronizationJobSubject($this->_propDict["members"]); return $this->_propDict["members"]; } } return null; } /** * Sets the members * All group members that you would like to provision. * * @param SynchronizationJobSubject $val The value to assign to the members * * @return SynchronizationLinkedObjects The SynchronizationLinkedObjects */ public function setMembers($val) { $this->_propDict["members"] = $val; return $this; } /** * Gets the owners * * @return SynchronizationJobSubject|null The owners */ public function getOwners() { if (array_key_exists("owners", $this->_propDict)) { if (is_a($this->_propDict["owners"], "\Beta\Microsoft\Graph\Model\SynchronizationJobSubject") || is_null($this->_propDict["owners"])) { return $this->_propDict["owners"]; } else { $this->_propDict["owners"] = new SynchronizationJobSubject($this->_propDict["owners"]); return $this->_propDict["owners"]; } } return null; } /** * Sets the owners * * @param SynchronizationJobSubject $val The value to assign to the owners * * @return SynchronizationLinkedObjects The SynchronizationLinkedObjects */ public function setOwners($val) { $this->_propDict["owners"] = $val; return $this; } }