setODataType("#microsoft.graph.protectSite"); } /** * Gets the accessType * * @return SiteAccessType|null The accessType */ public function getAccessType() { if (array_key_exists("accessType", $this->_propDict)) { if (is_a($this->_propDict["accessType"], "\Beta\Microsoft\Graph\Model\SiteAccessType") || is_null($this->_propDict["accessType"])) { return $this->_propDict["accessType"]; } else { $this->_propDict["accessType"] = new SiteAccessType($this->_propDict["accessType"]); return $this->_propDict["accessType"]; } } return null; } /** * Sets the accessType * * @param SiteAccessType $val The value to assign to the accessType * * @return ProtectSite The ProtectSite */ public function setAccessType($val) { $this->_propDict["accessType"] = $val; return $this; } /** * Gets the conditionalAccessProtectionLevelId * * @return string|null The conditionalAccessProtectionLevelId */ public function getConditionalAccessProtectionLevelId() { if (array_key_exists("conditionalAccessProtectionLevelId", $this->_propDict)) { return $this->_propDict["conditionalAccessProtectionLevelId"]; } else { return null; } } /** * Sets the conditionalAccessProtectionLevelId * * @param string $val The value of the conditionalAccessProtectionLevelId * * @return ProtectSite */ public function setConditionalAccessProtectionLevelId($val) { $this->_propDict["conditionalAccessProtectionLevelId"] = $val; return $this; } }