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 getLargeIcon() { if (array_key_exists("largeIcon", $this->_propDict)) { if (is_a($this->_propDict["largeIcon"], "\Beta\Microsoft\Graph\Model\MimeContent") || is_null($this->_propDict["largeIcon"])) { return $this->_propDict["largeIcon"]; } else { $this->_propDict["largeIcon"] = new MimeContent($this->_propDict["largeIcon"]); return $this->_propDict["largeIcon"]; } } return null; }
Gets the largeIcon The large icon, to be displayed in the app details and used for upload of the icon. @return MimeContent|null The largeIcon
getLargeIcon
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function setLargeIcon($val) { $this->_propDict["largeIcon"] = $val; return $this; }
Sets the largeIcon The large icon, to be displayed in the app details and used for upload of the icon. @param MimeContent $val The largeIcon @return MobileApp
setLargeIcon
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function getPublishingState() { if (array_key_exists("publishingState", $this->_propDict)) { if (is_a($this->_propDict["publishingState"], "\Beta\Microsoft\Graph\Model\MobileAppPublishingState") || is_null($this->_propDict["publishingState"])) { return $this->_propDict["publishingState"]; } else { $this->_propDict["publishingState"] = new MobileAppPublishingState($this->_propDict["publishingState"]); return $this->_propDict["publishingState"]; } } return null; }
Gets the publishingState The publishing state for the app. The app cannot be assigned unless the app is published. Possible values are: notPublished, processing, published. @return MobileAppPublishingState|null The publishingState
getPublishingState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function setPublishingState($val) { $this->_propDict["publishingState"] = $val; return $this; }
Sets the publishingState The publishing state for the app. The app cannot be assigned unless the app is published. Possible values are: notPublished, processing, published. @param MobileAppPublishingState $val The publishingState @return MobileApp
setPublishingState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function getUploadState() { if (array_key_exists("uploadState", $this->_propDict)) { return $this->_propDict["uploadState"]; } else { return null; } }
Gets the uploadState The upload state. @return int|null The uploadState
getUploadState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function setUploadState($val) { $this->_propDict["uploadState"] = intval($val); return $this; }
Sets the uploadState The upload state. @param int $val The uploadState @return MobileApp
setUploadState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function getInstallSummary() { if (array_key_exists("installSummary", $this->_propDict)) { if (is_a($this->_propDict["installSummary"], "\Beta\Microsoft\Graph\Model\MobileAppInstallSummary") || is_null($this->_propDict["installSummary"])) { return $this->_propDict["installSummary"]; } else { $this->_propDict["installSummary"] = new MobileAppInstallSummary($this->_propDict["installSummary"]); return $this->_propDict["installSummary"]; } } return null; }
Gets the installSummary Mobile App Install Summary. @return MobileAppInstallSummary|null The installSummary
getInstallSummary
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function getRelationships() { if (array_key_exists("relationships", $this->_propDict)) { return $this->_propDict["relationships"]; } else { return null; } }
Gets the relationships List of relationships for this mobile app. @return array|null The relationships
getRelationships
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function setRelationships($val) { $this->_propDict["relationships"] = $val; return $this; }
Sets the relationships List of relationships for this mobile app. @param MobileAppRelationship[] $val The relationships @return MobileApp
setRelationships
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MobileApp.php
MIT
public function getQueryType() { if (array_key_exists("queryType", $this->_propDict)) { if (is_a($this->_propDict["queryType"], "\Microsoft\Graph\SecurityNamespace\Model\QueryType") || is_null($this->_propDict["queryType"])) { return $this->_propDict["queryType"]; } else { $this->_propDict["queryType"] = new QueryType($this->_propDict["queryType"]); return $this->_propDict["queryType"]; } } return null; }
Gets the queryType Represents the type of query associated with an event. 'files' for SPO and ODB and 'messages' for EXO.The possible values are: files, messages, unknownFutureValue. @return QueryType|null The queryType
getQueryType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EventQuery.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EventQuery.php
MIT
public function setQueryType($val) { $this->_propDict["queryType"] = $val; return $this; }
Sets the queryType Represents the type of query associated with an event. 'files' for SPO and ODB and 'messages' for EXO.The possible values are: files, messages, unknownFutureValue. @param QueryType $val The value to assign to the queryType @return EventQuery The EventQuery
setQueryType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EventQuery.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EventQuery.php
MIT
public function getCloudInstance() { if (array_key_exists("cloudInstance", $this->_propDict)) { return $this->_propDict["cloudInstance"]; } else { return null; } }
Gets the cloudInstance The ID of the cloud where the tenant is located, one of microsoftonline.com, microsoftonline.us or partner.microsoftonline.cn. Read only. @return string|null The cloudInstance
getCloudInstance
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossCloudAzureActiveDirectoryTenant.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossCloudAzureActiveDirectoryTenant.php
MIT
public function setCloudInstance($val) { $this->_propDict["cloudInstance"] = $val; return $this; }
Sets the cloudInstance The ID of the cloud where the tenant is located, one of microsoftonline.com, microsoftonline.us or partner.microsoftonline.cn. Read only. @param string $val The value of the cloudInstance @return CrossCloudAzureActiveDirectoryTenant
setCloudInstance
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossCloudAzureActiveDirectoryTenant.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossCloudAzureActiveDirectoryTenant.php
MIT
public function getPages() { if (array_key_exists("pages", $this->_propDict)) { if (is_a($this->_propDict["pages"], "\Beta\Microsoft\Graph\Model\IosHomeScreenFolderPage") || is_null($this->_propDict["pages"])) { return $this->_propDict["pages"]; } else { $this->_propDict["pages"] = new IosHomeScreenFolderPage($this->_propDict["pages"]); return $this->_propDict["pages"]; } } return null; }
Gets the pages Pages of Home Screen Layout Icons which must be applications or web clips. This collection can contain a maximum of 500 elements. @return IosHomeScreenFolderPage|null The pages
getPages
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosHomeScreenFolder.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosHomeScreenFolder.php
MIT
public function setPages($val) { $this->_propDict["pages"] = $val; return $this; }
Sets the pages Pages of Home Screen Layout Icons which must be applications or web clips. This collection can contain a maximum of 500 elements. @param IosHomeScreenFolderPage $val The value to assign to the pages @return IosHomeScreenFolder The IosHomeScreenFolder
setPages
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosHomeScreenFolder.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosHomeScreenFolder.php
MIT
public function getEnableResultTemplate() { if (array_key_exists("enableResultTemplate", $this->_propDict)) { return $this->_propDict["enableResultTemplate"]; } else { return null; } }
Gets the enableResultTemplate Indicates whether search display layouts are enabled. If enabled, the user will get the result template to render the search results content in the resultTemplates property of the response. The result template is based on Adaptive Cards. Optional. @return bool|null The enableResultTemplate
getEnableResultTemplate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php
MIT
public function setEnableResultTemplate($val) { $this->_propDict["enableResultTemplate"] = $val; return $this; }
Sets the enableResultTemplate Indicates whether search display layouts are enabled. If enabled, the user will get the result template to render the search results content in the resultTemplates property of the response. The result template is based on Adaptive Cards. Optional. @param bool $val The value of the enableResultTemplate @return ResultTemplateOption
setEnableResultTemplate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php
MIT
public function getOffset() { if (array_key_exists("offset", $this->_propDict)) { if (is_a($this->_propDict["offset"], "\DateInterval") || is_null($this->_propDict["offset"])) { return $this->_propDict["offset"]; } else { $this->_propDict["offset"] = new \DateInterval($this->_propDict["offset"]); return $this->_propDict["offset"]; } } return null; }
Gets the offset The amount of time before the start of an appointment that the reminder should be sent. It's denoted in ISO 8601 format. @return \DateInterval|null The offset
getOffset
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
MIT
public function setOffset($val) { $this->_propDict["offset"] = $val; return $this; }
Sets the offset The amount of time before the start of an appointment that the reminder should be sent. It's denoted in ISO 8601 format. @param \DateInterval $val The value to assign to the offset @return BookingReminder The BookingReminder
setOffset
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
MIT
public function getRecipients() { if (array_key_exists("recipients", $this->_propDict)) { if (is_a($this->_propDict["recipients"], "\Microsoft\Graph\Model\BookingReminderRecipients") || is_null($this->_propDict["recipients"])) { return $this->_propDict["recipients"]; } else { $this->_propDict["recipients"] = new BookingReminderRecipients($this->_propDict["recipients"]); return $this->_propDict["recipients"]; } } return null; }
Gets the recipients The persons who should receive the reminder. Possible values are: allAttendees, staff, customer, unknownFutureValue. @return BookingReminderRecipients|null The recipients
getRecipients
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
MIT
public function setRecipients($val) { $this->_propDict["recipients"] = $val; return $this; }
Sets the recipients The persons who should receive the reminder. Possible values are: allAttendees, staff, customer, unknownFutureValue. @param BookingReminderRecipients $val The value to assign to the recipients @return BookingReminder The BookingReminder
setRecipients
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php
MIT
public function getRemediationStatus() { if (array_key_exists("remediationStatus", $this->_propDict)) { if (is_a($this->_propDict["remediationStatus"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EvidenceRemediationStatus") || is_null($this->_propDict["remediationStatus"])) { return $this->_propDict["remediationStatus"]; } else { $this->_propDict["remediationStatus"] = new EvidenceRemediationStatus($this->_propDict["remediationStatus"]); return $this->_propDict["remediationStatus"]; } } return null; }
Gets the remediationStatus Status of the remediation action taken. The possible values are: none, remediated, prevented, blocked, notFound, unknownFutureValue. @return EvidenceRemediationStatus|null The remediationStatus
getRemediationStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function setRemediationStatus($val) { $this->_propDict["remediationStatus"] = $val; return $this; }
Sets the remediationStatus Status of the remediation action taken. The possible values are: none, remediated, prevented, blocked, notFound, unknownFutureValue. @param EvidenceRemediationStatus $val The value to assign to the remediationStatus @return AlertEvidence The AlertEvidence
setRemediationStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function getRemediationStatusDetails() { if (array_key_exists("remediationStatusDetails", $this->_propDict)) { return $this->_propDict["remediationStatusDetails"]; } else { return null; } }
Gets the remediationStatusDetails Details about the remediation status. @return string|null The remediationStatusDetails
getRemediationStatusDetails
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function setRemediationStatusDetails($val) { $this->_propDict["remediationStatusDetails"] = $val; return $this; }
Sets the remediationStatusDetails Details about the remediation status. @param string $val The value of the remediationStatusDetails @return AlertEvidence
setRemediationStatusDetails
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function getRoles() { if (array_key_exists("roles", $this->_propDict)) { if (is_a($this->_propDict["roles"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EvidenceRole") || is_null($this->_propDict["roles"])) { return $this->_propDict["roles"]; } else { $this->_propDict["roles"] = new EvidenceRole($this->_propDict["roles"]); return $this->_propDict["roles"]; } } return null; }
Gets the roles The role/s that an evidence entity represents in an alert, e.g., an IP address that is associated with an attacker will have the evidence role 'Attacker'. @return EvidenceRole|null The roles
getRoles
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function setRoles($val) { $this->_propDict["roles"] = $val; return $this; }
Sets the roles The role/s that an evidence entity represents in an alert, e.g., an IP address that is associated with an attacker will have the evidence role 'Attacker'. @param EvidenceRole $val The value to assign to the roles @return AlertEvidence The AlertEvidence
setRoles
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function getVerdict() { if (array_key_exists("verdict", $this->_propDict)) { if (is_a($this->_propDict["verdict"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EvidenceVerdict") || is_null($this->_propDict["verdict"])) { return $this->_propDict["verdict"]; } else { $this->_propDict["verdict"] = new EvidenceVerdict($this->_propDict["verdict"]); return $this->_propDict["verdict"]; } } return null; }
Gets the verdict The decision reached by automated investigation. The possible values are: unknown, suspicious, malicious, noThreatsFound, unknownFutureValue. @return EvidenceVerdict|null The verdict
getVerdict
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function setVerdict($val) { $this->_propDict["verdict"] = $val; return $this; }
Sets the verdict The decision reached by automated investigation. The possible values are: unknown, suspicious, malicious, noThreatsFound, unknownFutureValue. @param EvidenceVerdict $val The value to assign to the verdict @return AlertEvidence The AlertEvidence
setVerdict
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php
MIT
public function getUploadUrl() { if (array_key_exists("uploadUrl", $this->_propDict)) { return $this->_propDict["uploadUrl"]; } else { return null; } }
Gets the uploadUrl The URL endpoint that accepts PUT requests for byte ranges of the file. @return string|null The uploadUrl
getUploadUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/UploadSession.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php
MIT
public function setUploadUrl($val) { $this->_propDict["uploadUrl"] = $val; return $this; }
Sets the uploadUrl The URL endpoint that accepts PUT requests for byte ranges of the file. @param string $val The value of the uploadUrl @return UploadSession
setUploadUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/UploadSession.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php
MIT
public function setValue($val) { $this->_propDict["value"] = intval($val); return $this; }
Sets the value An unsigned integer value for the associated presentation. @param int $val The value @return GroupPolicyPresentationValueDecimal
setValue
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyPresentationValueDecimal.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyPresentationValueDecimal.php
MIT
function updateInvites(array $sharees) { $this->caldavBackend->updateInvites($this->calendarInfo['id'], $sharees); }
Updates the list of sharees. Every item must be a Sharee object. @param \Sabre\DAV\Xml\Element\Sharee[] $sharees @return void
updateInvites
php
xiebruce/PicUploader
vendor/sabre/dav/lib/CalDAV/SharedCalendar.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php
MIT
public function getDefinitions() { if (array_key_exists("definitions", $this->_propDict)) { return $this->_propDict["definitions"]; } else { return null; } }
Gets the definitions Represents the template and scheduling for an access review. @return array|null The definitions
getDefinitions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
MIT
public function setDefinitions($val) { $this->_propDict["definitions"] = $val; return $this; }
Sets the definitions Represents the template and scheduling for an access review. @param AccessReviewScheduleDefinition[] $val The definitions @return AccessReviewSet
setDefinitions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
MIT
public function getHistoryDefinitions() { if (array_key_exists("historyDefinitions", $this->_propDict)) { return $this->_propDict["historyDefinitions"]; } else { return null; } }
Gets the historyDefinitions Represents a collection of access review history data and the scopes used to collect that data. @return array|null The historyDefinitions
getHistoryDefinitions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
MIT
public function setHistoryDefinitions($val) { $this->_propDict["historyDefinitions"] = $val; return $this; }
Sets the historyDefinitions Represents a collection of access review history data and the scopes used to collect that data. @param AccessReviewHistoryDefinition[] $val The historyDefinitions @return AccessReviewSet
setHistoryDefinitions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
MIT
public function getPolicy() { if (array_key_exists("policy", $this->_propDict)) { if (is_a($this->_propDict["policy"], "\Beta\Microsoft\Graph\Model\AccessReviewPolicy") || is_null($this->_propDict["policy"])) { return $this->_propDict["policy"]; } else { $this->_propDict["policy"] = new AccessReviewPolicy($this->_propDict["policy"]); return $this->_propDict["policy"]; } } return null; }
Gets the policy Resource that enables administrators to manage directory-level access review policies in their tenant. @return AccessReviewPolicy|null The policy
getPolicy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php
MIT
public function getTargetType() { if (array_key_exists("targetType", $this->_propDict)) { if (is_a($this->_propDict["targetType"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyTargetType") || is_null($this->_propDict["targetType"])) { return $this->_propDict["targetType"]; } else { $this->_propDict["targetType"] = new CrossTenantAccessPolicyTargetType($this->_propDict["targetType"]); return $this->_propDict["targetType"]; } } return null; }
Gets the targetType The type of resource that you want to target. The possible values are: user, group, application, unknownFutureValue. @return CrossTenantAccessPolicyTargetType|null The targetType
getTargetType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyTarget.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyTarget.php
MIT
public function getLastUsed() { if (array_key_exists("lastUsed", $this->_propDict)) { if (is_a($this->_propDict["lastUsed"], "\Beta\Microsoft\Graph\Model\UsageDetails") || is_null($this->_propDict["lastUsed"])) { return $this->_propDict["lastUsed"]; } else { $this->_propDict["lastUsed"] = new UsageDetails($this->_propDict["lastUsed"]); return $this->_propDict["lastUsed"]; } } return null; }
Gets the lastUsed Information about when the item was last viewed or modified by the user. Read only. @return UsageDetails|null The lastUsed
getLastUsed
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
MIT
public function setLastUsed($val) { $this->_propDict["lastUsed"] = $val; return $this; }
Sets the lastUsed Information about when the item was last viewed or modified by the user. Read only. @param UsageDetails $val The lastUsed @return UsedInsight
setLastUsed
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
MIT
public function getResourceReference() { if (array_key_exists("resourceReference", $this->_propDict)) { if (is_a($this->_propDict["resourceReference"], "\Beta\Microsoft\Graph\Model\ResourceReference") || is_null($this->_propDict["resourceReference"])) { return $this->_propDict["resourceReference"]; } else { $this->_propDict["resourceReference"] = new ResourceReference($this->_propDict["resourceReference"]); return $this->_propDict["resourceReference"]; } } return null; }
Gets the resourceReference Reference properties of the used document, such as the url and type of the document. Read-only @return ResourceReference|null The resourceReference
getResourceReference
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
MIT
public function getResourceVisualization() { if (array_key_exists("resourceVisualization", $this->_propDict)) { if (is_a($this->_propDict["resourceVisualization"], "\Beta\Microsoft\Graph\Model\ResourceVisualization") || is_null($this->_propDict["resourceVisualization"])) { return $this->_propDict["resourceVisualization"]; } else { $this->_propDict["resourceVisualization"] = new ResourceVisualization($this->_propDict["resourceVisualization"]); return $this->_propDict["resourceVisualization"]; } } return null; }
Gets the resourceVisualization Properties that you can use to visualize the document in your experience. Read-only @return ResourceVisualization|null The resourceVisualization
getResourceVisualization
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
MIT
public function getResource() { if (array_key_exists("resource", $this->_propDict)) { if (is_a($this->_propDict["resource"], "\Beta\Microsoft\Graph\Model\Entity") || is_null($this->_propDict["resource"])) { return $this->_propDict["resource"]; } else { $this->_propDict["resource"] = new Entity($this->_propDict["resource"]); return $this->_propDict["resource"]; } } return null; }
Gets the resource Used for navigating to the item that was used. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem. @return Entity|null The resource
getResource
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsedInsight.php
MIT
public function setContentTypeHeader($header = 'application/json') { $this->jsonContentType = $header; return $this; }
Set the Content-Type header to add to the request if JSON is added to the body. This visitor does not add a Content-Type header unless you specify one here. @param string $header Header to set when JSON is added (e.g. application/json) @return self
setContentTypeHeader
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php
MIT
public function getAudio() { if (array_key_exists("audio", $this->_propDict)) { if (is_a($this->_propDict["audio"], "\Beta\Microsoft\Graph\Model\Audio") || is_null($this->_propDict["audio"])) { return $this->_propDict["audio"]; } else { $this->_propDict["audio"] = new Audio($this->_propDict["audio"]); return $this->_propDict["audio"]; } } return null; }
Gets the audio Audio metadata, if the item is an audio file. Read-only. Only on OneDrive Personal. @return Audio|null The audio
getAudio
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function getMedia() { if (array_key_exists("media", $this->_propDict)) { if (is_a($this->_propDict["media"], "\Beta\Microsoft\Graph\Model\Media") || is_null($this->_propDict["media"])) { return $this->_propDict["media"]; } else { $this->_propDict["media"] = new Media($this->_propDict["media"]); return $this->_propDict["media"]; } } return null; }
Gets the media Information about the media (audio or video) item. Read-write. Only on OneDrive for Business and SharePoint. @return Media|null The media
getMedia
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function setMedia($val) { $this->_propDict["media"] = $val; return $this; }
Sets the media Information about the media (audio or video) item. Read-write. Only on OneDrive for Business and SharePoint. @param Media $val The media @return DriveItem
setMedia
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function getPendingOperations() { if (array_key_exists("pendingOperations", $this->_propDict)) { if (is_a($this->_propDict["pendingOperations"], "\Beta\Microsoft\Graph\Model\PendingOperations") || is_null($this->_propDict["pendingOperations"])) { return $this->_propDict["pendingOperations"]; } else { $this->_propDict["pendingOperations"] = new PendingOperations($this->_propDict["pendingOperations"]); return $this->_propDict["pendingOperations"]; } } return null; }
Gets the pendingOperations If present, indicates that indicates that one or more operations that may affect the state of the driveItem are pending completion. Read-only. @return PendingOperations|null The pendingOperations
getPendingOperations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function getPublication() { if (array_key_exists("publication", $this->_propDict)) { if (is_a($this->_propDict["publication"], "\Beta\Microsoft\Graph\Model\PublicationFacet") || is_null($this->_propDict["publication"])) { return $this->_propDict["publication"]; } else { $this->_propDict["publication"] = new PublicationFacet($this->_propDict["publication"]); return $this->_propDict["publication"]; } } return null; }
Gets the publication Provides information about the published or checked-out state of an item, in locations that support such actions. This property is not returned by default. Read-only. @return PublicationFacet|null The publication
getPublication
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function getSource() { if (array_key_exists("source", $this->_propDict)) { if (is_a($this->_propDict["source"], "\Beta\Microsoft\Graph\Model\DriveItemSource") || is_null($this->_propDict["source"])) { return $this->_propDict["source"]; } else { $this->_propDict["source"] = new DriveItemSource($this->_propDict["source"]); return $this->_propDict["source"]; } } return null; }
Gets the source Information about the drive item source. Read-only. Only on OneDrive for Business and SharePoint. @return DriveItemSource|null The source
getSource
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function getListItem() { if (array_key_exists("listItem", $this->_propDict)) { if (is_a($this->_propDict["listItem"], "\Beta\Microsoft\Graph\Model\ListItem") || is_null($this->_propDict["listItem"])) { return $this->_propDict["listItem"]; } else { $this->_propDict["listItem"] = new ListItem($this->_propDict["listItem"]); return $this->_propDict["listItem"]; } } return null; }
Gets the listItem For drives in SharePoint, the associated document library list item. Read-only. Nullable. @return ListItem|null The listItem
getListItem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DriveItem.php
MIT
public function getContextScenarioId() { if (array_key_exists("contextScenarioId", $this->_propDict)) { return $this->_propDict["contextScenarioId"]; } else { return null; } }
Gets the contextScenarioId Nullable. An identifier for the scenario associated with this external source. This should be in reverse DNS format. For example, Contoso company owned application for customer support would have a value like 'com.constoso.customerSupport'. @return string|null The contextScenarioId
getContextScenarioId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function setContextScenarioId($val) { $this->_propDict["contextScenarioId"] = $val; return $this; }
Sets the contextScenarioId Nullable. An identifier for the scenario associated with this external source. This should be in reverse DNS format. For example, Contoso company owned application for customer support would have a value like 'com.constoso.customerSupport'. @param string $val The value of the contextScenarioId @return PlannerExternalTaskSource
setContextScenarioId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function getDisplayLinkType() { if (array_key_exists("displayLinkType", $this->_propDict)) { if (is_a($this->_propDict["displayLinkType"], "\Beta\Microsoft\Graph\Model\PlannerExternalTaskSourceDisplayType") || is_null($this->_propDict["displayLinkType"])) { return $this->_propDict["displayLinkType"]; } else { $this->_propDict["displayLinkType"] = new PlannerExternalTaskSourceDisplayType($this->_propDict["displayLinkType"]); return $this->_propDict["displayLinkType"]; } } return null; }
Gets the displayLinkType Specifies how an application should display the link to the associated plannerExternalTaskSource. The possible values are: none, default. @return PlannerExternalTaskSourceDisplayType|null The displayLinkType
getDisplayLinkType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function getDisplayNameSegments() { if (array_key_exists("displayNameSegments", $this->_propDict)) { return $this->_propDict["displayNameSegments"]; } else { return null; } }
Gets the displayNameSegments The segments of the name of the external experience. Segments represent a hierarchical structure that allows other apps to display the relationship. @return string|null The displayNameSegments
getDisplayNameSegments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function setDisplayNameSegments($val) { $this->_propDict["displayNameSegments"] = $val; return $this; }
Sets the displayNameSegments The segments of the name of the external experience. Segments represent a hierarchical structure that allows other apps to display the relationship. @param string $val The value of the displayNameSegments @return PlannerExternalTaskSource
setDisplayNameSegments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function getExternalContextId() { if (array_key_exists("externalContextId", $this->_propDict)) { return $this->_propDict["externalContextId"]; } else { return null; } }
Gets the externalContextId Nullable. The id of the external entity's containing entity or context. @return string|null The externalContextId
getExternalContextId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function setExternalContextId($val) { $this->_propDict["externalContextId"] = $val; return $this; }
Sets the externalContextId Nullable. The id of the external entity's containing entity or context. @param string $val The value of the externalContextId @return PlannerExternalTaskSource
setExternalContextId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function getExternalObjectId() { if (array_key_exists("externalObjectId", $this->_propDict)) { return $this->_propDict["externalObjectId"]; } else { return null; } }
Gets the externalObjectId Nullable. The id of the entity that an external service associates with a task. @return string|null The externalObjectId
getExternalObjectId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function setExternalObjectId($val) { $this->_propDict["externalObjectId"] = $val; return $this; }
Sets the externalObjectId Nullable. The id of the entity that an external service associates with a task. @param string $val The value of the externalObjectId @return PlannerExternalTaskSource
setExternalObjectId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function getExternalObjectVersion() { if (array_key_exists("externalObjectVersion", $this->_propDict)) { return $this->_propDict["externalObjectVersion"]; } else { return null; } }
Gets the externalObjectVersion Nullable. The external Item Version for the object specified by the externalObjectId. @return string|null The externalObjectVersion
getExternalObjectVersion
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function setExternalObjectVersion($val) { $this->_propDict["externalObjectVersion"] = $val; return $this; }
Sets the externalObjectVersion Nullable. The external Item Version for the object specified by the externalObjectId. @param string $val The value of the externalObjectVersion @return PlannerExternalTaskSource
setExternalObjectVersion
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlannerExternalTaskSource.php
MIT
public function getOwnerAppIds() { if (array_key_exists("ownerAppIds", $this->_propDict)) { return $this->_propDict["ownerAppIds"]; } else { return null; } }
Gets the ownerAppIds Identifiers of applications that are authorized to work with this scenario. @return array|null The ownerAppIds
getOwnerAppIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
MIT
public function setOwnerAppIds($val) { $this->_propDict["ownerAppIds"] = $val; return $this; }
Sets the ownerAppIds Identifiers of applications that are authorized to work with this scenario. @param string[] $val The ownerAppIds @return BusinessScenario
setOwnerAppIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
MIT
public function getUniqueName() { if (array_key_exists("uniqueName", $this->_propDict)) { return $this->_propDict["uniqueName"]; } else { return null; } }
Gets the uniqueName Unique name of the scenario. To avoid conflicts, the recommended value for the unique name is a reverse domain name format, owned by the author of the scenario. For example, a scenario authored by Contoso.com would have a unique name that starts with com.contoso. @return string|null The uniqueName
getUniqueName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
MIT
public function setUniqueName($val) { $this->_propDict["uniqueName"] = $val; return $this; }
Sets the uniqueName Unique name of the scenario. To avoid conflicts, the recommended value for the unique name is a reverse domain name format, owned by the author of the scenario. For example, a scenario authored by Contoso.com would have a unique name that starts with com.contoso. @param string $val The uniqueName @return BusinessScenario
setUniqueName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
MIT
public function getPlanner() { if (array_key_exists("planner", $this->_propDict)) { if (is_a($this->_propDict["planner"], "\Beta\Microsoft\Graph\Model\BusinessScenarioPlanner") || is_null($this->_propDict["planner"])) { return $this->_propDict["planner"]; } else { $this->_propDict["planner"] = new BusinessScenarioPlanner($this->_propDict["planner"]); return $this->_propDict["planner"]; } } return null; }
Gets the planner Planner content related to the scenario. @return BusinessScenarioPlanner|null The planner
getPlanner
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BusinessScenario.php
MIT
public function getAssigneeUserPrincipalName() { if (array_key_exists("assigneeUserPrincipalName", $this->_propDict)) { return $this->_propDict["assigneeUserPrincipalName"]; } else { return null; } }
Gets the assigneeUserPrincipalName @return string|null The assigneeUserPrincipalName
getAssigneeUserPrincipalName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
MIT
public function setAssigneeUserPrincipalName($val) { $this->_propDict["assigneeUserPrincipalName"] = $val; return $this; }
Sets the assigneeUserPrincipalName @param string $val The assigneeUserPrincipalName @return RedundantAssignmentAlertIncident
setAssigneeUserPrincipalName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
MIT
public function getLastActivationDateTime() { if (array_key_exists("lastActivationDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastActivationDateTime"], "\DateTime") || is_null($this->_propDict["lastActivationDateTime"])) { return $this->_propDict["lastActivationDateTime"]; } else { $this->_propDict["lastActivationDateTime"] = new \DateTime($this->_propDict["lastActivationDateTime"]); return $this->_propDict["lastActivationDateTime"]; } } return null; }
Gets the lastActivationDateTime @return \DateTime|null The lastActivationDateTime
getLastActivationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
MIT
public function setLastActivationDateTime($val) { $this->_propDict["lastActivationDateTime"] = $val; return $this; }
Sets the lastActivationDateTime @param \DateTime $val The lastActivationDateTime @return RedundantAssignmentAlertIncident
setLastActivationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RedundantAssignmentAlertIncident.php
MIT
public function getFileContent() { if (array_key_exists("fileContent", $this->_propDict)) { return $this->_propDict["fileContent"]; } else { return null; } }
Gets the fileContent Base64 encoded file content. @return string|null The fileContent
getFileContent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailContentThreatSubmission.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailContentThreatSubmission.php
MIT
public function setFileContent($val) { $this->_propDict["fileContent"] = $val; return $this; }
Sets the fileContent Base64 encoded file content. @param string $val The fileContent @return EmailContentThreatSubmission
setFileContent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailContentThreatSubmission.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailContentThreatSubmission.php
MIT
public function onRequestBeforeSend(Event $event) { $request = $event['request']; $request->addHeader('Via', sprintf('%s GuzzleCache/%s', $request->getProtocolVersion(), Version::VERSION)); if (!$this->canCache->canCacheRequest($request)) { switch ($request->getMethod()) { case 'PURGE': $this->purge($request); $request->setResponse(new Response(200, array(), 'purged')); break; case 'PUT': case 'POST': case 'DELETE': case 'PATCH': if ($this->autoPurge) { $this->purge($request); } } return; } if ($response = $this->storage->fetch($request)) { $params = $request->getParams(); $params['cache.lookup'] = true; $response->setHeader( 'Age', time() - strtotime($response->getDate() ? : $response->getLastModified() ?: 'now') ); // Validate that the response satisfies the request if ($this->canResponseSatisfyRequest($request, $response)) { if (!isset($params['cache.hit'])) { $params['cache.hit'] = true; } $request->setResponse($response); } } }
Check if a response in cache will satisfy the request before sending @param Event $event
onRequestBeforeSend
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function onRequestSent(Event $event) { $request = $event['request']; $response = $event['response']; if ($request->getParams()->get('cache.hit') === null && $this->canCache->canCacheRequest($request) && $this->canCache->canCacheResponse($response) ) { $this->storage->cache($request, $response); } $this->addResponseHeaders($request, $response); }
If possible, store a response in cache after sending @param Event $event
onRequestSent
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function onRequestError(Event $event) { $request = $event['request']; if (!$this->canCache->canCacheRequest($request)) { return; } if ($response = $this->storage->fetch($request)) { $response->setHeader( 'Age', time() - strtotime($response->getLastModified() ? : $response->getDate() ?: 'now') ); if ($this->canResponseSatisfyFailedRequest($request, $response)) { $request->getParams()->set('cache.hit', 'error'); $this->addResponseHeaders($request, $response); $event['response'] = $response; $event->stopPropagation(); } } }
If possible, return a cache response on an error @param Event $event
onRequestError
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function onRequestException(Event $event) { if (!$event['exception'] instanceof CurlException) { return; } $request = $event['request']; if (!$this->canCache->canCacheRequest($request)) { return; } if ($response = $this->storage->fetch($request)) { $response->setHeader('Age', time() - strtotime($response->getDate() ? : 'now')); if (!$this->canResponseSatisfyFailedRequest($request, $response)) { return; } $request->getParams()->set('cache.hit', 'error'); $request->setResponse($response); $this->addResponseHeaders($request, $response); $event->stopPropagation(); } }
If possible, set a cache response on a cURL exception @param Event $event @return null
onRequestException
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function canResponseSatisfyRequest(RequestInterface $request, Response $response) { $responseAge = $response->calculateAge(); $reqc = $request->getHeader('Cache-Control'); $resc = $response->getHeader('Cache-Control'); // Check the request's max-age header against the age of the response if ($reqc && $reqc->hasDirective('max-age') && $responseAge > $reqc->getDirective('max-age')) { return false; } // Check the response's max-age header if ($response->isFresh() === false) { $maxStale = $reqc ? $reqc->getDirective('max-stale') : null; if (null !== $maxStale) { if ($maxStale !== true && $response->getFreshness() < (-1 * $maxStale)) { return false; } } elseif ($resc && $resc->hasDirective('max-age') && $responseAge > $resc->getDirective('max-age') ) { return false; } } if ($this->revalidation->shouldRevalidate($request, $response)) { try { return $this->revalidation->revalidate($request, $response); } catch (CurlException $e) { $request->getParams()->set('cache.hit', 'error'); return $this->canResponseSatisfyFailedRequest($request, $response); } } return true; }
Check if a cache response satisfies a request's caching constraints @param RequestInterface $request Request to validate @param Response $response Response to validate @return bool
canResponseSatisfyRequest
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function canResponseSatisfyFailedRequest(RequestInterface $request, Response $response) { $reqc = $request->getHeader('Cache-Control'); $resc = $response->getHeader('Cache-Control'); $requestStaleIfError = $reqc ? $reqc->getDirective('stale-if-error') : null; $responseStaleIfError = $resc ? $resc->getDirective('stale-if-error') : null; if (!$requestStaleIfError && !$responseStaleIfError) { return false; } if (is_numeric($requestStaleIfError) && $response->getAge() - $response->getMaxAge() > $requestStaleIfError) { return false; } if (is_numeric($responseStaleIfError) && $response->getAge() - $response->getMaxAge() > $responseStaleIfError) { return false; } return true; }
Check if a cache response satisfies a failed request's caching constraints @param RequestInterface $request Request to validate @param Response $response Response to validate @return bool
canResponseSatisfyFailedRequest
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function purge($url) { // BC compatibility with previous version that accepted a Request object $url = $url instanceof RequestInterface ? $url->getUrl() : $url; $this->storage->purge($url); }
Purge all cache entries for a given URL @param string $url URL to purge
purge
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
protected function addResponseHeaders(RequestInterface $request, Response $response) { $params = $request->getParams(); $response->setHeader('Via', sprintf('%s GuzzleCache/%s', $request->getProtocolVersion(), Version::VERSION)); $lookup = ($params['cache.lookup'] === true ? 'HIT' : 'MISS') . ' from GuzzleCache'; if ($header = $response->getHeader('X-Cache-Lookup')) { // Don't add duplicates $values = $header->toArray(); $values[] = $lookup; $response->setHeader('X-Cache-Lookup', array_unique($values)); } else { $response->setHeader('X-Cache-Lookup', $lookup); } if ($params['cache.hit'] === true) { $xcache = 'HIT from GuzzleCache'; } elseif ($params['cache.hit'] == 'error') { $xcache = 'HIT_ERROR from GuzzleCache'; } else { $xcache = 'MISS from GuzzleCache'; } if ($header = $response->getHeader('X-Cache')) { // Don't add duplicates $values = $header->toArray(); $values[] = $xcache; $response->setHeader('X-Cache', array_unique($values)); } else { $response->setHeader('X-Cache', $xcache); } if ($response->isFresh() === false) { $response->addHeader('Warning', sprintf('110 GuzzleCache/%s "Response is stale"', Version::VERSION)); if ($params['cache.hit'] === 'error') { $response->addHeader('Warning', sprintf('111 GuzzleCache/%s "Revalidation failed"', Version::VERSION)); } } }
Add the plugin's headers to a response @param RequestInterface $request Request @param Response $response Response to add headers to
addResponseHeaders
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php
MIT
public function getAllowSessionsToUnenrolledDevices() { if (array_key_exists("allowSessionsToUnenrolledDevices", $this->_propDict)) { return $this->_propDict["allowSessionsToUnenrolledDevices"]; } else { return null; } }
Gets the allowSessionsToUnenrolledDevices Indicates if sessions to unenrolled devices are allowed for the account. This setting is configurable by the admin. Default value is false. @return bool|null The allowSessionsToUnenrolledDevices
getAllowSessionsToUnenrolledDevices
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
MIT
public function setAllowSessionsToUnenrolledDevices($val) { $this->_propDict["allowSessionsToUnenrolledDevices"] = boolval($val); return $this; }
Sets the allowSessionsToUnenrolledDevices Indicates if sessions to unenrolled devices are allowed for the account. This setting is configurable by the admin. Default value is false. @param bool $val The allowSessionsToUnenrolledDevices @return RemoteAssistanceSettings
setAllowSessionsToUnenrolledDevices
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
MIT
public function getBlockChat() { if (array_key_exists("blockChat", $this->_propDict)) { return $this->_propDict["blockChat"]; } else { return null; } }
Gets the blockChat Indicates if sessions to block chat function. This setting is configurable by the admin. Default value is false. @return bool|null The blockChat
getBlockChat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
MIT
public function setBlockChat($val) { $this->_propDict["blockChat"] = boolval($val); return $this; }
Sets the blockChat Indicates if sessions to block chat function. This setting is configurable by the admin. Default value is false. @param bool $val The blockChat @return RemoteAssistanceSettings
setBlockChat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
MIT
public function getRemoteAssistanceState() { if (array_key_exists("remoteAssistanceState", $this->_propDict)) { if (is_a($this->_propDict["remoteAssistanceState"], "\Beta\Microsoft\Graph\Model\RemoteAssistanceState") || is_null($this->_propDict["remoteAssistanceState"])) { return $this->_propDict["remoteAssistanceState"]; } else { $this->_propDict["remoteAssistanceState"] = new RemoteAssistanceState($this->_propDict["remoteAssistanceState"]); return $this->_propDict["remoteAssistanceState"]; } } return null; }
Gets the remoteAssistanceState The current state of remote assistance for the account. Possible values are: disabled, enabled. This setting is configurable by the admin. Remote assistance settings that have not yet been configured by the admin have a disabled state. Returned by default. Possible values are: disabled, enabled. @return RemoteAssistanceState|null The remoteAssistanceState
getRemoteAssistanceState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
MIT
public function setRemoteAssistanceState($val) { $this->_propDict["remoteAssistanceState"] = $val; return $this; }
Sets the remoteAssistanceState The current state of remote assistance for the account. Possible values are: disabled, enabled. This setting is configurable by the admin. Remote assistance settings that have not yet been configured by the admin have a disabled state. Returned by default. Possible values are: disabled, enabled. @param RemoteAssistanceState $val The remoteAssistanceState @return RemoteAssistanceSettings
setRemoteAssistanceState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistanceSettings.php
MIT
public function getAppliesTo() { if (array_key_exists("appliesTo", $this->_propDict)) { return $this->_propDict["appliesTo"]; } else { return null; } }
Gets the appliesTo The object the service plan can be assigned to. The possible values are:User - service plan can be assigned to individual users.Company - service plan can be assigned to the entire tenant. @return string|null The appliesTo
getAppliesTo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
MIT
public function setAppliesTo($val) { $this->_propDict["appliesTo"] = $val; return $this; }
Sets the appliesTo The object the service plan can be assigned to. The possible values are:User - service plan can be assigned to individual users.Company - service plan can be assigned to the entire tenant. @param string $val The value of the appliesTo @return ServicePlanInfo
setAppliesTo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
MIT
public function getProvisioningStatus() { if (array_key_exists("provisioningStatus", $this->_propDict)) { return $this->_propDict["provisioningStatus"]; } else { return null; } }
Gets the provisioningStatus The provisioning status of the service plan. The possible values are:Success - Service is fully provisioned.Disabled - Service has been disabled.ErrorStatus - The service plan has not been provisioned and is in an error state.PendingInput - Service is not yet provisioned; awaiting service confirmation.PendingActivation - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)PendingProvisioning - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet. @return string|null The provisioningStatus
getProvisioningStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
MIT
public function setProvisioningStatus($val) { $this->_propDict["provisioningStatus"] = $val; return $this; }
Sets the provisioningStatus The provisioning status of the service plan. The possible values are:Success - Service is fully provisioned.Disabled - Service has been disabled.ErrorStatus - The service plan has not been provisioned and is in an error state.PendingInput - Service is not yet provisioned; awaiting service confirmation.PendingActivation - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)PendingProvisioning - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet. @param string $val The value of the provisioningStatus @return ServicePlanInfo
setProvisioningStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePlanInfo.php
MIT
public function getFormat() { if (array_key_exists("format", $this->_propDict)) { if (is_a($this->_propDict["format"], "\Beta\Microsoft\Graph\Model\ContentFormat") || is_null($this->_propDict["format"])) { return $this->_propDict["format"]; } else { $this->_propDict["format"] = new ContentFormat($this->_propDict["format"]); return $this->_propDict["format"]; } } return null; }
Gets the format Possible values are: default, email. @return ContentFormat|null The format
getFormat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
MIT
public function getIdentifier() { if (array_key_exists("identifier", $this->_propDict)) { return $this->_propDict["identifier"]; } else { return null; } }
Gets the identifier Identifier used for Azure Information Protection Analytics. @return string|null The identifier
getIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
MIT
public function setIdentifier($val) { $this->_propDict["identifier"] = $val; return $this; }
Sets the identifier Identifier used for Azure Information Protection Analytics. @param string $val The value of the identifier @return ContentInfo
setIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
MIT
public function getMetadata() { if (array_key_exists("metadata", $this->_propDict)) { if (is_a($this->_propDict["metadata"], "\Beta\Microsoft\Graph\Model\KeyValuePair") || is_null($this->_propDict["metadata"])) { return $this->_propDict["metadata"]; } else { $this->_propDict["metadata"] = new KeyValuePair($this->_propDict["metadata"]); return $this->_propDict["metadata"]; } } return null; }
Gets the metadata Existing Microsoft Purview Information Protection metadata is passed as key/value pairs, where the key is the MSIP_Label_GUID_PropName. @return KeyValuePair|null The metadata
getMetadata
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
MIT
public function getState() { if (array_key_exists("state", $this->_propDict)) { if (is_a($this->_propDict["state"], "\Beta\Microsoft\Graph\Model\ContentState") || is_null($this->_propDict["state"])) { return $this->_propDict["state"]; } else { $this->_propDict["state"] = new ContentState($this->_propDict["state"]); return $this->_propDict["state"]; } } return null; }
Gets the state Possible values are: rest, motion, use. @return ContentState|null The state
getState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ContentInfo.php
MIT
public function getConfigurationAppliedUserCount() { if (array_key_exists("configurationAppliedUserCount", $this->_propDict)) { return $this->_propDict["configurationAppliedUserCount"]; } else { return null; } }
Gets the configurationAppliedUserCount Number of users the policy is applied. @return int|null The configurationAppliedUserCount
getConfigurationAppliedUserCount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php
MIT
public function setConfigurationAppliedUserCount($val) { $this->_propDict["configurationAppliedUserCount"] = $val; return $this; }
Sets the configurationAppliedUserCount Number of users the policy is applied. @param int $val The value of the configurationAppliedUserCount @return ManagedAppPolicyDeploymentSummaryPerApp
setConfigurationAppliedUserCount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php
MIT
public function getMobileAppIdentifier() { if (array_key_exists("mobileAppIdentifier", $this->_propDict)) { if (is_a($this->_propDict["mobileAppIdentifier"], "\Microsoft\Graph\Model\MobileAppIdentifier") || is_null($this->_propDict["mobileAppIdentifier"])) { return $this->_propDict["mobileAppIdentifier"]; } else { $this->_propDict["mobileAppIdentifier"] = new MobileAppIdentifier($this->_propDict["mobileAppIdentifier"]); return $this->_propDict["mobileAppIdentifier"]; } } return null; }
Gets the mobileAppIdentifier Deployment of an app. @return MobileAppIdentifier|null The mobileAppIdentifier
getMobileAppIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php
MIT