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 getTargetedMobileApps()
{
if (array_key_exists("targetedMobileApps", $this->_propDict)) {
return $this->_propDict["targetedMobileApps"];
} else {
return null;
}
} | Gets the targetedMobileApps
the associated app.
@return array|null The targetedMobileApps | getTargetedMobileApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getDeviceStatusSummary()
{
if (array_key_exists("deviceStatusSummary", $this->_propDict)) {
if (is_a($this->_propDict["deviceStatusSummary"], "\Microsoft\Graph\Model\ManagedDeviceMobileAppConfigurationDeviceSummary") || is_null($this->_propDict["deviceStatusSummary"])) {
return $this->_propDict["deviceStatusSummary"];
} else {
$this->_propDict["deviceStatusSummary"] = new ManagedDeviceMobileAppConfigurationDeviceSummary($this->_propDict["deviceStatusSummary"]);
return $this->_propDict["deviceStatusSummary"];
}
}
return null;
} | Gets the deviceStatusSummary
App configuration device status summary.
@return ManagedDeviceMobileAppConfigurationDeviceSummary|null The deviceStatusSummary | getDeviceStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setDeviceStatusSummary($val)
{
$this->_propDict["deviceStatusSummary"] = $val;
return $this;
} | Sets the deviceStatusSummary
App configuration device status summary.
@param ManagedDeviceMobileAppConfigurationDeviceSummary $val The deviceStatusSummary
@return ManagedDeviceMobileAppConfiguration | setDeviceStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getUserStatusSummary()
{
if (array_key_exists("userStatusSummary", $this->_propDict)) {
if (is_a($this->_propDict["userStatusSummary"], "\Microsoft\Graph\Model\ManagedDeviceMobileAppConfigurationUserSummary") || is_null($this->_propDict["userStatusSummary"])) {
return $this->_propDict["userStatusSummary"];
} else {
$this->_propDict["userStatusSummary"] = new ManagedDeviceMobileAppConfigurationUserSummary($this->_propDict["userStatusSummary"]);
return $this->_propDict["userStatusSummary"];
}
}
return null;
} | Gets the userStatusSummary
App configuration user status summary.
@return ManagedDeviceMobileAppConfigurationUserSummary|null The userStatusSummary | getUserStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setUserStatusSummary($val)
{
$this->_propDict["userStatusSummary"] = $val;
return $this;
} | Sets the userStatusSummary
App configuration user status summary.
@param ManagedDeviceMobileAppConfigurationUserSummary $val The userStatusSummary
@return ManagedDeviceMobileAppConfiguration | setUserStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setFileSystemInfo($val)
{
$this->_propDict["fileSystemInfo"] = $val;
return $this;
} | Sets the fileSystemInfo
File system information on client. Read-write.
@param FileSystemInfo $val The value to assign to the fileSystemInfo
@return DriveItemUploadableProperties The DriveItemUploadableProperties | setFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function getDeviceComplianceScriptId()
{
if (array_key_exists("deviceComplianceScriptId", $this->_propDict)) {
return $this->_propDict["deviceComplianceScriptId"];
} else {
return null;
}
} | Gets the deviceComplianceScriptId
Device compliance script Id.
@return string|null The deviceComplianceScriptId | getDeviceComplianceScriptId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function setDeviceComplianceScriptId($val)
{
$this->_propDict["deviceComplianceScriptId"] = $val;
return $this;
} | Sets the deviceComplianceScriptId
Device compliance script Id.
@param string $val The value of the deviceComplianceScriptId
@return DeviceCompliancePolicyScript | setDeviceComplianceScriptId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function getRulesContent()
{
if (array_key_exists("rulesContent", $this->_propDict)) {
if (is_a($this->_propDict["rulesContent"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["rulesContent"])) {
return $this->_propDict["rulesContent"];
} else {
$this->_propDict["rulesContent"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["rulesContent"]);
return $this->_propDict["rulesContent"];
}
}
return null;
} | Gets the rulesContent
Json of the rules.
@return \GuzzleHttp\Psr7\Stream|null The rulesContent | getRulesContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function setRulesContent($val)
{
$this->_propDict["rulesContent"] = $val;
return $this;
} | Sets the rulesContent
Json of the rules.
@param \GuzzleHttp\Psr7\Stream $val The value to assign to the rulesContent
@return DeviceCompliancePolicyScript The DeviceCompliancePolicyScript | setRulesContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function getBlob()
{
if (array_key_exists("blob", $this->_propDict)) {
return $this->_propDict["blob"];
} else {
return null;
}
} | Gets the blob
The media configuration blob generated by smart media agent.
@return string|null The blob | getBlob | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | MIT |
public function setBlob($val)
{
$this->_propDict["blob"] = $val;
return $this;
} | Sets the blob
The media configuration blob generated by smart media agent.
@param string $val The value of the blob
@return AppHostedMediaConfig | setBlob | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | MIT |
public function getHashType()
{
if (array_key_exists("hashType", $this->_propDict)) {
if (is_a($this->_propDict["hashType"], "\Beta\Microsoft\Graph\Model\FileHashType") || is_null($this->_propDict["hashType"])) {
return $this->_propDict["hashType"];
} else {
$this->_propDict["hashType"] = new FileHashType($this->_propDict["hashType"]);
return $this->_propDict["hashType"];
}
}
return null;
} | Gets the hashType
File hash type. Possible values are: unknown, sha1, sha256, md5, authenticodeHash256, lsHash, ctph, peSha1, peSha256.
@return FileHashType|null The hashType | getHashType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function setHashType($val)
{
$this->_propDict["hashType"] = $val;
return $this;
} | Sets the hashType
File hash type. Possible values are: unknown, sha1, sha256, md5, authenticodeHash256, lsHash, ctph, peSha1, peSha256.
@param FileHashType $val The value to assign to the hashType
@return FileHash The FileHash | setHashType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function getHashValue()
{
if (array_key_exists("hashValue", $this->_propDict)) {
return $this->_propDict["hashValue"];
} else {
return null;
}
} | Gets the hashValue
Value of the file hash.
@return string|null The hashValue | getHashValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function setHashValue($val)
{
$this->_propDict["hashValue"] = $val;
return $this;
} | Sets the hashValue
Value of the file hash.
@param string $val The value of the hashValue
@return FileHash | setHashValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function getProductIdentifier()
{
if (array_key_exists("productIdentifier", $this->_propDict)) {
return $this->_propDict["productIdentifier"];
} else {
return null;
}
} | Gets the productIdentifier
The Product Identifier.
@return string|null The productIdentifier | getProductIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function setProductIdentifier($val)
{
$this->_propDict["productIdentifier"] = $val;
return $this;
} | Sets the productIdentifier
The Product Identifier.
@param string $val The productIdentifier
@return WindowsPhoneXAP | setProductIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function getCriteria()
{
if (array_key_exists("criteria", $this->_propDict)) {
if (is_a($this->_propDict["criteria"], "\Microsoft\Graph\Model\WorkbookFilterCriteria") || is_null($this->_propDict["criteria"])) {
return $this->_propDict["criteria"];
} else {
$this->_propDict["criteria"] = new WorkbookFilterCriteria($this->_propDict["criteria"]);
return $this->_propDict["criteria"];
}
}
return null;
} | Gets the criteria
The currently applied filter on the given column. Read-only.
@return WorkbookFilterCriteria|null The criteria | getCriteria | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | MIT |
public function setCriteria($val)
{
$this->_propDict["criteria"] = $val;
return $this;
} | Sets the criteria
The currently applied filter on the given column. Read-only.
@param WorkbookFilterCriteria $val The criteria
@return WorkbookFilter | setCriteria | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | MIT |
function __construct(\PDO $pdo) {
$this->pdo = $pdo;
} | Creates the PDO property storage engine
@param \PDO $pdo | __construct | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | MIT |
function propFind($path, PropFind $propFind) {
if (!$propFind->isAllProps() && count($propFind->get404Properties()) === 0) {
return;
}
$query = 'SELECT name, value, valuetype FROM ' . $this->tableName . ' WHERE path = ?';
$stmt = $this->pdo->prepare($query);
$stmt->execute([$path]);
while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
if (gettype($row['value']) === 'resource') {
$row['value'] = stream_get_contents($row['value']);
}
switch ($row['valuetype']) {
case null :
case self::VT_STRING :
$propFind->set($row['name'], $row['value']);
break;
case self::VT_XML :
$propFind->set($row['name'], new Complex($row['value']));
break;
case self::VT_OBJECT :
$propFind->set($row['name'], unserialize($row['value']));
break;
}
}
} | Fetches properties for a path.
This method received a PropFind object, which contains all the
information about the properties that need to be fetched.
Usually you would just want to call 'get404Properties' on this object,
as this will give you the _exact_ list of properties that need to be
fetched, and haven't yet.
However, you can also support the 'allprops' property here. In that
case, you should check for $propFind->isAllProps().
@param string $path
@param PropFind $propFind
@return void | propFind | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | MIT |
function delete($path) {
$stmt = $this->pdo->prepare("DELETE FROM " . $this->tableName . " WHERE path = ? OR path LIKE ? ESCAPE '='");
$childPath = strtr(
$path,
[
'=' => '==',
'%' => '=%',
'_' => '=_'
]
) . '/%';
$stmt->execute([$path, $childPath]);
} | This method is called after a node is deleted.
This allows a backend to clean up all associated properties.
The delete method will get called once for the deletion of an entire
tree.
@param string $path
@return void | delete | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | MIT |
function move($source, $destination) {
// I don't know a way to write this all in a single sql query that's
// also compatible across db engines, so we're letting PHP do all the
// updates. Much slower, but it should still be pretty fast in most
// cases.
$select = $this->pdo->prepare('SELECT id, path FROM ' . $this->tableName . ' WHERE path = ? OR path LIKE ?');
$select->execute([$source, $source . '/%']);
$update = $this->pdo->prepare('UPDATE ' . $this->tableName . ' SET path = ? WHERE id = ?');
while ($row = $select->fetch(\PDO::FETCH_ASSOC)) {
// Sanity check. SQL may select too many records, such as records
// with different cases.
if ($row['path'] !== $source && strpos($row['path'], $source . '/') !== 0) continue;
$trailingPart = substr($row['path'], strlen($source) + 1);
$newPath = $destination;
if ($trailingPart) {
$newPath .= '/' . $trailingPart;
}
$update->execute([$newPath, $row['id']]);
}
} | This method is called after a successful MOVE
This should be used to migrate all properties from one path to another.
Note that entire collections may be moved, so ensure that all properties
for children are also moved along.
@param string $source
@param string $destination
@return void | move | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | MIT |
public function getDetectionStatus()
{
if (array_key_exists("detectionStatus", $this->_propDict)) {
if (is_a($this->_propDict["detectionStatus"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\DetectionStatus") || is_null($this->_propDict["detectionStatus"])) {
return $this->_propDict["detectionStatus"];
} else {
$this->_propDict["detectionStatus"] = new DetectionStatus($this->_propDict["detectionStatus"]);
return $this->_propDict["detectionStatus"];
}
}
return null;
} | Gets the detectionStatus
The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue.
@return DetectionStatus|null The detectionStatus | getDetectionStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function setDetectionStatus($val)
{
$this->_propDict["detectionStatus"] = $val;
return $this;
} | Sets the detectionStatus
The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue.
@param DetectionStatus $val The value to assign to the detectionStatus
@return FileEvidence The FileEvidence | setDetectionStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function getFileDetails()
{
if (array_key_exists("fileDetails", $this->_propDict)) {
if (is_a($this->_propDict["fileDetails"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\FileDetails") || is_null($this->_propDict["fileDetails"])) {
return $this->_propDict["fileDetails"];
} else {
$this->_propDict["fileDetails"] = new FileDetails($this->_propDict["fileDetails"]);
return $this->_propDict["fileDetails"];
}
}
return null;
} | Gets the fileDetails
The file details.
@return FileDetails|null The fileDetails | getFileDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function setFileDetails($val)
{
$this->_propDict["fileDetails"] = $val;
return $this;
} | Sets the fileDetails
The file details.
@param FileDetails $val The value to assign to the fileDetails
@return FileEvidence The FileEvidence | setFileDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
protected function processItems(array $items)
{
$processedItems = [];
foreach ($items as $entry) {
if (isset($entry['metadata']) && is_array($entry['metadata'])) {
$processedItems[] = new SearchResult($entry);
}
}
$this->items = new ModelCollection($processedItems);
} | Process items and cast them
to their respective Models
@param array $items Unprocessed Items
@return void | processItems | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/SearchResults.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/SearchResults.php | MIT |
public function getOrganizer()
{
if (array_key_exists("organizer", $this->_propDict)) {
if (is_a($this->_propDict["organizer"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["organizer"])) {
return $this->_propDict["organizer"];
} else {
$this->_propDict["organizer"] = new IdentitySet($this->_propDict["organizer"]);
return $this->_propDict["organizer"];
}
}
return null;
} | Gets the organizer
The organizer Azure Active Directory identity.
@return IdentitySet|null The organizer | getOrganizer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizerMeetingInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizerMeetingInfo.php | MIT |
public function getCustomizations()
{
if (array_key_exists("customizations", $this->_propDict)) {
if (is_a($this->_propDict["customizations"], "\Beta\Microsoft\Graph\Model\EducationSynchronizationCustomizations") || is_null($this->_propDict["customizations"])) {
return $this->_propDict["customizations"];
} else {
$this->_propDict["customizations"] = new EducationSynchronizationCustomizations($this->_propDict["customizations"]);
return $this->_propDict["customizations"];
}
}
return null;
} | Gets the customizations
Optional customizations to be applied to the synchronization profile.
@return EducationSynchronizationCustomizations|null The customizations | getCustomizations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | MIT |
public function setCustomizations($val)
{
$this->_propDict["customizations"] = $val;
return $this;
} | Sets the customizations
Optional customizations to be applied to the synchronization profile.
@param EducationSynchronizationCustomizations $val The value to assign to the customizations
@return EducationCsvDataProvider The EducationCsvDataProvider | setCustomizations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | MIT |
public function getActiveHoursEnd()
{
if (array_key_exists("activeHoursEnd", $this->_propDict)) {
if (is_a($this->_propDict["activeHoursEnd"], "\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["activeHoursEnd"])) {
return $this->_propDict["activeHoursEnd"];
} else {
$this->_propDict["activeHoursEnd"] = new TimeOfDay($this->_propDict["activeHoursEnd"]);
return $this->_propDict["activeHoursEnd"];
}
}
return null;
} | Gets the activeHoursEnd
Active Hours End
@return TimeOfDay|null The activeHoursEnd | getActiveHoursEnd | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | MIT |
public function getActiveHoursStart()
{
if (array_key_exists("activeHoursStart", $this->_propDict)) {
if (is_a($this->_propDict["activeHoursStart"], "\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["activeHoursStart"])) {
return $this->_propDict["activeHoursStart"];
} else {
$this->_propDict["activeHoursStart"] = new TimeOfDay($this->_propDict["activeHoursStart"]);
return $this->_propDict["activeHoursStart"];
}
}
return null;
} | Gets the activeHoursStart
Active Hours Start
@return TimeOfDay|null The activeHoursStart | getActiveHoursStart | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | MIT |
public function getExchangeActive()
{
if (array_key_exists("exchangeActive", $this->_propDict)) {
return $this->_propDict["exchangeActive"];
} else {
return null;
}
} | Gets the exchangeActive
The number of active users on Exchange. Any user who can read and send email is considered an active user.
@return int|null The exchangeActive | getExchangeActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setExchangeActive($val)
{
$this->_propDict["exchangeActive"] = intval($val);
return $this;
} | Sets the exchangeActive
The number of active users on Exchange. Any user who can read and send email is considered an active user.
@param int $val The exchangeActive
@return Office365ServicesUserCounts | setExchangeActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getExchangeInactive()
{
if (array_key_exists("exchangeInactive", $this->_propDict)) {
return $this->_propDict["exchangeInactive"];
} else {
return null;
}
} | Gets the exchangeInactive
The number of inactive users on Exchange.
@return int|null The exchangeInactive | getExchangeInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setExchangeInactive($val)
{
$this->_propDict["exchangeInactive"] = intval($val);
return $this;
} | Sets the exchangeInactive
The number of inactive users on Exchange.
@param int $val The exchangeInactive
@return Office365ServicesUserCounts | setExchangeInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOffice365Active()
{
if (array_key_exists("office365Active", $this->_propDict)) {
return $this->_propDict["office365Active"];
} else {
return null;
}
} | Gets the office365Active
The number of active users on Microsoft 365.
@return int|null The office365Active | getOffice365Active | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOffice365Active($val)
{
$this->_propDict["office365Active"] = intval($val);
return $this;
} | Sets the office365Active
The number of active users on Microsoft 365.
@param int $val The office365Active
@return Office365ServicesUserCounts | setOffice365Active | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOffice365Inactive()
{
if (array_key_exists("office365Inactive", $this->_propDict)) {
return $this->_propDict["office365Inactive"];
} else {
return null;
}
} | Gets the office365Inactive
The number of inactive users on Microsoft 365.
@return int|null The office365Inactive | getOffice365Inactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOffice365Inactive($val)
{
$this->_propDict["office365Inactive"] = intval($val);
return $this;
} | Sets the office365Inactive
The number of inactive users on Microsoft 365.
@param int $val The office365Inactive
@return Office365ServicesUserCounts | setOffice365Inactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOneDriveActive()
{
if (array_key_exists("oneDriveActive", $this->_propDict)) {
return $this->_propDict["oneDriveActive"];
} else {
return null;
}
} | Gets the oneDriveActive
The number of active users on OneDrive. Any user who viewed or edited files, shared files internally or externally, or synced files is considered an active user.
@return int|null The oneDriveActive | getOneDriveActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOneDriveActive($val)
{
$this->_propDict["oneDriveActive"] = intval($val);
return $this;
} | Sets the oneDriveActive
The number of active users on OneDrive. Any user who viewed or edited files, shared files internally or externally, or synced files is considered an active user.
@param int $val The oneDriveActive
@return Office365ServicesUserCounts | setOneDriveActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOneDriveInactive()
{
if (array_key_exists("oneDriveInactive", $this->_propDict)) {
return $this->_propDict["oneDriveInactive"];
} else {
return null;
}
} | Gets the oneDriveInactive
The number of inactive users on OneDrive.
@return int|null The oneDriveInactive | getOneDriveInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOneDriveInactive($val)
{
$this->_propDict["oneDriveInactive"] = intval($val);
return $this;
} | Sets the oneDriveInactive
The number of inactive users on OneDrive.
@param int $val The oneDriveInactive
@return Office365ServicesUserCounts | setOneDriveInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSharePointActive()
{
if (array_key_exists("sharePointActive", $this->_propDict)) {
return $this->_propDict["sharePointActive"];
} else {
return null;
}
} | Gets the sharePointActive
The number of active users on SharePoint. Any user who viewed or edited files, shared files internally or externally, synced files, or viewed SharePoint pages is considered an active user.
@return int|null The sharePointActive | getSharePointActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSharePointActive($val)
{
$this->_propDict["sharePointActive"] = intval($val);
return $this;
} | Sets the sharePointActive
The number of active users on SharePoint. Any user who viewed or edited files, shared files internally or externally, synced files, or viewed SharePoint pages is considered an active user.
@param int $val The sharePointActive
@return Office365ServicesUserCounts | setSharePointActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSharePointInactive()
{
if (array_key_exists("sharePointInactive", $this->_propDict)) {
return $this->_propDict["sharePointInactive"];
} else {
return null;
}
} | Gets the sharePointInactive
The number of inactive users on SharePoint.
@return int|null The sharePointInactive | getSharePointInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSharePointInactive($val)
{
$this->_propDict["sharePointInactive"] = intval($val);
return $this;
} | Sets the sharePointInactive
The number of inactive users on SharePoint.
@param int $val The sharePointInactive
@return Office365ServicesUserCounts | setSharePointInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSkypeForBusinessActive()
{
if (array_key_exists("skypeForBusinessActive", $this->_propDict)) {
return $this->_propDict["skypeForBusinessActive"];
} else {
return null;
}
} | Gets the skypeForBusinessActive
The number of active users on Skype For Business. Any user who organized or participated in conferences, or joined peer-to-peer sessions is considered an active user.
@return int|null The skypeForBusinessActive | getSkypeForBusinessActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSkypeForBusinessActive($val)
{
$this->_propDict["skypeForBusinessActive"] = intval($val);
return $this;
} | Sets the skypeForBusinessActive
The number of active users on Skype For Business. Any user who organized or participated in conferences, or joined peer-to-peer sessions is considered an active user.
@param int $val The skypeForBusinessActive
@return Office365ServicesUserCounts | setSkypeForBusinessActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSkypeForBusinessInactive()
{
if (array_key_exists("skypeForBusinessInactive", $this->_propDict)) {
return $this->_propDict["skypeForBusinessInactive"];
} else {
return null;
}
} | Gets the skypeForBusinessInactive
The number of inactive users on Skype For Business.
@return int|null The skypeForBusinessInactive | getSkypeForBusinessInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSkypeForBusinessInactive($val)
{
$this->_propDict["skypeForBusinessInactive"] = intval($val);
return $this;
} | Sets the skypeForBusinessInactive
The number of inactive users on Skype For Business.
@param int $val The skypeForBusinessInactive
@return Office365ServicesUserCounts | setSkypeForBusinessInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getTeamsActive()
{
if (array_key_exists("teamsActive", $this->_propDict)) {
return $this->_propDict["teamsActive"];
} else {
return null;
}
} | Gets the teamsActive
The number of active users on Microsoft Teams. Any user who posted messages in team channels, sent messages in private chat sessions, or participated in meetings or calls is considered an active user.
@return int|null The teamsActive | getTeamsActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setTeamsActive($val)
{
$this->_propDict["teamsActive"] = intval($val);
return $this;
} | Sets the teamsActive
The number of active users on Microsoft Teams. Any user who posted messages in team channels, sent messages in private chat sessions, or participated in meetings or calls is considered an active user.
@param int $val The teamsActive
@return Office365ServicesUserCounts | setTeamsActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getTeamsInactive()
{
if (array_key_exists("teamsInactive", $this->_propDict)) {
return $this->_propDict["teamsInactive"];
} else {
return null;
}
} | Gets the teamsInactive
The number of inactive users on Microsoft Teams.
@return int|null The teamsInactive | getTeamsInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setTeamsInactive($val)
{
$this->_propDict["teamsInactive"] = intval($val);
return $this;
} | Sets the teamsInactive
The number of inactive users on Microsoft Teams.
@param int $val The teamsInactive
@return Office365ServicesUserCounts | setTeamsInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getYammerActive()
{
if (array_key_exists("yammerActive", $this->_propDict)) {
return $this->_propDict["yammerActive"];
} else {
return null;
}
} | Gets the yammerActive
The number of active users on Yammer. Any user who can post, read, or like messages is considered an active user.
@return int|null The yammerActive | getYammerActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setYammerActive($val)
{
$this->_propDict["yammerActive"] = intval($val);
return $this;
} | Sets the yammerActive
The number of active users on Yammer. Any user who can post, read, or like messages is considered an active user.
@param int $val The yammerActive
@return Office365ServicesUserCounts | setYammerActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getYammerInactive()
{
if (array_key_exists("yammerInactive", $this->_propDict)) {
return $this->_propDict["yammerInactive"];
} else {
return null;
}
} | Gets the yammerInactive
The number of inactive users on Yammer.
@return int|null The yammerInactive | getYammerInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setYammerInactive($val)
{
$this->_propDict["yammerInactive"] = intval($val);
return $this;
} | Sets the yammerInactive
The number of inactive users on Yammer.
@param int $val The yammerInactive
@return Office365ServicesUserCounts | setYammerInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getMovieRating()
{
if (array_key_exists("movieRating", $this->_propDict)) {
if (is_a($this->_propDict["movieRating"], "\Beta\Microsoft\Graph\Model\RatingFranceMoviesType") || is_null($this->_propDict["movieRating"])) {
return $this->_propDict["movieRating"];
} else {
$this->_propDict["movieRating"] = new RatingFranceMoviesType($this->_propDict["movieRating"]);
return $this->_propDict["movieRating"];
}
}
return null;
} | Gets the movieRating
Movies rating selected for France. Possible values are: allAllowed, allBlocked, agesAbove10, agesAbove12, agesAbove16, agesAbove18.
@return RatingFranceMoviesType|null The movieRating | getMovieRating | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | MIT |
public function getTvRating()
{
if (array_key_exists("tvRating", $this->_propDict)) {
if (is_a($this->_propDict["tvRating"], "\Beta\Microsoft\Graph\Model\RatingFranceTelevisionType") || is_null($this->_propDict["tvRating"])) {
return $this->_propDict["tvRating"];
} else {
$this->_propDict["tvRating"] = new RatingFranceTelevisionType($this->_propDict["tvRating"]);
return $this->_propDict["tvRating"];
}
}
return null;
} | Gets the tvRating
TV rating selected for France. Possible values are: allAllowed, allBlocked, agesAbove10, agesAbove12, agesAbove16, agesAbove18.
@return RatingFranceTelevisionType|null The tvRating | getTvRating | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | MIT |
public function getDefaultText()
{
if (array_key_exists("defaultText", $this->_propDict)) {
return $this->_propDict["defaultText"];
} else {
return null;
}
} | Gets the defaultText
The fallback string, which is used when a requested localization is not available. Required.
@return string|null The defaultText | getDefaultText | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function setDefaultText($val)
{
$this->_propDict["defaultText"] = $val;
return $this;
} | Sets the defaultText
The fallback string, which is used when a requested localization is not available. Required.
@param string $val The value of the defaultText
@return AccessPackageLocalizedContent | setDefaultText | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function getLocalizedTexts()
{
if (array_key_exists("localizedTexts", $this->_propDict)) {
if (is_a($this->_propDict["localizedTexts"], "\Beta\Microsoft\Graph\Model\AccessPackageLocalizedText") || is_null($this->_propDict["localizedTexts"])) {
return $this->_propDict["localizedTexts"];
} else {
$this->_propDict["localizedTexts"] = new AccessPackageLocalizedText($this->_propDict["localizedTexts"]);
return $this->_propDict["localizedTexts"];
}
}
return null;
} | Gets the localizedTexts
Content represented in a format for a specific locale.
@return AccessPackageLocalizedText|null The localizedTexts | getLocalizedTexts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function setLocalizedTexts($val)
{
$this->_propDict["localizedTexts"] = $val;
return $this;
} | Sets the localizedTexts
Content represented in a format for a specific locale.
@param AccessPackageLocalizedText $val The value to assign to the localizedTexts
@return AccessPackageLocalizedContent The AccessPackageLocalizedContent | setLocalizedTexts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function getDriverInventorySyncState()
{
if (array_key_exists("driverInventorySyncState", $this->_propDict)) {
if (is_a($this->_propDict["driverInventorySyncState"], "\Beta\Microsoft\Graph\Model\WindowsDriverUpdateProfileInventorySyncState") || is_null($this->_propDict["driverInventorySyncState"])) {
return $this->_propDict["driverInventorySyncState"];
} else {
$this->_propDict["driverInventorySyncState"] = new WindowsDriverUpdateProfileInventorySyncState($this->_propDict["driverInventorySyncState"]);
return $this->_propDict["driverInventorySyncState"];
}
}
return null;
} | Gets the driverInventorySyncState
The state of the latest sync. Possible values are: pending, success, failure.
@return WindowsDriverUpdateProfileInventorySyncState|null The driverInventorySyncState | getDriverInventorySyncState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function setDriverInventorySyncState($val)
{
$this->_propDict["driverInventorySyncState"] = $val;
return $this;
} | Sets the driverInventorySyncState
The state of the latest sync. Possible values are: pending, success, failure.
@param WindowsDriverUpdateProfileInventorySyncState $val The value to assign to the driverInventorySyncState
@return WindowsDriverUpdateProfileInventorySyncStatus The WindowsDriverUpdateProfileInventorySyncStatus | setDriverInventorySyncState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function getLastSuccessfulSyncDateTime()
{
if (array_key_exists("lastSuccessfulSyncDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastSuccessfulSyncDateTime"], "\DateTime") || is_null($this->_propDict["lastSuccessfulSyncDateTime"])) {
return $this->_propDict["lastSuccessfulSyncDateTime"];
} else {
$this->_propDict["lastSuccessfulSyncDateTime"] = new \DateTime($this->_propDict["lastSuccessfulSyncDateTime"]);
return $this->_propDict["lastSuccessfulSyncDateTime"];
}
}
return null;
} | Gets the lastSuccessfulSyncDateTime
The last successful sync date and time in UTC.
@return \DateTime|null The lastSuccessfulSyncDateTime | getLastSuccessfulSyncDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function setLastSuccessfulSyncDateTime($val)
{
$this->_propDict["lastSuccessfulSyncDateTime"] = $val;
return $this;
} | Sets the lastSuccessfulSyncDateTime
The last successful sync date and time in UTC.
@param \DateTime $val The value to assign to the lastSuccessfulSyncDateTime
@return WindowsDriverUpdateProfileInventorySyncStatus The WindowsDriverUpdateProfileInventorySyncStatus | setLastSuccessfulSyncDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function cleanupRequest(Event $event)
{
$params = $event['request']->getParams();
unset($params[self::REDIRECT_COUNT]);
unset($params[self::PARENT_REQUEST]);
} | Clean up the parameters of a request when it is cloned
@param Event $event Event emitted | cleanupRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
public function onRequestSent(Event $event)
{
$response = $event['response'];
$request = $event['request'];
// Only act on redirect requests with Location headers
if (!$response || $request->getParams()->get(self::DISABLE)) {
return;
}
// Trace the original request based on parameter history
$original = $this->getOriginalRequest($request);
// Terminating condition to set the effective response on the original request
if (!$response->isRedirect() || !$response->hasHeader('Location')) {
if ($request !== $original) {
// This is a terminating redirect response, so set it on the original request
$response->getParams()->set(self::REDIRECT_COUNT, $original->getParams()->get(self::REDIRECT_COUNT));
$original->setResponse($response);
$response->setEffectiveUrl($request->getUrl());
}
return;
}
$this->sendRedirectRequest($original, $request, $response);
} | Called when a request receives a redirect response
@param Event $event Event emitted | onRequestSent | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
protected function getOriginalRequest(RequestInterface $request)
{
$original = $request;
// The number of redirects is held on the original request, so determine which request that is
while ($parent = $original->getParams()->get(self::PARENT_REQUEST)) {
$original = $parent;
}
return $original;
} | Get the original request that initiated a series of redirects
@param RequestInterface $request Request to get the original request from
@return RequestInterface | getOriginalRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
protected function prepareRedirection(RequestInterface $original, RequestInterface $request, Response $response)
{
$params = $original->getParams();
// This is a new redirect, so increment the redirect counter
$current = $params[self::REDIRECT_COUNT] + 1;
$params[self::REDIRECT_COUNT] = $current;
// Use a provided maximum value or default to a max redirect count of 5
$max = isset($params[self::MAX_REDIRECTS]) ? $params[self::MAX_REDIRECTS] : $this->defaultMaxRedirects;
// Throw an exception if the redirect count is exceeded
if ($current > $max) {
$this->throwTooManyRedirectsException($original, $max);
return false;
} else {
// Create a redirect request based on the redirect rules set on the request
return $this->createRedirectRequest(
$request,
$response->getStatusCode(),
trim($response->getLocation()),
$original
);
}
} | Prepare the request for redirection and enforce the maximum number of allowed redirects per client
@param RequestInterface $original Original request
@param RequestInterface $request Request to prepare and validate
@param Response $response The current response
@return RequestInterface | prepareRedirection | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
protected function sendRedirectRequest(RequestInterface $original, RequestInterface $request, Response $response)
{
// Validate and create a redirect request based on the original request and current response
if ($redirectRequest = $this->prepareRedirection($original, $request, $response)) {
try {
$redirectRequest->send();
} catch (BadResponseException $e) {
$e->getResponse();
if (!$e->getResponse()) {
throw $e;
}
}
}
} | Send a redirect request and handle any errors
@param RequestInterface $original The originating request
@param RequestInterface $request The current request being redirected
@param Response $response The response of the current request
@throws BadResponseException|\Exception | sendRedirectRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
public function getLastAccessedDateTime()
{
if (array_key_exists("lastAccessedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastAccessedDateTime"], "\DateTime") || is_null($this->_propDict["lastAccessedDateTime"])) {
return $this->_propDict["lastAccessedDateTime"];
} else {
$this->_propDict["lastAccessedDateTime"] = new \DateTime($this->_propDict["lastAccessedDateTime"]);
return $this->_propDict["lastAccessedDateTime"];
}
}
return null;
} | Gets the lastAccessedDateTime
The date and time the resource was last accessed by the user. The timestamp 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. Read-only.
@return \DateTime|null The lastAccessedDateTime | getLastAccessedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | MIT |
public function setLastAccessedDateTime($val)
{
$this->_propDict["lastAccessedDateTime"] = $val;
return $this;
} | Sets the lastAccessedDateTime
The date and time the resource was last accessed by the user. The timestamp 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. Read-only.
@param \DateTime $val The value to assign to the lastAccessedDateTime
@return UsageDetails The UsageDetails | setLastAccessedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | MIT |
public function __construct($input, $options = 0)
{
$this->input = $input;
$this->parser = new MimeDir($input, $options);
} | Constructor.
The splitter should receive an readable file stream as its input.
@param resource $input
@param int $options parser options, see the OPTIONS constants | __construct | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Splitter/VCard.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Splitter/VCard.php | MIT |
public function getNext()
{
try {
$object = $this->parser->parse();
if (!$object instanceof VObject\Component\VCard) {
throw new VObject\ParseException('The supplied input contained non-VCARD data.');
}
} catch (VObject\EofException $e) {
return;
}
return $object;
} | Every time getNext() is called, a new object will be parsed, until we
hit the end of the stream.
When the end is reached, null will be returned.
@return \Sabre\VObject\Component|null | getNext | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Splitter/VCard.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Splitter/VCard.php | MIT |
public function getIsValidRule()
{
if (array_key_exists("isValidRule", $this->_propDict)) {
return $this->_propDict["isValidRule"];
} else {
return null;
}
} | Gets the isValidRule
Indicator to valid or invalid rule.
@return bool|null The isValidRule | getIsValidRule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | MIT |
public function setIsValidRule($val)
{
$this->_propDict["isValidRule"] = $val;
return $this;
} | Sets the isValidRule
Indicator to valid or invalid rule.
@param bool $val The value of the isValidRule
@return AssignmentFilterValidationResult | setIsValidRule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | MIT |
public function __construct(array $data)
{
parent::__construct($data);
$this->link = $this->getDataProperty('link');
$this->setMetadata();
} | Create a new TemporaryLink instance
@param array $data | __construct | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/TemporaryLink.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/TemporaryLink.php | MIT |
public function getChangeType()
{
if (array_key_exists("changeType", $this->_propDict)) {
return $this->_propDict["changeType"];
} else {
return null;
}
} | Gets the changeType
Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. Use updated to receive notifications when user or group is created, updated or soft deleted. Use deleted to receive notifications when user or group is permanently deleted.
@return string|null The changeType | getChangeType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setChangeType($val)
{
$this->_propDict["changeType"] = $val;
return $this;
} | Sets the changeType
Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. Use updated to receive notifications when user or group is created, updated or soft deleted. Use deleted to receive notifications when user or group is permanently deleted.
@param string $val The changeType
@return Subscription | setChangeType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getClientState()
{
if (array_key_exists("clientState", $this->_propDict)) {
return $this->_propDict["clientState"];
} else {
return null;
}
} | Gets the clientState
Required. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification.
@return string|null The clientState | getClientState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setClientState($val)
{
$this->_propDict["clientState"] = $val;
return $this;
} | Sets the clientState
Required. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification.
@param string $val The clientState
@return Subscription | setClientState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getCreatorId()
{
if (array_key_exists("creatorId", $this->_propDict)) {
return $this->_propDict["creatorId"];
} else {
return null;
}
} | Gets the creatorId
Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only.
@return string|null The creatorId | getCreatorId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setCreatorId($val)
{
$this->_propDict["creatorId"] = $val;
return $this;
} | Sets the creatorId
Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only.
@param string $val The creatorId
@return Subscription | setCreatorId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getEncryptionCertificate()
{
if (array_key_exists("encryptionCertificate", $this->_propDict)) {
return $this->_propDict["encryptionCertificate"];
} else {
return null;
}
} | Gets the encryptionCertificate
Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true.
@return string|null The encryptionCertificate | getEncryptionCertificate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setEncryptionCertificate($val)
{
$this->_propDict["encryptionCertificate"] = $val;
return $this;
} | Sets the encryptionCertificate
Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true.
@param string $val The encryptionCertificate
@return Subscription | setEncryptionCertificate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getIncludeResourceData()
{
if (array_key_exists("includeResourceData", $this->_propDict)) {
return $this->_propDict["includeResourceData"];
} else {
return null;
}
} | Gets the includeResourceData
Optional. When set to true, change notifications include resource data (such as content of a chat message).
@return bool|null The includeResourceData | getIncludeResourceData | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setIncludeResourceData($val)
{
$this->_propDict["includeResourceData"] = boolval($val);
return $this;
} | Sets the includeResourceData
Optional. When set to true, change notifications include resource data (such as content of a chat message).
@param bool $val The includeResourceData
@return Subscription | setIncludeResourceData | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getLatestSupportedTlsVersion()
{
if (array_key_exists("latestSupportedTlsVersion", $this->_propDict)) {
return $this->_propDict["latestSupportedTlsVersion"];
} else {
return null;
}
} | Gets the latestSupportedTlsVersion
Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v1_0, v1_1, v1_2, v1_3. For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2.
@return string|null The latestSupportedTlsVersion | getLatestSupportedTlsVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setLatestSupportedTlsVersion($val)
{
$this->_propDict["latestSupportedTlsVersion"] = $val;
return $this;
} | Sets the latestSupportedTlsVersion
Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v1_0, v1_1, v1_2, v1_3. For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2.
@param string $val The latestSupportedTlsVersion
@return Subscription | setLatestSupportedTlsVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getLifecycleNotificationUrl()
{
if (array_key_exists("lifecycleNotificationUrl", $this->_propDict)) {
return $this->_propDict["lifecycleNotificationUrl"];
} else {
return null;
}
} | Gets the lifecycleNotificationUrl
Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved, reauthorizationRequired, and missed notifications. This URL must make use of the HTTPS protocol.
@return string|null The lifecycleNotificationUrl | getLifecycleNotificationUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setLifecycleNotificationUrl($val)
{
$this->_propDict["lifecycleNotificationUrl"] = $val;
return $this;
} | Sets the lifecycleNotificationUrl
Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved, reauthorizationRequired, and missed notifications. This URL must make use of the HTTPS protocol.
@param string $val The lifecycleNotificationUrl
@return Subscription | setLifecycleNotificationUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getNotificationQueryOptions()
{
if (array_key_exists("notificationQueryOptions", $this->_propDict)) {
return $this->_propDict["notificationQueryOptions"];
} else {
return null;
}
} | Gets the notificationQueryOptions
Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. Supported only for Universal Print Service. For more information, see Subscribe to change notifications from cloud printing APIs using Microsoft Graph.
@return string|null The notificationQueryOptions | getNotificationQueryOptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setNotificationQueryOptions($val)
{
$this->_propDict["notificationQueryOptions"] = $val;
return $this;
} | Sets the notificationQueryOptions
Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. Supported only for Universal Print Service. For more information, see Subscribe to change notifications from cloud printing APIs using Microsoft Graph.
@param string $val The notificationQueryOptions
@return Subscription | setNotificationQueryOptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.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.