_propDict)) { return $this->_propDict["memberType"]; } else { return null; } } /** * Sets the memberType * Membership type of the eligible assignment. It can either be Inherited, Direct, or Group. Supports $filter (eq). * * @param string $val The memberType * * @return UnifiedRoleEligibilitySchedule */ public function setMemberType($val) { $this->_propDict["memberType"] = $val; return $this; } /** * Gets the scheduleInfo * The schedule object of the eligible role assignment request. * * @return RequestSchedule|null The scheduleInfo */ public function getScheduleInfo() { if (array_key_exists("scheduleInfo", $this->_propDict)) { if (is_a($this->_propDict["scheduleInfo"], "\Beta\Microsoft\Graph\Model\RequestSchedule") || is_null($this->_propDict["scheduleInfo"])) { return $this->_propDict["scheduleInfo"]; } else { $this->_propDict["scheduleInfo"] = new RequestSchedule($this->_propDict["scheduleInfo"]); return $this->_propDict["scheduleInfo"]; } } return null; } /** * Sets the scheduleInfo * The schedule object of the eligible role assignment request. * * @param RequestSchedule $val The scheduleInfo * * @return UnifiedRoleEligibilitySchedule */ public function setScheduleInfo($val) { $this->_propDict["scheduleInfo"] = $val; return $this; } }