_propDict)) { return $this->_propDict["excludes"]; } else { return null; } } /** * Sets the excludes * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. * * @param PermissionGrantConditionSet[] $val The excludes * * @return PermissionGrantPolicy */ public function setExcludes($val) { $this->_propDict["excludes"] = $val; return $this; } /** * Gets the includes * Condition sets which are included in this permission grant policy. Automatically expanded on GET. * * @return array|null The includes */ public function getIncludes() { if (array_key_exists("includes", $this->_propDict)) { return $this->_propDict["includes"]; } else { return null; } } /** * Sets the includes * Condition sets which are included in this permission grant policy. Automatically expanded on GET. * * @param PermissionGrantConditionSet[] $val The includes * * @return PermissionGrantPolicy */ public function setIncludes($val) { $this->_propDict["includes"] = $val; return $this; } }