code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function getPrimaryRole() { if (array_key_exists("primaryRole", $this->_propDict)) { if (is_a($this->_propDict["primaryRole"], "\Beta\Microsoft\Graph\Model\EducationUserRole") || is_null($this->_propDict["primaryRole"])) { return $this->_propDict["primaryRole"]; } else { $this->_propDict["primaryRole"] = new EducationUserRole($this->_propDict["primaryRole"]); return $this->_propDict["primaryRole"]; } } return null; }
Gets the primaryRole Default role for a user. The user's role might be different in an individual class. Possible values are: student, teacher, faculty. Supports /$filter. @return EducationUserRole|null The primaryRole
getPrimaryRole
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setPrimaryRole($val) { $this->_propDict["primaryRole"] = $val; return $this; }
Sets the primaryRole Default role for a user. The user's role might be different in an individual class. Possible values are: student, teacher, faculty. Supports /$filter. @param EducationUserRole $val The primaryRole @return EducationUser
setPrimaryRole
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getRefreshTokensValidFromDateTime() { if (array_key_exists("refreshTokensValidFromDateTime", $this->_propDict)) { if (is_a($this->_propDict["refreshTokensValidFromDateTime"], "\DateTime") || is_null($this->_propDict["refreshTokensValidFromDateTime"])) { return $this->_propDict["refreshTokensValidFromDateTime"]; } else { $this->_propDict["refreshTokensValidFromDateTime"] = new \DateTime($this->_propDict["refreshTokensValidFromDateTime"]); return $this->_propDict["refreshTokensValidFromDateTime"]; } } return null; }
Gets the refreshTokensValidFromDateTime @return \DateTime|null The refreshTokensValidFromDateTime
getRefreshTokensValidFromDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setRefreshTokensValidFromDateTime($val) { $this->_propDict["refreshTokensValidFromDateTime"] = $val; return $this; }
Sets the refreshTokensValidFromDateTime @param \DateTime $val The refreshTokensValidFromDateTime @return EducationUser
setRefreshTokensValidFromDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getResidenceAddress() { if (array_key_exists("residenceAddress", $this->_propDict)) { if (is_a($this->_propDict["residenceAddress"], "\Beta\Microsoft\Graph\Model\PhysicalAddress") || is_null($this->_propDict["residenceAddress"])) { return $this->_propDict["residenceAddress"]; } else { $this->_propDict["residenceAddress"] = new PhysicalAddress($this->_propDict["residenceAddress"]); return $this->_propDict["residenceAddress"]; } } return null; }
Gets the residenceAddress Address where user lives. Note: type and postOfficeBox are not supported for educationUser resources. @return PhysicalAddress|null The residenceAddress
getResidenceAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setResidenceAddress($val) { $this->_propDict["residenceAddress"] = $val; return $this; }
Sets the residenceAddress Address where user lives. Note: type and postOfficeBox are not supported for educationUser resources. @param PhysicalAddress $val The residenceAddress @return EducationUser
setResidenceAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getStudent() { if (array_key_exists("student", $this->_propDict)) { if (is_a($this->_propDict["student"], "\Beta\Microsoft\Graph\Model\EducationStudent") || is_null($this->_propDict["student"])) { return $this->_propDict["student"]; } else { $this->_propDict["student"] = new EducationStudent($this->_propDict["student"]); return $this->_propDict["student"]; } } return null; }
Gets the student If the primary role is student, this block will contain student specific data. @return EducationStudent|null The student
getStudent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setStudent($val) { $this->_propDict["student"] = $val; return $this; }
Sets the student If the primary role is student, this block will contain student specific data. @param EducationStudent $val The student @return EducationUser
setStudent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getTeacher() { if (array_key_exists("teacher", $this->_propDict)) { if (is_a($this->_propDict["teacher"], "\Beta\Microsoft\Graph\Model\EducationTeacher") || is_null($this->_propDict["teacher"])) { return $this->_propDict["teacher"]; } else { $this->_propDict["teacher"] = new EducationTeacher($this->_propDict["teacher"]); return $this->_propDict["teacher"]; } } return null; }
Gets the teacher If the primary role is teacher, this block will contain teacher specific data. @return EducationTeacher|null The teacher
getTeacher
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setTeacher($val) { $this->_propDict["teacher"] = $val; return $this; }
Sets the teacher If the primary role is teacher, this block will contain teacher specific data. @param EducationTeacher $val The teacher @return EducationUser
setTeacher
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getRubrics() { if (array_key_exists("rubrics", $this->_propDict)) { return $this->_propDict["rubrics"]; } else { return null; } }
Gets the rubrics When set, the grading rubric attached to the assignment. @return array|null The rubrics
getRubrics
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setRubrics($val) { $this->_propDict["rubrics"] = $val; return $this; }
Sets the rubrics When set, the grading rubric attached to the assignment. @param EducationRubric[] $val The rubrics @return EducationUser
setRubrics
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getClasses() { if (array_key_exists("classes", $this->_propDict)) { return $this->_propDict["classes"]; } else { return null; } }
Gets the classes Classes to which the user belongs. Nullable. @return array|null The classes
getClasses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setClasses($val) { $this->_propDict["classes"] = $val; return $this; }
Sets the classes Classes to which the user belongs. Nullable. @param EducationClass[] $val The classes @return EducationUser
setClasses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getTaughtClasses() { if (array_key_exists("taughtClasses", $this->_propDict)) { return $this->_propDict["taughtClasses"]; } else { return null; } }
Gets the taughtClasses Classes for which the user is a teacher. @return array|null The taughtClasses
getTaughtClasses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function setTaughtClasses($val) { $this->_propDict["taughtClasses"] = $val; return $this; }
Sets the taughtClasses Classes for which the user is a teacher. @param EducationClass[] $val The taughtClasses @return EducationUser
setTaughtClasses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationUser.php
MIT
public function getCloudPcStatus() { if (array_key_exists("cloudPcStatus", $this->_propDict)) { return $this->_propDict["cloudPcStatus"]; } else { return null; } }
Gets the cloudPcStatus The status of the cloud PC. Possible values are: notProvisioned, provisioning, provisioned, upgrading, inGracePeriod, deprovisioning, failed. Required. Read-only. @return string|null The cloudPcStatus
getCloudPcStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function setCloudPcStatus($val) { $this->_propDict["cloudPcStatus"] = $val; return $this; }
Sets the cloudPcStatus The status of the cloud PC. Possible values are: notProvisioned, provisioning, provisioned, upgrading, inGracePeriod, deprovisioning, failed. Required. Read-only. @param string $val The cloudPcStatus @return CloudPcDevice
setCloudPcStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function getDeviceSpecification() { if (array_key_exists("deviceSpecification", $this->_propDict)) { return $this->_propDict["deviceSpecification"]; } else { return null; } }
Gets the deviceSpecification The specification of the cloud PC device. Required. Read-only. @return string|null The deviceSpecification
getDeviceSpecification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function setDeviceSpecification($val) { $this->_propDict["deviceSpecification"] = $val; return $this; }
Sets the deviceSpecification The specification of the cloud PC device. Required. Read-only. @param string $val The deviceSpecification @return CloudPcDevice
setDeviceSpecification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function getProvisioningPolicyId() { if (array_key_exists("provisioningPolicyId", $this->_propDict)) { return $this->_propDict["provisioningPolicyId"]; } else { return null; } }
Gets the provisioningPolicyId The provisioning policy identifier for the cloud PC device. Required. Read-only. @return string|null The provisioningPolicyId
getProvisioningPolicyId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function setProvisioningPolicyId($val) { $this->_propDict["provisioningPolicyId"] = $val; return $this; }
Sets the provisioningPolicyId The provisioning policy identifier for the cloud PC device. Required. Read-only. @param string $val The provisioningPolicyId @return CloudPcDevice
setProvisioningPolicyId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function getServicePlanName() { if (array_key_exists("servicePlanName", $this->_propDict)) { return $this->_propDict["servicePlanName"]; } else { return null; } }
Gets the servicePlanName The service plan name of the cloud PC device. Required. Read-only. @return string|null The servicePlanName
getServicePlanName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function setServicePlanName($val) { $this->_propDict["servicePlanName"] = $val; return $this; }
Sets the servicePlanName The service plan name of the cloud PC device. Required. Read-only. @param string $val The servicePlanName @return CloudPcDevice
setServicePlanName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function getServicePlanType() { if (array_key_exists("servicePlanType", $this->_propDict)) { return $this->_propDict["servicePlanType"]; } else { return null; } }
Gets the servicePlanType The service plan type of the cloud PC device. Required. Read-only. @return string|null The servicePlanType
getServicePlanType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function setServicePlanType($val) { $this->_propDict["servicePlanType"] = $val; return $this; }
Sets the servicePlanType The service plan type of the cloud PC device. Required. Read-only. @param string $val The servicePlanType @return CloudPcDevice
setServicePlanType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/CloudPcDevice.php
MIT
public function getOverrides() { if (array_key_exists("overrides", $this->_propDict)) { return $this->_propDict["overrides"]; } else { return null; } }
Gets the overrides A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. @return array|null The overrides
getOverrides
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/InferenceClassification.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/InferenceClassification.php
MIT
public function setOverrides($val) { $this->_propDict["overrides"] = $val; return $this; }
Sets the overrides A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. @param InferenceClassificationOverride[] $val The overrides @return InferenceClassification
setOverrides
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/InferenceClassification.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/InferenceClassification.php
MIT
public function getSubcode() { if (array_key_exists("subcode", $this->_propDict)) { return $this->_propDict["subcode"]; } else { return null; } }
Gets the subcode The result sub-code. @return int|null The subcode
getSubcode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ResultInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ResultInfo.php
MIT
public function setSubcode($val) { $this->_propDict["subcode"] = $val; return $this; }
Sets the subcode The result sub-code. @param int $val The value of the subcode @return ResultInfo
setSubcode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ResultInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ResultInfo.php
MIT
public function getChoiceSettingCollectionValue() { if (array_key_exists("choiceSettingCollectionValue", $this->_propDict)) { if (is_a($this->_propDict["choiceSettingCollectionValue"], "\Beta\Microsoft\Graph\Model\DeviceManagementConfigurationChoiceSettingValue") || is_null($this->_propDict["choiceSettingCollectionValue"])) { return $this->_propDict["choiceSettingCollectionValue"]; } else { $this->_propDict["choiceSettingCollectionValue"] = new DeviceManagementConfigurationChoiceSettingValue($this->_propDict["choiceSettingCollectionValue"]); return $this->_propDict["choiceSettingCollectionValue"]; } } return null; }
Gets the choiceSettingCollectionValue Choice setting collection value @return DeviceManagementConfigurationChoiceSettingValue|null The choiceSettingCollectionValue
getChoiceSettingCollectionValue
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionInstance.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionInstance.php
MIT
public function setChoiceSettingCollectionValue($val) { $this->_propDict["choiceSettingCollectionValue"] = $val; return $this; }
Sets the choiceSettingCollectionValue Choice setting collection value @param DeviceManagementConfigurationChoiceSettingValue $val The value to assign to the choiceSettingCollectionValue @return DeviceManagementConfigurationChoiceSettingCollectionInstance The DeviceManagementConfigurationChoiceSettingCollectionInstance
setChoiceSettingCollectionValue
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionInstance.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionInstance.php
MIT
public function getScanType() { if (array_key_exists("scanType", $this->_propDict)) { return $this->_propDict["scanType"]; } else { return null; } }
Gets the scanType Scan type either full scan or quick scan @return string|null The scanType
getScanType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WindowsDefenderScanActionResult.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsDefenderScanActionResult.php
MIT
public function setScanType($val) { $this->_propDict["scanType"] = $val; return $this; }
Sets the scanType Scan type either full scan or quick scan @param string $val The value of the scanType @return WindowsDefenderScanActionResult
setScanType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WindowsDefenderScanActionResult.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsDefenderScanActionResult.php
MIT
function serialize(\Sabre\DAV\Server $server, \DOMElement $errorNode) { $error = $errorNode->ownerDocument->createElementNS('DAV:', 'd:valid-resourcetype'); $errorNode->appendChild($error); }
This method allows the exception to include additional information into the WebDAV error response @param \Sabre\DAV\Server $server @param \DOMElement $errorNode @return void
serialize
php
xiebruce/PicUploader
vendor/sabre/dav/lib/DAV/Exception/InvalidResourceType.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Exception/InvalidResourceType.php
MIT
public function getClassifyAs() { if (array_key_exists("classifyAs", $this->_propDict)) { if (is_a($this->_propDict["classifyAs"], "\Beta\Microsoft\Graph\Model\InferenceClassificationType") || is_null($this->_propDict["classifyAs"])) { return $this->_propDict["classifyAs"]; } else { $this->_propDict["classifyAs"] = new InferenceClassificationType($this->_propDict["classifyAs"]); return $this->_propDict["classifyAs"]; } } return null; }
Gets the classifyAs Specifies how incoming messages from a specific sender should always be classified as. Possible values are: focused, other. @return InferenceClassificationType|null The classifyAs
getClassifyAs
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
MIT
public function setClassifyAs($val) { $this->_propDict["classifyAs"] = $val; return $this; }
Sets the classifyAs Specifies how incoming messages from a specific sender should always be classified as. Possible values are: focused, other. @param InferenceClassificationType $val The classifyAs @return InferenceClassificationOverride
setClassifyAs
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
MIT
public function getSenderEmailAddress() { if (array_key_exists("senderEmailAddress", $this->_propDict)) { if (is_a($this->_propDict["senderEmailAddress"], "\Beta\Microsoft\Graph\Model\EmailAddress") || is_null($this->_propDict["senderEmailAddress"])) { return $this->_propDict["senderEmailAddress"]; } else { $this->_propDict["senderEmailAddress"] = new EmailAddress($this->_propDict["senderEmailAddress"]); return $this->_propDict["senderEmailAddress"]; } } return null; }
Gets the senderEmailAddress The email address information of the sender for whom the override is created. @return EmailAddress|null The senderEmailAddress
getSenderEmailAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
MIT
public function setSenderEmailAddress($val) { $this->_propDict["senderEmailAddress"] = $val; return $this; }
Sets the senderEmailAddress The email address information of the sender for whom the override is created. @param EmailAddress $val The senderEmailAddress @return InferenceClassificationOverride
setSenderEmailAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InferenceClassificationOverride.php
MIT
protected function getDocument($record) { $document = new Document(); $document->setData($record); $document->setType($this->type); $document->setIndex($this->index); return $document; }
Convert a log message into an Elastica Document @param array $record Log message @return Document
getDocument
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php
MIT
public function getDaysUntilForcedReboot() { if (array_key_exists("daysUntilForcedReboot", $this->_propDict)) { return $this->_propDict["daysUntilForcedReboot"]; } else { return null; } }
Gets the daysUntilForcedReboot Specifies the number of days after an update is installed, during which the user of the device can control when the device restarts. @return int|null The daysUntilForcedReboot
getDaysUntilForcedReboot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/UserExperienceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/UserExperienceSettings.php
MIT
public function setDaysUntilForcedReboot($val) { $this->_propDict["daysUntilForcedReboot"] = $val; return $this; }
Sets the daysUntilForcedReboot Specifies the number of days after an update is installed, during which the user of the device can control when the device restarts. @param int $val The value of the daysUntilForcedReboot @return UserExperienceSettings
setDaysUntilForcedReboot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/UserExperienceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/UserExperienceSettings.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\ServiceHealthStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new ServiceHealthStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; }
Gets the status Show the overall service health status. Possible values are: serviceOperational, investigating, restoringService, verifyingService, serviceRestored, postIncidentReviewPublished, serviceDegradation, serviceInterruption, extendedRecovery, falsePositive, investigationSuspended, resolved, mitigatedExternal, mitigated, resolvedExternal, confirmed, reported, unknownFutureValue. For more details, see serviceHealthStatus values. @return ServiceHealthStatus|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServiceHealth.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServiceHealth.php
MIT
public function getInitiatorType() { if (array_key_exists("initiatorType", $this->_propDict)) { if (is_a($this->_propDict["initiatorType"], "\Beta\Microsoft\Graph\Model\InitiatorType") || is_null($this->_propDict["initiatorType"])) { return $this->_propDict["initiatorType"]; } else { $this->_propDict["initiatorType"] = new InitiatorType($this->_propDict["initiatorType"]); return $this->_propDict["initiatorType"]; } } return null; }
Gets the initiatorType Type of initiator. Possible values are: user, application, system, unknownFutureValue. @return InitiatorType|null The initiatorType
getInitiatorType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Initiator.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Initiator.php
MIT
public function setInitiatorType($val) { $this->_propDict["initiatorType"] = $val; return $this; }
Sets the initiatorType Type of initiator. Possible values are: user, application, system, unknownFutureValue. @param InitiatorType $val The value to assign to the initiatorType @return Initiator The Initiator
setInitiatorType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Initiator.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Initiator.php
MIT
public function addColumn($column, $columnType, $comment=''){ // $sql = 'ALTER TABLE `'.self::$tableName.'` ADD COLUMN `'.$column.'` '.$columnType.' COMMENT "'.$comment.'" AFTER `mime`'; //sqlite3不支持字段comment和after $sql = 'ALTER TABLE `'.self::$tableName.'` ADD COLUMN `'.$column.'` '.$columnType; return $this->execute($sql); }
addColumn(注意: sqlite3只支持add column, 不支持drop column) @param $column @param $columnType @param $comment @return int|void
addColumn
php
xiebruce/PicUploader
settings/HistoryModel.php
https://github.com/xiebruce/PicUploader/blob/master/settings/HistoryModel.php
MIT
public function getReviewSet() { if (array_key_exists("reviewSet", $this->_propDict)) { if (is_a($this->_propDict["reviewSet"], "\Beta\Microsoft\Graph\Ediscovery\Model\ReviewSet") || is_null($this->_propDict["reviewSet"])) { return $this->_propDict["reviewSet"]; } else { $this->_propDict["reviewSet"] = new ReviewSet($this->_propDict["reviewSet"]); return $this->_propDict["reviewSet"]; } } return null; }
Gets the reviewSet The review set to which items matching the source collection query are added to. @return ReviewSet|null The reviewSet
getReviewSet
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
MIT
public function setReviewSet($val) { $this->_propDict["reviewSet"] = $val; return $this; }
Sets the reviewSet The review set to which items matching the source collection query are added to. @param ReviewSet $val The reviewSet @return AddToReviewSetOperation
setReviewSet
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
MIT
public function getSourceCollection() { if (array_key_exists("sourceCollection", $this->_propDict)) { if (is_a($this->_propDict["sourceCollection"], "\Beta\Microsoft\Graph\Ediscovery\Model\SourceCollection") || is_null($this->_propDict["sourceCollection"])) { return $this->_propDict["sourceCollection"]; } else { $this->_propDict["sourceCollection"] = new SourceCollection($this->_propDict["sourceCollection"]); return $this->_propDict["sourceCollection"]; } } return null; }
Gets the sourceCollection The sourceCollection that items are being added from. @return SourceCollection|null The sourceCollection
getSourceCollection
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
MIT
public function setSourceCollection($val) { $this->_propDict["sourceCollection"] = $val; return $this; }
Sets the sourceCollection The sourceCollection that items are being added from. @param SourceCollection $val The sourceCollection @return AddToReviewSetOperation
setSourceCollection
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/AddToReviewSetOperation.php
MIT
public function getSourceFilter() { if (array_key_exists("sourceFilter", $this->_propDict)) { if (is_a($this->_propDict["sourceFilter"], "\Beta\Microsoft\Graph\Model\AuthenticationSourceFilter") || is_null($this->_propDict["sourceFilter"])) { return $this->_propDict["sourceFilter"]; } else { $this->_propDict["sourceFilter"] = new AuthenticationSourceFilter($this->_propDict["sourceFilter"]); return $this->_propDict["sourceFilter"]; } } return null; }
Gets the sourceFilter Filter based on the source of the authentication that is used to determine whether the listener is evaluated. This is currently limited to evaluations based on application the user is authenticating to. @return AuthenticationSourceFilter|null The sourceFilter
getSourceFilter
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthenticationListener.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthenticationListener.php
MIT
public function setSourceFilter($val) { $this->_propDict["sourceFilter"] = $val; return $this; }
Sets the sourceFilter Filter based on the source of the authentication that is used to determine whether the listener is evaluated. This is currently limited to evaluations based on application the user is authenticating to. @param AuthenticationSourceFilter $val The sourceFilter @return AuthenticationListener
setSourceFilter
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthenticationListener.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthenticationListener.php
MIT
public function getAccountsBlockAddingNonMicrosoftAccountEmail() { if (array_key_exists("accountsBlockAddingNonMicrosoftAccountEmail", $this->_propDict)) { return $this->_propDict["accountsBlockAddingNonMicrosoftAccountEmail"]; } else { return null; } }
Gets the accountsBlockAddingNonMicrosoftAccountEmail Indicates whether or not to Block the user from adding email accounts to the device that are not associated with a Microsoft account. @return bool|null The accountsBlockAddingNonMicrosoftAccountEmail
getAccountsBlockAddingNonMicrosoftAccountEmail
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setAccountsBlockAddingNonMicrosoftAccountEmail($val) { $this->_propDict["accountsBlockAddingNonMicrosoftAccountEmail"] = boolval($val); return $this; }
Sets the accountsBlockAddingNonMicrosoftAccountEmail Indicates whether or not to Block the user from adding email accounts to the device that are not associated with a Microsoft account. @param bool $val The accountsBlockAddingNonMicrosoftAccountEmail @return Windows81GeneralConfiguration
setAccountsBlockAddingNonMicrosoftAccountEmail
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockAutofill() { if (array_key_exists("browserBlockAutofill", $this->_propDict)) { return $this->_propDict["browserBlockAutofill"]; } else { return null; } }
Gets the browserBlockAutofill Indicates whether or not to block auto fill. @return bool|null The browserBlockAutofill
getBrowserBlockAutofill
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockAutofill($val) { $this->_propDict["browserBlockAutofill"] = boolval($val); return $this; }
Sets the browserBlockAutofill Indicates whether or not to block auto fill. @param bool $val The browserBlockAutofill @return Windows81GeneralConfiguration
setBrowserBlockAutofill
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockAutomaticDetectionOfIntranetSites() { if (array_key_exists("browserBlockAutomaticDetectionOfIntranetSites", $this->_propDict)) { return $this->_propDict["browserBlockAutomaticDetectionOfIntranetSites"]; } else { return null; } }
Gets the browserBlockAutomaticDetectionOfIntranetSites Indicates whether or not to block automatic detection of Intranet sites. @return bool|null The browserBlockAutomaticDetectionOfIntranetSites
getBrowserBlockAutomaticDetectionOfIntranetSites
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockAutomaticDetectionOfIntranetSites($val) { $this->_propDict["browserBlockAutomaticDetectionOfIntranetSites"] = boolval($val); return $this; }
Sets the browserBlockAutomaticDetectionOfIntranetSites Indicates whether or not to block automatic detection of Intranet sites. @param bool $val The browserBlockAutomaticDetectionOfIntranetSites @return Windows81GeneralConfiguration
setBrowserBlockAutomaticDetectionOfIntranetSites
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockEnterpriseModeAccess() { if (array_key_exists("browserBlockEnterpriseModeAccess", $this->_propDict)) { return $this->_propDict["browserBlockEnterpriseModeAccess"]; } else { return null; } }
Gets the browserBlockEnterpriseModeAccess Indicates whether or not to block enterprise mode access. @return bool|null The browserBlockEnterpriseModeAccess
getBrowserBlockEnterpriseModeAccess
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockEnterpriseModeAccess($val) { $this->_propDict["browserBlockEnterpriseModeAccess"] = boolval($val); return $this; }
Sets the browserBlockEnterpriseModeAccess Indicates whether or not to block enterprise mode access. @param bool $val The browserBlockEnterpriseModeAccess @return Windows81GeneralConfiguration
setBrowserBlockEnterpriseModeAccess
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockJavaScript() { if (array_key_exists("browserBlockJavaScript", $this->_propDict)) { return $this->_propDict["browserBlockJavaScript"]; } else { return null; } }
Gets the browserBlockJavaScript Indicates whether or not to Block the user from using JavaScript. @return bool|null The browserBlockJavaScript
getBrowserBlockJavaScript
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockJavaScript($val) { $this->_propDict["browserBlockJavaScript"] = boolval($val); return $this; }
Sets the browserBlockJavaScript Indicates whether or not to Block the user from using JavaScript. @param bool $val The browserBlockJavaScript @return Windows81GeneralConfiguration
setBrowserBlockJavaScript
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockPlugins() { if (array_key_exists("browserBlockPlugins", $this->_propDict)) { return $this->_propDict["browserBlockPlugins"]; } else { return null; } }
Gets the browserBlockPlugins Indicates whether or not to block plug-ins. @return bool|null The browserBlockPlugins
getBrowserBlockPlugins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockPlugins($val) { $this->_propDict["browserBlockPlugins"] = boolval($val); return $this; }
Sets the browserBlockPlugins Indicates whether or not to block plug-ins. @param bool $val The browserBlockPlugins @return Windows81GeneralConfiguration
setBrowserBlockPlugins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockPopups() { if (array_key_exists("browserBlockPopups", $this->_propDict)) { return $this->_propDict["browserBlockPopups"]; } else { return null; } }
Gets the browserBlockPopups Indicates whether or not to block popups. @return bool|null The browserBlockPopups
getBrowserBlockPopups
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockPopups($val) { $this->_propDict["browserBlockPopups"] = boolval($val); return $this; }
Sets the browserBlockPopups Indicates whether or not to block popups. @param bool $val The browserBlockPopups @return Windows81GeneralConfiguration
setBrowserBlockPopups
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockSendingDoNotTrackHeader() { if (array_key_exists("browserBlockSendingDoNotTrackHeader", $this->_propDict)) { return $this->_propDict["browserBlockSendingDoNotTrackHeader"]; } else { return null; } }
Gets the browserBlockSendingDoNotTrackHeader Indicates whether or not to Block the user from sending the do not track header. @return bool|null The browserBlockSendingDoNotTrackHeader
getBrowserBlockSendingDoNotTrackHeader
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockSendingDoNotTrackHeader($val) { $this->_propDict["browserBlockSendingDoNotTrackHeader"] = boolval($val); return $this; }
Sets the browserBlockSendingDoNotTrackHeader Indicates whether or not to Block the user from sending the do not track header. @param bool $val The browserBlockSendingDoNotTrackHeader @return Windows81GeneralConfiguration
setBrowserBlockSendingDoNotTrackHeader
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserBlockSingleWordEntryOnIntranetSites() { if (array_key_exists("browserBlockSingleWordEntryOnIntranetSites", $this->_propDict)) { return $this->_propDict["browserBlockSingleWordEntryOnIntranetSites"]; } else { return null; } }
Gets the browserBlockSingleWordEntryOnIntranetSites Indicates whether or not to block a single word entry on Intranet sites. @return bool|null The browserBlockSingleWordEntryOnIntranetSites
getBrowserBlockSingleWordEntryOnIntranetSites
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserBlockSingleWordEntryOnIntranetSites($val) { $this->_propDict["browserBlockSingleWordEntryOnIntranetSites"] = boolval($val); return $this; }
Sets the browserBlockSingleWordEntryOnIntranetSites Indicates whether or not to block a single word entry on Intranet sites. @param bool $val The browserBlockSingleWordEntryOnIntranetSites @return Windows81GeneralConfiguration
setBrowserBlockSingleWordEntryOnIntranetSites
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserEnterpriseModeSiteListLocation() { if (array_key_exists("browserEnterpriseModeSiteListLocation", $this->_propDict)) { return $this->_propDict["browserEnterpriseModeSiteListLocation"]; } else { return null; } }
Gets the browserEnterpriseModeSiteListLocation The enterprise mode site list location. Could be a local file, local network or http location. @return string|null The browserEnterpriseModeSiteListLocation
getBrowserEnterpriseModeSiteListLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserEnterpriseModeSiteListLocation($val) { $this->_propDict["browserEnterpriseModeSiteListLocation"] = $val; return $this; }
Sets the browserEnterpriseModeSiteListLocation The enterprise mode site list location. Could be a local file, local network or http location. @param string $val The browserEnterpriseModeSiteListLocation @return Windows81GeneralConfiguration
setBrowserEnterpriseModeSiteListLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserInternetSecurityLevel() { if (array_key_exists("browserInternetSecurityLevel", $this->_propDict)) { if (is_a($this->_propDict["browserInternetSecurityLevel"], "\Beta\Microsoft\Graph\Model\InternetSiteSecurityLevel") || is_null($this->_propDict["browserInternetSecurityLevel"])) { return $this->_propDict["browserInternetSecurityLevel"]; } else { $this->_propDict["browserInternetSecurityLevel"] = new InternetSiteSecurityLevel($this->_propDict["browserInternetSecurityLevel"]); return $this->_propDict["browserInternetSecurityLevel"]; } } return null; }
Gets the browserInternetSecurityLevel The internet security level. Possible values are: userDefined, medium, mediumHigh, high. @return InternetSiteSecurityLevel|null The browserInternetSecurityLevel
getBrowserInternetSecurityLevel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserInternetSecurityLevel($val) { $this->_propDict["browserInternetSecurityLevel"] = $val; return $this; }
Sets the browserInternetSecurityLevel The internet security level. Possible values are: userDefined, medium, mediumHigh, high. @param InternetSiteSecurityLevel $val The browserInternetSecurityLevel @return Windows81GeneralConfiguration
setBrowserInternetSecurityLevel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserIntranetSecurityLevel() { if (array_key_exists("browserIntranetSecurityLevel", $this->_propDict)) { if (is_a($this->_propDict["browserIntranetSecurityLevel"], "\Beta\Microsoft\Graph\Model\SiteSecurityLevel") || is_null($this->_propDict["browserIntranetSecurityLevel"])) { return $this->_propDict["browserIntranetSecurityLevel"]; } else { $this->_propDict["browserIntranetSecurityLevel"] = new SiteSecurityLevel($this->_propDict["browserIntranetSecurityLevel"]); return $this->_propDict["browserIntranetSecurityLevel"]; } } return null; }
Gets the browserIntranetSecurityLevel The Intranet security level. Possible values are: userDefined, low, mediumLow, medium, mediumHigh, high. @return SiteSecurityLevel|null The browserIntranetSecurityLevel
getBrowserIntranetSecurityLevel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserIntranetSecurityLevel($val) { $this->_propDict["browserIntranetSecurityLevel"] = $val; return $this; }
Sets the browserIntranetSecurityLevel The Intranet security level. Possible values are: userDefined, low, mediumLow, medium, mediumHigh, high. @param SiteSecurityLevel $val The browserIntranetSecurityLevel @return Windows81GeneralConfiguration
setBrowserIntranetSecurityLevel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserLoggingReportLocation() { if (array_key_exists("browserLoggingReportLocation", $this->_propDict)) { return $this->_propDict["browserLoggingReportLocation"]; } else { return null; } }
Gets the browserLoggingReportLocation The logging report location. @return string|null The browserLoggingReportLocation
getBrowserLoggingReportLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserLoggingReportLocation($val) { $this->_propDict["browserLoggingReportLocation"] = $val; return $this; }
Sets the browserLoggingReportLocation The logging report location. @param string $val The browserLoggingReportLocation @return Windows81GeneralConfiguration
setBrowserLoggingReportLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserRequireFirewall() { if (array_key_exists("browserRequireFirewall", $this->_propDict)) { return $this->_propDict["browserRequireFirewall"]; } else { return null; } }
Gets the browserRequireFirewall Indicates whether or not to require a firewall. @return bool|null The browserRequireFirewall
getBrowserRequireFirewall
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserRequireFirewall($val) { $this->_propDict["browserRequireFirewall"] = boolval($val); return $this; }
Sets the browserRequireFirewall Indicates whether or not to require a firewall. @param bool $val The browserRequireFirewall @return Windows81GeneralConfiguration
setBrowserRequireFirewall
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserRequireFraudWarning() { if (array_key_exists("browserRequireFraudWarning", $this->_propDict)) { return $this->_propDict["browserRequireFraudWarning"]; } else { return null; } }
Gets the browserRequireFraudWarning Indicates whether or not to require fraud warning. @return bool|null The browserRequireFraudWarning
getBrowserRequireFraudWarning
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserRequireFraudWarning($val) { $this->_propDict["browserRequireFraudWarning"] = boolval($val); return $this; }
Sets the browserRequireFraudWarning Indicates whether or not to require fraud warning. @param bool $val The browserRequireFraudWarning @return Windows81GeneralConfiguration
setBrowserRequireFraudWarning
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserRequireHighSecurityForRestrictedSites() { if (array_key_exists("browserRequireHighSecurityForRestrictedSites", $this->_propDict)) { return $this->_propDict["browserRequireHighSecurityForRestrictedSites"]; } else { return null; } }
Gets the browserRequireHighSecurityForRestrictedSites Indicates whether or not to require high security for restricted sites. @return bool|null The browserRequireHighSecurityForRestrictedSites
getBrowserRequireHighSecurityForRestrictedSites
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserRequireHighSecurityForRestrictedSites($val) { $this->_propDict["browserRequireHighSecurityForRestrictedSites"] = boolval($val); return $this; }
Sets the browserRequireHighSecurityForRestrictedSites Indicates whether or not to require high security for restricted sites. @param bool $val The browserRequireHighSecurityForRestrictedSites @return Windows81GeneralConfiguration
setBrowserRequireHighSecurityForRestrictedSites
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserRequireSmartScreen() { if (array_key_exists("browserRequireSmartScreen", $this->_propDict)) { return $this->_propDict["browserRequireSmartScreen"]; } else { return null; } }
Gets the browserRequireSmartScreen Indicates whether or not to require the user to use the smart screen filter. @return bool|null The browserRequireSmartScreen
getBrowserRequireSmartScreen
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserRequireSmartScreen($val) { $this->_propDict["browserRequireSmartScreen"] = boolval($val); return $this; }
Sets the browserRequireSmartScreen Indicates whether or not to require the user to use the smart screen filter. @param bool $val The browserRequireSmartScreen @return Windows81GeneralConfiguration
setBrowserRequireSmartScreen
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getBrowserTrustedSitesSecurityLevel() { if (array_key_exists("browserTrustedSitesSecurityLevel", $this->_propDict)) { if (is_a($this->_propDict["browserTrustedSitesSecurityLevel"], "\Beta\Microsoft\Graph\Model\SiteSecurityLevel") || is_null($this->_propDict["browserTrustedSitesSecurityLevel"])) { return $this->_propDict["browserTrustedSitesSecurityLevel"]; } else { $this->_propDict["browserTrustedSitesSecurityLevel"] = new SiteSecurityLevel($this->_propDict["browserTrustedSitesSecurityLevel"]); return $this->_propDict["browserTrustedSitesSecurityLevel"]; } } return null; }
Gets the browserTrustedSitesSecurityLevel The trusted sites security level. Possible values are: userDefined, low, mediumLow, medium, mediumHigh, high. @return SiteSecurityLevel|null The browserTrustedSitesSecurityLevel
getBrowserTrustedSitesSecurityLevel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setBrowserTrustedSitesSecurityLevel($val) { $this->_propDict["browserTrustedSitesSecurityLevel"] = $val; return $this; }
Sets the browserTrustedSitesSecurityLevel The trusted sites security level. Possible values are: userDefined, low, mediumLow, medium, mediumHigh, high. @param SiteSecurityLevel $val The browserTrustedSitesSecurityLevel @return Windows81GeneralConfiguration
setBrowserTrustedSitesSecurityLevel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getDiagnosticsBlockDataSubmission() { if (array_key_exists("diagnosticsBlockDataSubmission", $this->_propDict)) { return $this->_propDict["diagnosticsBlockDataSubmission"]; } else { return null; } }
Gets the diagnosticsBlockDataSubmission Indicates whether or not to block diagnostic data submission. @return bool|null The diagnosticsBlockDataSubmission
getDiagnosticsBlockDataSubmission
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setDiagnosticsBlockDataSubmission($val) { $this->_propDict["diagnosticsBlockDataSubmission"] = boolval($val); return $this; }
Sets the diagnosticsBlockDataSubmission Indicates whether or not to block diagnostic data submission. @param bool $val The diagnosticsBlockDataSubmission @return Windows81GeneralConfiguration
setDiagnosticsBlockDataSubmission
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getMinimumAutoInstallClassification() { if (array_key_exists("minimumAutoInstallClassification", $this->_propDict)) { if (is_a($this->_propDict["minimumAutoInstallClassification"], "\Beta\Microsoft\Graph\Model\UpdateClassification") || is_null($this->_propDict["minimumAutoInstallClassification"])) { return $this->_propDict["minimumAutoInstallClassification"]; } else { $this->_propDict["minimumAutoInstallClassification"] = new UpdateClassification($this->_propDict["minimumAutoInstallClassification"]); return $this->_propDict["minimumAutoInstallClassification"]; } } return null; }
Gets the minimumAutoInstallClassification The minimum update classification to install automatically. Possible values are: userDefined, recommendedAndImportant, important, none. @return UpdateClassification|null The minimumAutoInstallClassification
getMinimumAutoInstallClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setMinimumAutoInstallClassification($val) { $this->_propDict["minimumAutoInstallClassification"] = $val; return $this; }
Sets the minimumAutoInstallClassification The minimum update classification to install automatically. Possible values are: userDefined, recommendedAndImportant, important, none. @param UpdateClassification $val The minimumAutoInstallClassification @return Windows81GeneralConfiguration
setMinimumAutoInstallClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getPasswordBlockPicturePasswordAndPin() { if (array_key_exists("passwordBlockPicturePasswordAndPin", $this->_propDict)) { return $this->_propDict["passwordBlockPicturePasswordAndPin"]; } else { return null; } }
Gets the passwordBlockPicturePasswordAndPin Indicates whether or not to Block the user from using a pictures password and pin. @return bool|null The passwordBlockPicturePasswordAndPin
getPasswordBlockPicturePasswordAndPin
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setPasswordBlockPicturePasswordAndPin($val) { $this->_propDict["passwordBlockPicturePasswordAndPin"] = boolval($val); return $this; }
Sets the passwordBlockPicturePasswordAndPin Indicates whether or not to Block the user from using a pictures password and pin. @param bool $val The passwordBlockPicturePasswordAndPin @return Windows81GeneralConfiguration
setPasswordBlockPicturePasswordAndPin
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getUpdatesMinimumAutoInstallClassification() { if (array_key_exists("updatesMinimumAutoInstallClassification", $this->_propDict)) { if (is_a($this->_propDict["updatesMinimumAutoInstallClassification"], "\Beta\Microsoft\Graph\Model\UpdateClassification") || is_null($this->_propDict["updatesMinimumAutoInstallClassification"])) { return $this->_propDict["updatesMinimumAutoInstallClassification"]; } else { $this->_propDict["updatesMinimumAutoInstallClassification"] = new UpdateClassification($this->_propDict["updatesMinimumAutoInstallClassification"]); return $this->_propDict["updatesMinimumAutoInstallClassification"]; } } return null; }
Gets the updatesMinimumAutoInstallClassification The minimum update classification to install automatically. Possible values are: userDefined, recommendedAndImportant, important, none. @return UpdateClassification|null The updatesMinimumAutoInstallClassification
getUpdatesMinimumAutoInstallClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setUpdatesMinimumAutoInstallClassification($val) { $this->_propDict["updatesMinimumAutoInstallClassification"] = $val; return $this; }
Sets the updatesMinimumAutoInstallClassification The minimum update classification to install automatically. Possible values are: userDefined, recommendedAndImportant, important, none. @param UpdateClassification $val The updatesMinimumAutoInstallClassification @return Windows81GeneralConfiguration
setUpdatesMinimumAutoInstallClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getUpdatesRequireAutomaticUpdates() { if (array_key_exists("updatesRequireAutomaticUpdates", $this->_propDict)) { return $this->_propDict["updatesRequireAutomaticUpdates"]; } else { return null; } }
Gets the updatesRequireAutomaticUpdates Indicates whether or not to require automatic updates. @return bool|null The updatesRequireAutomaticUpdates
getUpdatesRequireAutomaticUpdates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setUpdatesRequireAutomaticUpdates($val) { $this->_propDict["updatesRequireAutomaticUpdates"] = boolval($val); return $this; }
Sets the updatesRequireAutomaticUpdates Indicates whether or not to require automatic updates. @param bool $val The updatesRequireAutomaticUpdates @return Windows81GeneralConfiguration
setUpdatesRequireAutomaticUpdates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function getUserAccountControlSettings() { if (array_key_exists("userAccountControlSettings", $this->_propDict)) { if (is_a($this->_propDict["userAccountControlSettings"], "\Beta\Microsoft\Graph\Model\WindowsUserAccountControlSettings") || is_null($this->_propDict["userAccountControlSettings"])) { return $this->_propDict["userAccountControlSettings"]; } else { $this->_propDict["userAccountControlSettings"] = new WindowsUserAccountControlSettings($this->_propDict["userAccountControlSettings"]); return $this->_propDict["userAccountControlSettings"]; } } return null; }
Gets the userAccountControlSettings The user account control settings. Possible values are: userDefined, alwaysNotify, notifyOnAppChanges, notifyOnAppChangesWithoutDimming, neverNotify. @return WindowsUserAccountControlSettings|null The userAccountControlSettings
getUserAccountControlSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT
public function setUserAccountControlSettings($val) { $this->_propDict["userAccountControlSettings"] = $val; return $this; }
Sets the userAccountControlSettings The user account control settings. Possible values are: userDefined, alwaysNotify, notifyOnAppChanges, notifyOnAppChangesWithoutDimming, neverNotify. @param WindowsUserAccountControlSettings $val The userAccountControlSettings @return Windows81GeneralConfiguration
setUserAccountControlSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81GeneralConfiguration.php
MIT