_propDict)) { if (is_a($this->_propDict["inactiveDuration"], "\DateInterval") || is_null($this->_propDict["inactiveDuration"])) { return $this->_propDict["inactiveDuration"]; } else { $this->_propDict["inactiveDuration"] = new \DateInterval($this->_propDict["inactiveDuration"]); return $this->_propDict["inactiveDuration"]; } } return null; } /** * Sets the inactiveDuration * Defines the duration of inactivity. Inactivity is based on the last sign in date of the user compared to the access review instance's start date. If this property is not specified, it's assigned the default value PT0S. * * @param \DateInterval $val The value to assign to the inactiveDuration * * @return AccessReviewInactiveUsersQueryScope The AccessReviewInactiveUsersQueryScope */ public function setInactiveDuration($val) { $this->_propDict["inactiveDuration"] = $val; return $this; } }