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 getMaxDeviceOccurrence()
{
if (array_key_exists("maxDeviceOccurrence", $this->_propDict)) {
return $this->_propDict["maxDeviceOccurrence"];
} else {
return null;
}
} | Gets the maxDeviceOccurrence
Maximum times setting can be set on device.
@return int|null The maxDeviceOccurrence | getMaxDeviceOccurrence | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | MIT |
public function setMaxDeviceOccurrence($val)
{
$this->_propDict["maxDeviceOccurrence"] = $val;
return $this;
} | Sets the maxDeviceOccurrence
Maximum times setting can be set on device.
@param int $val The value of the maxDeviceOccurrence
@return DeviceManagementConfigurationSettingOccurrence | setMaxDeviceOccurrence | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | MIT |
public function getMinDeviceOccurrence()
{
if (array_key_exists("minDeviceOccurrence", $this->_propDict)) {
return $this->_propDict["minDeviceOccurrence"];
} else {
return null;
}
} | Gets the minDeviceOccurrence
Minimum times setting can be set on device. A MinDeviceOccurrence of 0 means setting is optional
@return int|null The minDeviceOccurrence | getMinDeviceOccurrence | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | MIT |
public function setMinDeviceOccurrence($val)
{
$this->_propDict["minDeviceOccurrence"] = $val;
return $this;
} | Sets the minDeviceOccurrence
Minimum times setting can be set on device. A MinDeviceOccurrence of 0 means setting is optional
@param int $val The value of the minDeviceOccurrence
@return DeviceManagementConfigurationSettingOccurrence | setMinDeviceOccurrence | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingOccurrence.php | MIT |
public function getMeetingChatEnabled()
{
if (array_key_exists("meetingChatEnabled", $this->_propDict)) {
return $this->_propDict["meetingChatEnabled"];
} else {
return null;
}
} | Gets the meetingChatEnabled
Represents whether the meeting chat is enabled or not.
@return bool|null The meetingChatEnabled | getMeetingChatEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | MIT |
public function setMeetingChatEnabled($val)
{
$this->_propDict["meetingChatEnabled"] = $val;
return $this;
} | Sets the meetingChatEnabled
Represents whether the meeting chat is enabled or not.
@param bool $val The value of the meetingChatEnabled
@return MeetingPolicyUpdatedEventMessageDetail | setMeetingChatEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | MIT |
public function getMeetingChatId()
{
if (array_key_exists("meetingChatId", $this->_propDict)) {
return $this->_propDict["meetingChatId"];
} else {
return null;
}
} | Gets the meetingChatId
Unique identifier of the meeting chat.
@return string|null The meetingChatId | getMeetingChatId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | MIT |
public function setMeetingChatId($val)
{
$this->_propDict["meetingChatId"] = $val;
return $this;
} | Sets the meetingChatId
Unique identifier of the meeting chat.
@param string $val The value of the meetingChatId
@return MeetingPolicyUpdatedEventMessageDetail | setMeetingChatId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MeetingPolicyUpdatedEventMessageDetail.php | MIT |
protected function getAvailableHandle()
{
// Grab a handle that is not claimed
foreach ($this->handles as $h) {
if (!in_array($h, $this->groups, true)) {
return $h;
}
}
// All are claimed, so create one
$handle = new CurlMulti($this->selectTimeout);
$handle->setEventDispatcher($this->getEventDispatcher());
$this->handles[] = $handle;
return $handle;
} | Get an existing available CurlMulti handle or create a new one
@return CurlMulti | getAvailableHandle | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php | MIT |
protected function cleanupHandles()
{
if ($diff = max(0, count($this->handles) - $this->maxHandles)) {
for ($i = count($this->handles) - 1; $i > 0 && $diff > 0; $i--) {
if (!count($this->handles[$i])) {
unset($this->handles[$i]);
$diff--;
}
}
$this->handles = array_values($this->handles);
}
} | Trims down unused CurlMulti handles to limit the number of open connections | cleanupHandles | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php | MIT |
public function getActionState()
{
if (array_key_exists("actionState", $this->_propDict)) {
if (is_a($this->_propDict["actionState"], "\Beta\Microsoft\Graph\Model\ActionState") || is_null($this->_propDict["actionState"])) {
return $this->_propDict["actionState"];
} else {
$this->_propDict["actionState"] = new ActionState($this->_propDict["actionState"]);
return $this->_propDict["actionState"];
}
}
return null;
} | Gets the actionState
State of the action. Possible values are: none, pending, canceled, active, done, failed, notSupported.
@return ActionState|null The actionState | getActionState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceActionResult.php | MIT |
public function setActionState($val)
{
$this->_propDict["actionState"] = $val;
return $this;
} | Sets the actionState
State of the action. Possible values are: none, pending, canceled, active, done, failed, notSupported.
@param ActionState $val The value to assign to the actionState
@return DeviceActionResult The DeviceActionResult | setActionState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceActionResult.php | MIT |
public function getFrequencyInHours()
{
if (array_key_exists("frequencyInHours", $this->_propDict)) {
return $this->_propDict["frequencyInHours"];
} else {
return null;
}
} | Gets the frequencyInHours
The time interval in hours to take snapshots (restore points) of a Cloud PC automatically. Possible values are 4, 6, 12, 16, and 24. The default frequency is 12 hours.
@return int|null The frequencyInHours | getFrequencyInHours | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | MIT |
public function setFrequencyInHours($val)
{
$this->_propDict["frequencyInHours"] = $val;
return $this;
} | Sets the frequencyInHours
The time interval in hours to take snapshots (restore points) of a Cloud PC automatically. Possible values are 4, 6, 12, 16, and 24. The default frequency is 12 hours.
@param int $val The value of the frequencyInHours
@return CloudPcRestorePointSetting | setFrequencyInHours | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | MIT |
public function getUserRestoreEnabled()
{
if (array_key_exists("userRestoreEnabled", $this->_propDict)) {
return $this->_propDict["userRestoreEnabled"];
} else {
return null;
}
} | Gets the userRestoreEnabled
If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users cannot use snapshots to restore the Cloud PC.
@return bool|null The userRestoreEnabled | getUserRestoreEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | MIT |
public function setUserRestoreEnabled($val)
{
$this->_propDict["userRestoreEnabled"] = $val;
return $this;
} | Sets the userRestoreEnabled
If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users cannot use snapshots to restore the Cloud PC.
@param bool $val The value of the userRestoreEnabled
@return CloudPcRestorePointSetting | setUserRestoreEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CloudPcRestorePointSetting.php | MIT |
public function setBlackAndWhitePageCount($val)
{
$this->_propDict["blackAndWhitePageCount"] = $val;
return $this;
} | Sets the blackAndWhitePageCount
The number of black and white pages that were printed. Read-only.
@param int $val The value of the blackAndWhitePageCount
@return ArchivedPrintJob | setBlackAndWhitePageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function getColorPageCount()
{
if (array_key_exists("colorPageCount", $this->_propDict)) {
return $this->_propDict["colorPageCount"];
} else {
return null;
}
} | Gets the colorPageCount
The number of color pages that were printed. Read-only.
@return int|null The colorPageCount | getColorPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function setColorPageCount($val)
{
$this->_propDict["colorPageCount"] = $val;
return $this;
} | Sets the colorPageCount
The number of color pages that were printed. Read-only.
@param int $val The value of the colorPageCount
@return ArchivedPrintJob | setColorPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function getDuplexPageCount()
{
if (array_key_exists("duplexPageCount", $this->_propDict)) {
return $this->_propDict["duplexPageCount"];
} else {
return null;
}
} | Gets the duplexPageCount
The number of duplex (double-sided) pages that were printed. Read-only.
@return int|null The duplexPageCount | getDuplexPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function setDuplexPageCount($val)
{
$this->_propDict["duplexPageCount"] = $val;
return $this;
} | Sets the duplexPageCount
The number of duplex (double-sided) pages that were printed. Read-only.
@param int $val The value of the duplexPageCount
@return ArchivedPrintJob | setDuplexPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function getPageCount()
{
if (array_key_exists("pageCount", $this->_propDict)) {
return $this->_propDict["pageCount"];
} else {
return null;
}
} | Gets the pageCount
The total number of pages that were printed. Read-only.
@return int|null The pageCount | getPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function setPageCount($val)
{
$this->_propDict["pageCount"] = $val;
return $this;
} | Sets the pageCount
The total number of pages that were printed. Read-only.
@param int $val The value of the pageCount
@return ArchivedPrintJob | setPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function getSimplexPageCount()
{
if (array_key_exists("simplexPageCount", $this->_propDict)) {
return $this->_propDict["simplexPageCount"];
} else {
return null;
}
} | Gets the simplexPageCount
The number of simplex (single-sided) pages that were printed. Read-only.
@return int|null The simplexPageCount | getSimplexPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function setSimplexPageCount($val)
{
$this->_propDict["simplexPageCount"] = $val;
return $this;
} | Sets the simplexPageCount
The number of simplex (single-sided) pages that were printed. Read-only.
@param int $val The value of the simplexPageCount
@return ArchivedPrintJob | setSimplexPageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ArchivedPrintJob.php | MIT |
public function getActionAfterRetentionPeriod()
{
if (array_key_exists("actionAfterRetentionPeriod", $this->_propDict)) {
if (is_a($this->_propDict["actionAfterRetentionPeriod"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\ActionAfterRetentionPeriod") || is_null($this->_propDict["actionAfterRetentionPeriod"])) {
return $this->_propDict["actionAfterRetentionPeriod"];
} else {
$this->_propDict["actionAfterRetentionPeriod"] = new ActionAfterRetentionPeriod($this->_propDict["actionAfterRetentionPeriod"]);
return $this->_propDict["actionAfterRetentionPeriod"];
}
}
return null;
} | Gets the actionAfterRetentionPeriod
Specifies the action to take on a document with this label applied during the retention period. The possible values are: none, delete, startDispositionReview, unknownFutureValue.
@return ActionAfterRetentionPeriod|null The actionAfterRetentionPeriod | getActionAfterRetentionPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setActionAfterRetentionPeriod($val)
{
$this->_propDict["actionAfterRetentionPeriod"] = $val;
return $this;
} | Sets the actionAfterRetentionPeriod
Specifies the action to take on a document with this label applied during the retention period. The possible values are: none, delete, startDispositionReview, unknownFutureValue.
@param ActionAfterRetentionPeriod $val The actionAfterRetentionPeriod
@return RetentionLabel | setActionAfterRetentionPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getBehaviorDuringRetentionPeriod()
{
if (array_key_exists("behaviorDuringRetentionPeriod", $this->_propDict)) {
if (is_a($this->_propDict["behaviorDuringRetentionPeriod"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\BehaviorDuringRetentionPeriod") || is_null($this->_propDict["behaviorDuringRetentionPeriod"])) {
return $this->_propDict["behaviorDuringRetentionPeriod"];
} else {
$this->_propDict["behaviorDuringRetentionPeriod"] = new BehaviorDuringRetentionPeriod($this->_propDict["behaviorDuringRetentionPeriod"]);
return $this->_propDict["behaviorDuringRetentionPeriod"];
}
}
return null;
} | Gets the behaviorDuringRetentionPeriod
Specifies how the behavior of a document with this label should be during the retention period. The possible values are: doNotRetain, retain, retainAsRecord, retainAsRegulatoryRecord, unknownFutureValue.
@return BehaviorDuringRetentionPeriod|null The behaviorDuringRetentionPeriod | getBehaviorDuringRetentionPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setBehaviorDuringRetentionPeriod($val)
{
$this->_propDict["behaviorDuringRetentionPeriod"] = $val;
return $this;
} | Sets the behaviorDuringRetentionPeriod
Specifies how the behavior of a document with this label should be during the retention period. The possible values are: doNotRetain, retain, retainAsRecord, retainAsRegulatoryRecord, unknownFutureValue.
@param BehaviorDuringRetentionPeriod $val The behaviorDuringRetentionPeriod
@return RetentionLabel | setBehaviorDuringRetentionPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getDefaultRecordBehavior()
{
if (array_key_exists("defaultRecordBehavior", $this->_propDict)) {
if (is_a($this->_propDict["defaultRecordBehavior"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\DefaultRecordBehavior") || is_null($this->_propDict["defaultRecordBehavior"])) {
return $this->_propDict["defaultRecordBehavior"];
} else {
$this->_propDict["defaultRecordBehavior"] = new DefaultRecordBehavior($this->_propDict["defaultRecordBehavior"]);
return $this->_propDict["defaultRecordBehavior"];
}
}
return null;
} | Gets the defaultRecordBehavior
Specifies the locked or unlocked state of a record label when it is created.The possible values are: startLocked, startUnlocked, unknownFutureValue.
@return DefaultRecordBehavior|null The defaultRecordBehavior | getDefaultRecordBehavior | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setDefaultRecordBehavior($val)
{
$this->_propDict["defaultRecordBehavior"] = $val;
return $this;
} | Sets the defaultRecordBehavior
Specifies the locked or unlocked state of a record label when it is created.The possible values are: startLocked, startUnlocked, unknownFutureValue.
@param DefaultRecordBehavior $val The defaultRecordBehavior
@return RetentionLabel | setDefaultRecordBehavior | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getDescriptionForUsers()
{
if (array_key_exists("descriptionForUsers", $this->_propDict)) {
return $this->_propDict["descriptionForUsers"];
} else {
return null;
}
} | Gets the descriptionForUsers
Provides the label information for the user. Optional.
@return string|null The descriptionForUsers | getDescriptionForUsers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setDescriptionForUsers($val)
{
$this->_propDict["descriptionForUsers"] = $val;
return $this;
} | Sets the descriptionForUsers
Provides the label information for the user. Optional.
@param string $val The descriptionForUsers
@return RetentionLabel | setDescriptionForUsers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getIsInUse()
{
if (array_key_exists("isInUse", $this->_propDict)) {
return $this->_propDict["isInUse"];
} else {
return null;
}
} | Gets the isInUse
Specifies whether the label is currently being used.
@return bool|null The isInUse | getIsInUse | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setIsInUse($val)
{
$this->_propDict["isInUse"] = boolval($val);
return $this;
} | Sets the isInUse
Specifies whether the label is currently being used.
@param bool $val The isInUse
@return RetentionLabel | setIsInUse | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getLabelToBeApplied()
{
if (array_key_exists("labelToBeApplied", $this->_propDict)) {
return $this->_propDict["labelToBeApplied"];
} else {
return null;
}
} | Gets the labelToBeApplied
Specifies the replacement label to be applied automatically after the retention period of the current label ends.
@return string|null The labelToBeApplied | getLabelToBeApplied | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setLabelToBeApplied($val)
{
$this->_propDict["labelToBeApplied"] = $val;
return $this;
} | Sets the labelToBeApplied
Specifies the replacement label to be applied automatically after the retention period of the current label ends.
@param string $val The labelToBeApplied
@return RetentionLabel | setLabelToBeApplied | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getRetentionDuration()
{
if (array_key_exists("retentionDuration", $this->_propDict)) {
if (is_a($this->_propDict["retentionDuration"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\RetentionDuration") || is_null($this->_propDict["retentionDuration"])) {
return $this->_propDict["retentionDuration"];
} else {
$this->_propDict["retentionDuration"] = new RetentionDuration($this->_propDict["retentionDuration"]);
return $this->_propDict["retentionDuration"];
}
}
return null;
} | Gets the retentionDuration
Specifies the number of days to retain the content.
@return RetentionDuration|null The retentionDuration | getRetentionDuration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setRetentionDuration($val)
{
$this->_propDict["retentionDuration"] = $val;
return $this;
} | Sets the retentionDuration
Specifies the number of days to retain the content.
@param RetentionDuration $val The retentionDuration
@return RetentionLabel | setRetentionDuration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getRetentionTrigger()
{
if (array_key_exists("retentionTrigger", $this->_propDict)) {
if (is_a($this->_propDict["retentionTrigger"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\RetentionTrigger") || is_null($this->_propDict["retentionTrigger"])) {
return $this->_propDict["retentionTrigger"];
} else {
$this->_propDict["retentionTrigger"] = new RetentionTrigger($this->_propDict["retentionTrigger"]);
return $this->_propDict["retentionTrigger"];
}
}
return null;
} | Gets the retentionTrigger
Specifies whether the retention duration is calculated from the content creation date, labeled date, or last modification date. The possible values are: dateLabeled, dateCreated, dateModified, dateOfEvent, unknownFutureValue.
@return RetentionTrigger|null The retentionTrigger | getRetentionTrigger | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setRetentionTrigger($val)
{
$this->_propDict["retentionTrigger"] = $val;
return $this;
} | Sets the retentionTrigger
Specifies whether the retention duration is calculated from the content creation date, labeled date, or last modification date. The possible values are: dateLabeled, dateCreated, dateModified, dateOfEvent, unknownFutureValue.
@param RetentionTrigger $val The retentionTrigger
@return RetentionLabel | setRetentionTrigger | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getDispositionReviewStages()
{
if (array_key_exists("dispositionReviewStages", $this->_propDict)) {
return $this->_propDict["dispositionReviewStages"];
} else {
return null;
}
} | Gets the dispositionReviewStages
Review stages during which reviewers are notified to determine whether a document must be deleted or retained.
@return array|null The dispositionReviewStages | getDispositionReviewStages | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function setDispositionReviewStages($val)
{
$this->_propDict["dispositionReviewStages"] = $val;
return $this;
} | Sets the dispositionReviewStages
Review stages during which reviewers are notified to determine whether a document must be deleted or retained.
@param DispositionReviewStage[] $val The dispositionReviewStages
@return RetentionLabel | setDispositionReviewStages | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/RetentionLabel.php | MIT |
public function getAggregatedEventDateTime()
{
if (array_key_exists("aggregatedEventDateTime", $this->_propDict)) {
if (is_a($this->_propDict["aggregatedEventDateTime"], "\DateTime") || is_null($this->_propDict["aggregatedEventDateTime"])) {
return $this->_propDict["aggregatedEventDateTime"];
} else {
$this->_propDict["aggregatedEventDateTime"] = new \DateTime($this->_propDict["aggregatedEventDateTime"]);
return $this->_propDict["aggregatedEventDateTime"];
}
}
return null;
} | Gets the aggregatedEventDateTime
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@return \DateTime|null The aggregatedEventDateTime | getAggregatedEventDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function setAggregatedEventDateTime($val)
{
$this->_propDict["aggregatedEventDateTime"] = $val;
return $this;
} | Sets the aggregatedEventDateTime
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@param \DateTime $val The aggregatedEventDateTime
@return ApplicationSignInDetailedSummary | setAggregatedEventDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function getSignInCount()
{
if (array_key_exists("signInCount", $this->_propDict)) {
return $this->_propDict["signInCount"];
} else {
return null;
}
} | Gets the signInCount
Count of sign-ins made by the application.
@return int|null The signInCount | getSignInCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function setSignInCount($val)
{
$this->_propDict["signInCount"] = intval($val);
return $this;
} | Sets the signInCount
Count of sign-ins made by the application.
@param int $val The signInCount
@return ApplicationSignInDetailedSummary | setSignInCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\SignInStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new SignInStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Details of the sign-in status.
@return SignInStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function getAllowAutoFilter()
{
if (array_key_exists("allowAutoFilter", $this->_propDict)) {
return $this->_propDict["allowAutoFilter"];
} else {
return null;
}
} | Gets the allowAutoFilter
Represents the worksheet protection option of allowing using auto filter feature.
@return bool|null The allowAutoFilter | getAllowAutoFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowAutoFilter($val)
{
$this->_propDict["allowAutoFilter"] = $val;
return $this;
} | Sets the allowAutoFilter
Represents the worksheet protection option of allowing using auto filter feature.
@param bool $val The value of the allowAutoFilter
@return WorkbookWorksheetProtectionOptions | setAllowAutoFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowDeleteColumns()
{
if (array_key_exists("allowDeleteColumns", $this->_propDict)) {
return $this->_propDict["allowDeleteColumns"];
} else {
return null;
}
} | Gets the allowDeleteColumns
Represents the worksheet protection option of allowing deleting columns.
@return bool|null The allowDeleteColumns | getAllowDeleteColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowDeleteColumns($val)
{
$this->_propDict["allowDeleteColumns"] = $val;
return $this;
} | Sets the allowDeleteColumns
Represents the worksheet protection option of allowing deleting columns.
@param bool $val The value of the allowDeleteColumns
@return WorkbookWorksheetProtectionOptions | setAllowDeleteColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowDeleteRows()
{
if (array_key_exists("allowDeleteRows", $this->_propDict)) {
return $this->_propDict["allowDeleteRows"];
} else {
return null;
}
} | Gets the allowDeleteRows
Represents the worksheet protection option of allowing deleting rows.
@return bool|null The allowDeleteRows | getAllowDeleteRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowDeleteRows($val)
{
$this->_propDict["allowDeleteRows"] = $val;
return $this;
} | Sets the allowDeleteRows
Represents the worksheet protection option of allowing deleting rows.
@param bool $val The value of the allowDeleteRows
@return WorkbookWorksheetProtectionOptions | setAllowDeleteRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowFormatCells()
{
if (array_key_exists("allowFormatCells", $this->_propDict)) {
return $this->_propDict["allowFormatCells"];
} else {
return null;
}
} | Gets the allowFormatCells
Represents the worksheet protection option of allowing formatting cells.
@return bool|null The allowFormatCells | getAllowFormatCells | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowFormatCells($val)
{
$this->_propDict["allowFormatCells"] = $val;
return $this;
} | Sets the allowFormatCells
Represents the worksheet protection option of allowing formatting cells.
@param bool $val The value of the allowFormatCells
@return WorkbookWorksheetProtectionOptions | setAllowFormatCells | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowFormatColumns()
{
if (array_key_exists("allowFormatColumns", $this->_propDict)) {
return $this->_propDict["allowFormatColumns"];
} else {
return null;
}
} | Gets the allowFormatColumns
Represents the worksheet protection option of allowing formatting columns.
@return bool|null The allowFormatColumns | getAllowFormatColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowFormatColumns($val)
{
$this->_propDict["allowFormatColumns"] = $val;
return $this;
} | Sets the allowFormatColumns
Represents the worksheet protection option of allowing formatting columns.
@param bool $val The value of the allowFormatColumns
@return WorkbookWorksheetProtectionOptions | setAllowFormatColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowFormatRows()
{
if (array_key_exists("allowFormatRows", $this->_propDict)) {
return $this->_propDict["allowFormatRows"];
} else {
return null;
}
} | Gets the allowFormatRows
Represents the worksheet protection option of allowing formatting rows.
@return bool|null The allowFormatRows | getAllowFormatRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowFormatRows($val)
{
$this->_propDict["allowFormatRows"] = $val;
return $this;
} | Sets the allowFormatRows
Represents the worksheet protection option of allowing formatting rows.
@param bool $val The value of the allowFormatRows
@return WorkbookWorksheetProtectionOptions | setAllowFormatRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowInsertColumns()
{
if (array_key_exists("allowInsertColumns", $this->_propDict)) {
return $this->_propDict["allowInsertColumns"];
} else {
return null;
}
} | Gets the allowInsertColumns
Represents the worksheet protection option of allowing inserting columns.
@return bool|null The allowInsertColumns | getAllowInsertColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowInsertColumns($val)
{
$this->_propDict["allowInsertColumns"] = $val;
return $this;
} | Sets the allowInsertColumns
Represents the worksheet protection option of allowing inserting columns.
@param bool $val The value of the allowInsertColumns
@return WorkbookWorksheetProtectionOptions | setAllowInsertColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowInsertHyperlinks()
{
if (array_key_exists("allowInsertHyperlinks", $this->_propDict)) {
return $this->_propDict["allowInsertHyperlinks"];
} else {
return null;
}
} | Gets the allowInsertHyperlinks
Represents the worksheet protection option of allowing inserting hyperlinks.
@return bool|null The allowInsertHyperlinks | getAllowInsertHyperlinks | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowInsertHyperlinks($val)
{
$this->_propDict["allowInsertHyperlinks"] = $val;
return $this;
} | Sets the allowInsertHyperlinks
Represents the worksheet protection option of allowing inserting hyperlinks.
@param bool $val The value of the allowInsertHyperlinks
@return WorkbookWorksheetProtectionOptions | setAllowInsertHyperlinks | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowInsertRows()
{
if (array_key_exists("allowInsertRows", $this->_propDict)) {
return $this->_propDict["allowInsertRows"];
} else {
return null;
}
} | Gets the allowInsertRows
Represents the worksheet protection option of allowing inserting rows.
@return bool|null The allowInsertRows | getAllowInsertRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowInsertRows($val)
{
$this->_propDict["allowInsertRows"] = $val;
return $this;
} | Sets the allowInsertRows
Represents the worksheet protection option of allowing inserting rows.
@param bool $val The value of the allowInsertRows
@return WorkbookWorksheetProtectionOptions | setAllowInsertRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowPivotTables()
{
if (array_key_exists("allowPivotTables", $this->_propDict)) {
return $this->_propDict["allowPivotTables"];
} else {
return null;
}
} | Gets the allowPivotTables
Represents the worksheet protection option of allowing using pivot table feature.
@return bool|null The allowPivotTables | getAllowPivotTables | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowPivotTables($val)
{
$this->_propDict["allowPivotTables"] = $val;
return $this;
} | Sets the allowPivotTables
Represents the worksheet protection option of allowing using pivot table feature.
@param bool $val The value of the allowPivotTables
@return WorkbookWorksheetProtectionOptions | setAllowPivotTables | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowSort()
{
if (array_key_exists("allowSort", $this->_propDict)) {
return $this->_propDict["allowSort"];
} else {
return null;
}
} | Gets the allowSort
Represents the worksheet protection option of allowing using sort feature.
@return bool|null The allowSort | getAllowSort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowSort($val)
{
$this->_propDict["allowSort"] = $val;
return $this;
} | Sets the allowSort
Represents the worksheet protection option of allowing using sort feature.
@param bool $val The value of the allowSort
@return WorkbookWorksheetProtectionOptions | setAllowSort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getKeyIds()
{
if (array_key_exists("keyIds", $this->_propDict)) {
return $this->_propDict["keyIds"];
} else {
return null;
}
} | Gets the keyIds
The unique identifier (GUID) for the key credential associated with the risk detection.
@return array|null The keyIds | getKeyIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setKeyIds($val)
{
$this->_propDict["keyIds"] = $val;
return $this;
} | Sets the keyIds
The unique identifier (GUID) for the key credential associated with the risk detection.
@param string[] $val The keyIds
@return ServicePrincipalRiskDetection | setKeyIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getLocation()
{
if (array_key_exists("location", $this->_propDict)) {
if (is_a($this->_propDict["location"], "\Beta\Microsoft\Graph\Model\SignInLocation") || is_null($this->_propDict["location"])) {
return $this->_propDict["location"];
} else {
$this->_propDict["location"] = new SignInLocation($this->_propDict["location"]);
return $this->_propDict["location"];
}
}
return null;
} | Gets the location
Location from where the sign-in was initiated.
@return SignInLocation|null The location | getLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getServicePrincipalDisplayName()
{
if (array_key_exists("servicePrincipalDisplayName", $this->_propDict)) {
return $this->_propDict["servicePrincipalDisplayName"];
} else {
return null;
}
} | Gets the servicePrincipalDisplayName
The display name for the service principal.
@return string|null The servicePrincipalDisplayName | getServicePrincipalDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setServicePrincipalDisplayName($val)
{
$this->_propDict["servicePrincipalDisplayName"] = $val;
return $this;
} | Sets the servicePrincipalDisplayName
The display name for the service principal.
@param string $val The servicePrincipalDisplayName
@return ServicePrincipalRiskDetection | setServicePrincipalDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getServicePrincipalId()
{
if (array_key_exists("servicePrincipalId", $this->_propDict)) {
return $this->_propDict["servicePrincipalId"];
} else {
return null;
}
} | Gets the servicePrincipalId
The unique identifier for the service principal. Supports $filter (eq).
@return string|null The servicePrincipalId | getServicePrincipalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setServicePrincipalId($val)
{
$this->_propDict["servicePrincipalId"] = $val;
return $this;
} | Sets the servicePrincipalId
The unique identifier for the service principal. Supports $filter (eq).
@param string $val The servicePrincipalId
@return ServicePrincipalRiskDetection | setServicePrincipalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
function __construct(Backend\BackendInterface $authBackend = null) {
if (!is_null($authBackend)) {
$this->addBackend($authBackend);
}
} | Creates the authentication plugin
@param Backend\BackendInterface $authBackend | __construct | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function addBackend(Backend\BackendInterface $authBackend) {
$this->backends[] = $authBackend;
} | Adds an authentication backend to the plugin.
@param Backend\BackendInterface $authBackend
@return void | addBackend | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function initialize(Server $server) {
$server->on('beforeMethod', [$this, 'beforeMethod'], 10);
} | Initializes the plugin. This function is automatically called by the server
@param Server $server
@return void | initialize | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function beforeMethod(RequestInterface $request, ResponseInterface $response) {
if ($this->currentPrincipal) {
// We already have authentication information. This means that the
// event has already fired earlier, and is now likely fired for a
// sub-request.
//
// We don't want to authenticate users twice, so we simply don't do
// anything here. See Issue #700 for additional reasoning.
//
// This is not a perfect solution, but will be fixed once the
// "currently authenticated principal" is information that's not
// not associated with the plugin, but rather per-request.
//
// See issue #580 for more information about that.
return;
}
$authResult = $this->check($request, $response);
if ($authResult[0]) {
// Auth was successful
$this->currentPrincipal = $authResult[1];
$this->loginFailedReasons = null;
return;
}
// If we got here, it means that no authentication backend was
// successful in authenticating the user.
$this->currentPrincipal = null;
$this->loginFailedReasons = $authResult[1];
if ($this->autoRequireLogin) {
$this->challenge($request, $response);
throw new NotAuthenticated(implode(', ', $authResult[1]));
}
} | This method is called before any HTTP method and forces users to be authenticated
@param RequestInterface $request
@param ResponseInterface $response
@return bool | beforeMethod | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
public function getFields()
{
if (array_key_exists("fields", $this->_propDict)) {
if (is_a($this->_propDict["fields"], "\Microsoft\Graph\Model\FieldValueSet") || is_null($this->_propDict["fields"])) {
return $this->_propDict["fields"];
} else {
$this->_propDict["fields"] = new FieldValueSet($this->_propDict["fields"]);
return $this->_propDict["fields"];
}
}
return null;
} | Gets the fields
A collection of the fields and values for this version of the list item.
@return FieldValueSet|null The fields | getFields | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ListItemVersion.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ListItemVersion.php | MIT |
public function getFormat()
{
if (array_key_exists("format", $this->_propDict)) {
if (is_a($this->_propDict["format"], "\Microsoft\Graph\Model\WorkbookChartTitleFormat") || is_null($this->_propDict["format"])) {
return $this->_propDict["format"];
} else {
$this->_propDict["format"] = new WorkbookChartTitleFormat($this->_propDict["format"]);
return $this->_propDict["format"];
}
}
return null;
} | Gets the format
Represents the formatting of a chart title, which includes fill and font formatting. Read-only.
@return WorkbookChartTitleFormat|null The format | getFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function getAuthenticationStrength()
{
if (array_key_exists("authenticationStrength", $this->_propDict)) {
if (is_a($this->_propDict["authenticationStrength"], "\Beta\Microsoft\Graph\Model\AuthenticationStrengthRoot") || is_null($this->_propDict["authenticationStrength"])) {
return $this->_propDict["authenticationStrength"];
} else {
$this->_propDict["authenticationStrength"] = new AuthenticationStrengthRoot($this->_propDict["authenticationStrength"]);
return $this->_propDict["authenticationStrength"];
}
}
return null;
} | Gets the authenticationStrength
Defines the authentication strength policies, valid authentication method combinations, and authentication method mode details that can be required by a conditional access policy.
@return AuthenticationStrengthRoot|null The authenticationStrength | getAuthenticationStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getAuthenticationStrengths()
{
if (array_key_exists("authenticationStrengths", $this->_propDict)) {
if (is_a($this->_propDict["authenticationStrengths"], "\Beta\Microsoft\Graph\Model\AuthenticationStrengthRoot") || is_null($this->_propDict["authenticationStrengths"])) {
return $this->_propDict["authenticationStrengths"];
} else {
$this->_propDict["authenticationStrengths"] = new AuthenticationStrengthRoot($this->_propDict["authenticationStrengths"]);
return $this->_propDict["authenticationStrengths"];
}
}
return null;
} | Gets the authenticationStrengths
@return AuthenticationStrengthRoot|null The authenticationStrengths | getAuthenticationStrengths | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setAuthenticationStrengths($val)
{
$this->_propDict["authenticationStrengths"] = $val;
return $this;
} | Sets the authenticationStrengths
@param AuthenticationStrengthRoot $val The authenticationStrengths
@return ConditionalAccessRoot | setAuthenticationStrengths | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getBccRecipients()
{
if (array_key_exists("bccRecipients", $this->_propDict)) {
return $this->_propDict["bccRecipients"];
} else {
return null;
}
} | Gets the bccRecipients
The Bcc: recipients for the message.
@return array|null The bccRecipients | getBccRecipients | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function setBccRecipients($val)
{
$this->_propDict["bccRecipients"] = $val;
return $this;
} | Sets the bccRecipients
The Bcc: recipients for the message.
@param Recipient[] $val The bccRecipients
@return Message | setBccRecipients | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getConversationId()
{
if (array_key_exists("conversationId", $this->_propDict)) {
return $this->_propDict["conversationId"];
} else {
return null;
}
} | Gets the conversationId
The ID of the conversation the email belongs to.
@return string|null The conversationId | getConversationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function setConversationId($val)
{
$this->_propDict["conversationId"] = $val;
return $this;
} | Sets the conversationId
The ID of the conversation the email belongs to.
@param string $val The conversationId
@return Message | setConversationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getConversationIndex()
{
if (array_key_exists("conversationIndex", $this->_propDict)) {
if (is_a($this->_propDict["conversationIndex"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["conversationIndex"])) {
return $this->_propDict["conversationIndex"];
} else {
$this->_propDict["conversationIndex"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["conversationIndex"]);
return $this->_propDict["conversationIndex"];
}
}
return null;
} | Gets the conversationIndex
Indicates the position of the message within the conversation.
@return \GuzzleHttp\Psr7\Stream|null The conversationIndex | getConversationIndex | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function setConversationIndex($val)
{
$this->_propDict["conversationIndex"] = $val;
return $this;
} | Sets the conversationIndex
Indicates the position of the message within the conversation.
@param \GuzzleHttp\Psr7\Stream $val The conversationIndex
@return Message | setConversationIndex | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getFlag()
{
if (array_key_exists("flag", $this->_propDict)) {
if (is_a($this->_propDict["flag"], "\Microsoft\Graph\Model\FollowupFlag") || is_null($this->_propDict["flag"])) {
return $this->_propDict["flag"];
} else {
$this->_propDict["flag"] = new FollowupFlag($this->_propDict["flag"]);
return $this->_propDict["flag"];
}
}
return null;
} | Gets the flag
The flag value that indicates the status, start date, due date, or completion date for the message.
@return FollowupFlag|null The flag | getFlag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function setFlag($val)
{
$this->_propDict["flag"] = $val;
return $this;
} | Sets the flag
The flag value that indicates the status, start date, due date, or completion date for the message.
@param FollowupFlag $val The flag
@return Message | setFlag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getFrom()
{
if (array_key_exists("from", $this->_propDict)) {
if (is_a($this->_propDict["from"], "\Microsoft\Graph\Model\Recipient") || is_null($this->_propDict["from"])) {
return $this->_propDict["from"];
} else {
$this->_propDict["from"] = new Recipient($this->_propDict["from"]);
return $this->_propDict["from"];
}
}
return null;
} | Gets the from
The owner of the mailbox from which the message is sent. In most cases, this value is the same as the sender property, except for sharing or delegation scenarios. The value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
@return Recipient|null The from | getFrom | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getInferenceClassification()
{
if (array_key_exists("inferenceClassification", $this->_propDict)) {
if (is_a($this->_propDict["inferenceClassification"], "\Microsoft\Graph\Model\InferenceClassificationType") || is_null($this->_propDict["inferenceClassification"])) {
return $this->_propDict["inferenceClassification"];
} else {
$this->_propDict["inferenceClassification"] = new InferenceClassificationType($this->_propDict["inferenceClassification"]);
return $this->_propDict["inferenceClassification"];
}
}
return null;
} | Gets the inferenceClassification
@return InferenceClassificationType|null The inferenceClassification | getInferenceClassification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getInternetMessageHeaders()
{
if (array_key_exists("internetMessageHeaders", $this->_propDict)) {
return $this->_propDict["internetMessageHeaders"];
} else {
return null;
}
} | Gets the internetMessageHeaders
@return array|null The internetMessageHeaders | getInternetMessageHeaders | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function setInternetMessageHeaders($val)
{
$this->_propDict["internetMessageHeaders"] = $val;
return $this;
} | Sets the internetMessageHeaders
@param InternetMessageHeader[] $val The internetMessageHeaders
@return Message | setInternetMessageHeaders | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function getIsDeliveryReceiptRequested()
{
if (array_key_exists("isDeliveryReceiptRequested", $this->_propDict)) {
return $this->_propDict["isDeliveryReceiptRequested"];
} else {
return null;
}
} | Gets the isDeliveryReceiptRequested
@return bool|null The isDeliveryReceiptRequested | getIsDeliveryReceiptRequested | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
public function setIsDeliveryReceiptRequested($val)
{
$this->_propDict["isDeliveryReceiptRequested"] = boolval($val);
return $this;
} | Sets the isDeliveryReceiptRequested
@param bool $val The isDeliveryReceiptRequested
@return Message | setIsDeliveryReceiptRequested | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Message.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Message.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.