code
stringlengths 17
296k
| 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 getAzureCommunicationServicesId()
{
if (array_key_exists("azureCommunicationServicesId", $this->_propDict)) {
return $this->_propDict["azureCommunicationServicesId"];
} else {
return null;
}
} | Gets the azureCommunicationServicesId
Azure Communication Services ID of the user.
@return string|null The azureCommunicationServicesId | getAzureCommunicationServicesId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AzureCommunicationServicesUserConversationMember.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AzureCommunicationServicesUserConversationMember.php | MIT |
public function setAzureCommunicationServicesId($val)
{
$this->_propDict["azureCommunicationServicesId"] = $val;
return $this;
} | Sets the azureCommunicationServicesId
Azure Communication Services ID of the user.
@param string $val The azureCommunicationServicesId
@return AzureCommunicationServicesUserConversationMember | setAzureCommunicationServicesId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AzureCommunicationServicesUserConversationMember.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AzureCommunicationServicesUserConversationMember.php | MIT |
public function getEnableModification()
{
if (array_key_exists("enableModification", $this->_propDict)) {
return $this->_propDict["enableModification"];
} else {
return null;
}
} | Gets the enableModification
Indicates whether spelling modifications are enabled. If enabled, user will get the search results for corrected query when there are no results for the original query with typos and get the spelling modification information in queryAlterationResponse property of the response. Optional.
@return bool|null The enableModification | getEnableModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | MIT |
public function setEnableModification($val)
{
$this->_propDict["enableModification"] = $val;
return $this;
} | Sets the enableModification
Indicates whether spelling modifications are enabled. If enabled, user will get the search results for corrected query when there are no results for the original query with typos and get the spelling modification information in queryAlterationResponse property of the response. Optional.
@param bool $val The value of the enableModification
@return SearchAlterationOptions | setEnableModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | MIT |
public function getEnableSuggestion()
{
if (array_key_exists("enableSuggestion", $this->_propDict)) {
return $this->_propDict["enableSuggestion"];
} else {
return null;
}
} | Gets the enableSuggestion
Indicates whether spelling suggestions are enabled. If enabled, the user will get the search results for the original search query and suggestions for spelling correction in the queryAlterationResponse property of the response for the typos in the query. Optional.
@return bool|null The enableSuggestion | getEnableSuggestion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | MIT |
public function setEnableSuggestion($val)
{
$this->_propDict["enableSuggestion"] = $val;
return $this;
} | Sets the enableSuggestion
Indicates whether spelling suggestions are enabled. If enabled, the user will get the search results for the original search query and suggestions for spelling correction in the queryAlterationResponse property of the response for the typos in the query. Optional.
@param bool $val The value of the enableSuggestion
@return SearchAlterationOptions | setEnableSuggestion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SearchAlterationOptions.php | MIT |
public function getProvider()
{
if (array_key_exists("provider", $this->_propDict)) {
return $this->_propDict["provider"];
} else {
return null;
}
} | Gets the provider
Specific provider (product/service - not vendor company); for example, WindowsDefenderATP.
@return string|null The provider | getProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function setProvider($val)
{
$this->_propDict["provider"] = $val;
return $this;
} | Sets the provider
Specific provider (product/service - not vendor company); for example, WindowsDefenderATP.
@param string $val The value of the provider
@return SecurityVendorInformation | setProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function getProviderVersion()
{
if (array_key_exists("providerVersion", $this->_propDict)) {
return $this->_propDict["providerVersion"];
} else {
return null;
}
} | Gets the providerVersion
Version of the provider or subprovider, if it exists, that generated the alert. Required
@return string|null The providerVersion | getProviderVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function setProviderVersion($val)
{
$this->_propDict["providerVersion"] = $val;
return $this;
} | Sets the providerVersion
Version of the provider or subprovider, if it exists, that generated the alert. Required
@param string $val The value of the providerVersion
@return SecurityVendorInformation | setProviderVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function getSubProvider()
{
if (array_key_exists("subProvider", $this->_propDict)) {
return $this->_propDict["subProvider"];
} else {
return null;
}
} | Gets the subProvider
Specific subprovider (under aggregating provider); for example, WindowsDefenderATP.SmartScreen.
@return string|null The subProvider | getSubProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function setSubProvider($val)
{
$this->_propDict["subProvider"] = $val;
return $this;
} | Sets the subProvider
Specific subprovider (under aggregating provider); for example, WindowsDefenderATP.SmartScreen.
@param string $val The value of the subProvider
@return SecurityVendorInformation | setSubProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function getVendor()
{
if (array_key_exists("vendor", $this->_propDict)) {
return $this->_propDict["vendor"];
} else {
return null;
}
} | Gets the vendor
Name of the alert vendor (for example, Microsoft, Dell, FireEye). Required
@return string|null The vendor | getVendor | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function setVendor($val)
{
$this->_propDict["vendor"] = $val;
return $this;
} | Sets the vendor
Name of the alert vendor (for example, Microsoft, Dell, FireEye). Required
@param string $val The value of the vendor
@return SecurityVendorInformation | setVendor | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SecurityVendorInformation.php | MIT |
public function getGroup()
{
if (array_key_exists("group", $this->_propDict)) {
if (is_a($this->_propDict["group"], "\Beta\Microsoft\Graph\Model\PrivilegedAccessGroup") || is_null($this->_propDict["group"])) {
return $this->_propDict["group"];
} else {
$this->_propDict["group"] = new PrivilegedAccessGroup($this->_propDict["group"]);
return $this->_propDict["group"];
}
}
return null;
} | Gets the group
A group that's governed through Privileged Identity Management (PIM).
@return PrivilegedAccessGroup|null The group | getGroup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrivilegedAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrivilegedAccessRoot.php | MIT |
public function setGroup($val)
{
$this->_propDict["group"] = $val;
return $this;
} | Sets the group
A group that's governed through Privileged Identity Management (PIM).
@param PrivilegedAccessGroup $val The group
@return PrivilegedAccessRoot | setGroup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrivilegedAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrivilegedAccessRoot.php | MIT |
public function getBlackAndWhitePageCount()
{
if (array_key_exists("blackAndWhitePageCount", $this->_propDict)) {
return $this->_propDict["blackAndWhitePageCount"];
} else {
return null;
}
} | Gets the blackAndWhitePageCount
@return int|null The blackAndWhitePageCount | getBlackAndWhitePageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function setBlackAndWhitePageCount($val)
{
$this->_propDict["blackAndWhitePageCount"] = intval($val);
return $this;
} | Sets the blackAndWhitePageCount
@param int $val The blackAndWhitePageCount
@return PrintUsage | setBlackAndWhitePageCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function getCompletedBlackAndWhiteJobCount()
{
if (array_key_exists("completedBlackAndWhiteJobCount", $this->_propDict)) {
return $this->_propDict["completedBlackAndWhiteJobCount"];
} else {
return null;
}
} | Gets the completedBlackAndWhiteJobCount
@return int|null The completedBlackAndWhiteJobCount | getCompletedBlackAndWhiteJobCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function setCompletedBlackAndWhiteJobCount($val)
{
$this->_propDict["completedBlackAndWhiteJobCount"] = intval($val);
return $this;
} | Sets the completedBlackAndWhiteJobCount
@param int $val The completedBlackAndWhiteJobCount
@return PrintUsage | setCompletedBlackAndWhiteJobCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function getCompletedColorJobCount()
{
if (array_key_exists("completedColorJobCount", $this->_propDict)) {
return $this->_propDict["completedColorJobCount"];
} else {
return null;
}
} | Gets the completedColorJobCount
@return int|null The completedColorJobCount | getCompletedColorJobCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function setCompletedColorJobCount($val)
{
$this->_propDict["completedColorJobCount"] = intval($val);
return $this;
} | Sets the completedColorJobCount
@param int $val The completedColorJobCount
@return PrintUsage | setCompletedColorJobCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function getDoubleSidedSheetCount()
{
if (array_key_exists("doubleSidedSheetCount", $this->_propDict)) {
return $this->_propDict["doubleSidedSheetCount"];
} else {
return null;
}
} | Gets the doubleSidedSheetCount
@return int|null The doubleSidedSheetCount | getDoubleSidedSheetCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function setDoubleSidedSheetCount($val)
{
$this->_propDict["doubleSidedSheetCount"] = intval($val);
return $this;
} | Sets the doubleSidedSheetCount
@param int $val The doubleSidedSheetCount
@return PrintUsage | setDoubleSidedSheetCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function getSingleSidedSheetCount()
{
if (array_key_exists("singleSidedSheetCount", $this->_propDict)) {
return $this->_propDict["singleSidedSheetCount"];
} else {
return null;
}
} | Gets the singleSidedSheetCount
@return int|null The singleSidedSheetCount | getSingleSidedSheetCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function setSingleSidedSheetCount($val)
{
$this->_propDict["singleSidedSheetCount"] = intval($val);
return $this;
} | Sets the singleSidedSheetCount
@param int $val The singleSidedSheetCount
@return PrintUsage | setSingleSidedSheetCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintUsage.php | MIT |
public function getTarget()
{
if (array_key_exists("target", $this->_propDict)) {
if (is_a($this->_propDict["target"], "\Microsoft\Graph\Model\DeviceAndAppManagementAssignmentTarget") || is_null($this->_propDict["target"])) {
return $this->_propDict["target"];
} else {
$this->_propDict["target"] = new DeviceAndAppManagementAssignmentTarget($this->_propDict["target"]);
return $this->_propDict["target"];
}
}
return null;
} | Gets the target
User groups targeting for devices to be enrolled through partner.
@return DeviceAndAppManagementAssignmentTarget|null The target | getTarget | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceManagementPartnerAssignment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceManagementPartnerAssignment.php | MIT |
public function setTarget($val)
{
$this->_propDict["target"] = $val;
return $this;
} | Sets the target
User groups targeting for devices to be enrolled through partner.
@param DeviceAndAppManagementAssignmentTarget $val The value to assign to the target
@return DeviceManagementPartnerAssignment The DeviceManagementPartnerAssignment | setTarget | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceManagementPartnerAssignment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceManagementPartnerAssignment.php | MIT |
public function getRawContent()
{
if (array_key_exists("rawContent", $this->_propDict)) {
return $this->_propDict["rawContent"];
} else {
return null;
}
} | Gets the rawContent
The notification content of a raw user notification that will be delivered to and consumed by the app client on all supported platforms (Windows, iOS, Android or WebPush) receiving this notification. At least one of Payload.RawContent or Payload.VisualContent needs to be valid for a POST Notification request.
@return string|null The rawContent | getRawContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | MIT |
public function setRawContent($val)
{
$this->_propDict["rawContent"] = $val;
return $this;
} | Sets the rawContent
The notification content of a raw user notification that will be delivered to and consumed by the app client on all supported platforms (Windows, iOS, Android or WebPush) receiving this notification. At least one of Payload.RawContent or Payload.VisualContent needs to be valid for a POST Notification request.
@param string $val The value of the rawContent
@return PayloadTypes | setRawContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | MIT |
public function getVisualContent()
{
if (array_key_exists("visualContent", $this->_propDict)) {
if (is_a($this->_propDict["visualContent"], "\Beta\Microsoft\Graph\Model\VisualProperties") || is_null($this->_propDict["visualContent"])) {
return $this->_propDict["visualContent"];
} else {
$this->_propDict["visualContent"] = new VisualProperties($this->_propDict["visualContent"]);
return $this->_propDict["visualContent"];
}
}
return null;
} | Gets the visualContent
The visual content of a visual user notification, which will be consumed by the notification platform on each supported platform (Windows, iOS and Android only) and rendered for the user. At least one of Payload.RawContent or Payload.VisualContent needs to be valid for a POST Notification request.
@return VisualProperties|null The visualContent | getVisualContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | MIT |
public function setVisualContent($val)
{
$this->_propDict["visualContent"] = $val;
return $this;
} | Sets the visualContent
The visual content of a visual user notification, which will be consumed by the notification platform on each supported platform (Windows, iOS and Android only) and rendered for the user. At least one of Payload.RawContent or Payload.VisualContent needs to be valid for a POST Notification request.
@param VisualProperties $val The value to assign to the visualContent
@return PayloadTypes The PayloadTypes | setVisualContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PayloadTypes.php | MIT |
protected function parseDataFromResponse()
{
$content = $this->rawResponse->body;
$config = new ServerSideEncryptionConfig();
$config->parseFromXml($content);
return $config;
} | Parse the ServerSideEncryptionConfig object from the response
@return ServerSideEncryptionConfig | parseDataFromResponse | php | xiebruce/PicUploader | vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetBucketEncryptionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetBucketEncryptionResult.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
The name of the team.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The name of the team.
@param string $val The displayName
@return TeamInfo | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | MIT |
public function getTenantId()
{
if (array_key_exists("tenantId", $this->_propDict)) {
return $this->_propDict["tenantId"];
} else {
return null;
}
} | Gets the tenantId
The ID of the Azure Active Directory tenant.
@return string|null The tenantId | getTenantId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | MIT |
public function setTenantId($val)
{
$this->_propDict["tenantId"] = $val;
return $this;
} | Sets the tenantId
The ID of the Azure Active Directory tenant.
@param string $val The tenantId
@return TeamInfo | setTenantId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamInfo.php | MIT |
public function getEventDateTime()
{
if (array_key_exists("eventDateTime", $this->_propDict)) {
if (is_a($this->_propDict["eventDateTime"], "\DateTime") || is_null($this->_propDict["eventDateTime"])) {
return $this->_propDict["eventDateTime"];
} else {
$this->_propDict["eventDateTime"] = new \DateTime($this->_propDict["eventDateTime"]);
return $this->_propDict["eventDateTime"];
}
}
return null;
} | Gets the eventDateTime
Date and time when the event occurred.
@return \DateTime|null The eventDateTime | getEventDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | MIT |
public function setEventDateTime($val)
{
$this->_propDict["eventDateTime"] = $val;
return $this;
} | Sets the eventDateTime
Date and time when the event occurred.
@param \DateTime $val The value to assign to the eventDateTime
@return MessagePinnedEventMessageDetail The MessagePinnedEventMessageDetail | setEventDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | MIT |
public function getInitiator()
{
if (array_key_exists("initiator", $this->_propDict)) {
if (is_a($this->_propDict["initiator"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["initiator"])) {
return $this->_propDict["initiator"];
} else {
$this->_propDict["initiator"] = new IdentitySet($this->_propDict["initiator"]);
return $this->_propDict["initiator"];
}
}
return null;
} | Gets the initiator
Initiator of the event.
@return IdentitySet|null The initiator | getInitiator | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | MIT |
public function setInitiator($val)
{
$this->_propDict["initiator"] = $val;
return $this;
} | Sets the initiator
Initiator of the event.
@param IdentitySet $val The value to assign to the initiator
@return MessagePinnedEventMessageDetail The MessagePinnedEventMessageDetail | setInitiator | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MessagePinnedEventMessageDetail.php | MIT |
public function getAssignmentResourceUrl()
{
if (array_key_exists("assignmentResourceUrl", $this->_propDict)) {
return $this->_propDict["assignmentResourceUrl"];
} else {
return null;
}
} | Gets the assignmentResourceUrl
Pointer to the assignment from which this resource was copied. If this is null, the student uploaded the resource.
@return string|null The assignmentResourceUrl | getAssignmentResourceUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | MIT |
public function setAssignmentResourceUrl($val)
{
$this->_propDict["assignmentResourceUrl"] = $val;
return $this;
} | Sets the assignmentResourceUrl
Pointer to the assignment from which this resource was copied. If this is null, the student uploaded the resource.
@param string $val The assignmentResourceUrl
@return EducationSubmissionResource | setAssignmentResourceUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | MIT |
public function getResource()
{
if (array_key_exists("resource", $this->_propDict)) {
if (is_a($this->_propDict["resource"], "\Beta\Microsoft\Graph\Model\EducationResource") || is_null($this->_propDict["resource"])) {
return $this->_propDict["resource"];
} else {
$this->_propDict["resource"] = new EducationResource($this->_propDict["resource"]);
return $this->_propDict["resource"];
}
}
return null;
} | Gets the resource
Resource object.
@return EducationResource|null The resource | getResource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | MIT |
public function setResource($val)
{
$this->_propDict["resource"] = $val;
return $this;
} | Sets the resource
Resource object.
@param EducationResource $val The resource
@return EducationSubmissionResource | setResource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationSubmissionResource.php | MIT |
public function getAccuracy()
{
if (array_key_exists("accuracy", $this->_propDict)) {
return $this->_propDict["accuracy"];
} else {
return null;
}
} | Gets the accuracy
The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters.
@return float|null The accuracy | getAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setAccuracy($val)
{
$this->_propDict["accuracy"] = $val;
return $this;
} | Sets the accuracy
The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters.
@param float $val The value of the accuracy
@return OutlookGeoCoordinates | setAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function getAltitude()
{
if (array_key_exists("altitude", $this->_propDict)) {
return $this->_propDict["altitude"];
} else {
return null;
}
} | Gets the altitude
The altitude of the location.
@return float|null The altitude | getAltitude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setAltitude($val)
{
$this->_propDict["altitude"] = $val;
return $this;
} | Sets the altitude
The altitude of the location.
@param float $val The value of the altitude
@return OutlookGeoCoordinates | setAltitude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function getAltitudeAccuracy()
{
if (array_key_exists("altitudeAccuracy", $this->_propDict)) {
return $this->_propDict["altitudeAccuracy"];
} else {
return null;
}
} | Gets the altitudeAccuracy
The accuracy of the altitude.
@return float|null The altitudeAccuracy | getAltitudeAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setAltitudeAccuracy($val)
{
$this->_propDict["altitudeAccuracy"] = $val;
return $this;
} | Sets the altitudeAccuracy
The accuracy of the altitude.
@param float $val The value of the altitudeAccuracy
@return OutlookGeoCoordinates | setAltitudeAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function getLatitude()
{
if (array_key_exists("latitude", $this->_propDict)) {
return $this->_propDict["latitude"];
} else {
return null;
}
} | Gets the latitude
The latitude of the location.
@return float|null The latitude | getLatitude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setLatitude($val)
{
$this->_propDict["latitude"] = $val;
return $this;
} | Sets the latitude
The latitude of the location.
@param float $val The value of the latitude
@return OutlookGeoCoordinates | setLatitude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function getLongitude()
{
if (array_key_exists("longitude", $this->_propDict)) {
return $this->_propDict["longitude"];
} else {
return null;
}
} | Gets the longitude
The longitude of the location.
@return float|null The longitude | getLongitude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setLongitude($val)
{
$this->_propDict["longitude"] = $val;
return $this;
} | Sets the longitude
The longitude of the location.
@param float $val The value of the longitude
@return OutlookGeoCoordinates | setLongitude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function getFileUrl()
{
if (array_key_exists("fileUrl", $this->_propDict)) {
return $this->_propDict["fileUrl"];
} else {
return null;
}
} | Gets the fileUrl
Location of the file on shared point folder. Required
@return string|null The fileUrl | getFileUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationMediaResource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationMediaResource.php | MIT |
public function setFileUrl($val)
{
$this->_propDict["fileUrl"] = $val;
return $this;
} | Sets the fileUrl
Location of the file on shared point folder. Required
@param string $val The value of the fileUrl
@return EducationMediaResource | setFileUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationMediaResource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationMediaResource.php | MIT |
public function getAssignedDateTime()
{
if (array_key_exists("assignedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["assignedDateTime"], "\DateTime") || is_null($this->_propDict["assignedDateTime"])) {
return $this->_propDict["assignedDateTime"];
} else {
$this->_propDict["assignedDateTime"] = new \DateTime($this->_propDict["assignedDateTime"]);
return $this->_propDict["assignedDateTime"];
}
}
return null;
} | Gets the assignedDateTime
The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
@return \DateTime|null The assignedDateTime | getAssignedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function setAssignedDateTime($val)
{
$this->_propDict["assignedDateTime"] = $val;
return $this;
} | Sets the assignedDateTime
The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
@param \DateTime $val The value to assign to the assignedDateTime
@return AssignedPlan The AssignedPlan | setAssignedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function getCapabilityStatus()
{
if (array_key_exists("capabilityStatus", $this->_propDict)) {
return $this->_propDict["capabilityStatus"];
} else {
return null;
}
} | Gets the capabilityStatus
Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.
@return string|null The capabilityStatus | getCapabilityStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function setCapabilityStatus($val)
{
$this->_propDict["capabilityStatus"] = $val;
return $this;
} | Sets the capabilityStatus
Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.
@param string $val The value of the capabilityStatus
@return AssignedPlan | setCapabilityStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function getService()
{
if (array_key_exists("service", $this->_propDict)) {
return $this->_propDict["service"];
} else {
return null;
}
} | Gets the service
The name of the service; for example, exchange.
@return string|null The service | getService | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function setService($val)
{
$this->_propDict["service"] = $val;
return $this;
} | Sets the service
The name of the service; for example, exchange.
@param string $val The value of the service
@return AssignedPlan | setService | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function getServicePlanId()
{
if (array_key_exists("servicePlanId", $this->_propDict)) {
return $this->_propDict["servicePlanId"];
} else {
return null;
}
} | Gets the servicePlanId
A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing.
@return string|null The servicePlanId | getServicePlanId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function setServicePlanId($val)
{
$this->_propDict["servicePlanId"] = $val;
return $this;
} | Sets the servicePlanId
A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing.
@param string $val The value of the servicePlanId
@return AssignedPlan | setServicePlanId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function getDeliveryOptimizationPriority()
{
if (array_key_exists("deliveryOptimizationPriority", $this->_propDict)) {
if (is_a($this->_propDict["deliveryOptimizationPriority"], "\Microsoft\Graph\Model\Win32LobAppDeliveryOptimizationPriority") || is_null($this->_propDict["deliveryOptimizationPriority"])) {
return $this->_propDict["deliveryOptimizationPriority"];
} else {
$this->_propDict["deliveryOptimizationPriority"] = new Win32LobAppDeliveryOptimizationPriority($this->_propDict["deliveryOptimizationPriority"]);
return $this->_propDict["deliveryOptimizationPriority"];
}
}
return null;
} | Gets the deliveryOptimizationPriority
The delivery optimization priority for this app assignment. This setting is not supported in National Cloud environments. Possible values are: notConfigured, foreground.
@return Win32LobAppDeliveryOptimizationPriority|null The deliveryOptimizationPriority | getDeliveryOptimizationPriority | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function setDeliveryOptimizationPriority($val)
{
$this->_propDict["deliveryOptimizationPriority"] = $val;
return $this;
} | Sets the deliveryOptimizationPriority
The delivery optimization priority for this app assignment. This setting is not supported in National Cloud environments. Possible values are: notConfigured, foreground.
@param Win32LobAppDeliveryOptimizationPriority $val The value to assign to the deliveryOptimizationPriority
@return Win32LobAppAssignmentSettings The Win32LobAppAssignmentSettings | setDeliveryOptimizationPriority | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function getInstallTimeSettings()
{
if (array_key_exists("installTimeSettings", $this->_propDict)) {
if (is_a($this->_propDict["installTimeSettings"], "\Microsoft\Graph\Model\MobileAppInstallTimeSettings") || is_null($this->_propDict["installTimeSettings"])) {
return $this->_propDict["installTimeSettings"];
} else {
$this->_propDict["installTimeSettings"] = new MobileAppInstallTimeSettings($this->_propDict["installTimeSettings"]);
return $this->_propDict["installTimeSettings"];
}
}
return null;
} | Gets the installTimeSettings
The install time settings to apply for this app assignment.
@return MobileAppInstallTimeSettings|null The installTimeSettings | getInstallTimeSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function setInstallTimeSettings($val)
{
$this->_propDict["installTimeSettings"] = $val;
return $this;
} | Sets the installTimeSettings
The install time settings to apply for this app assignment.
@param MobileAppInstallTimeSettings $val The value to assign to the installTimeSettings
@return Win32LobAppAssignmentSettings The Win32LobAppAssignmentSettings | setInstallTimeSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function getNotifications()
{
if (array_key_exists("notifications", $this->_propDict)) {
if (is_a($this->_propDict["notifications"], "\Microsoft\Graph\Model\Win32LobAppNotification") || is_null($this->_propDict["notifications"])) {
return $this->_propDict["notifications"];
} else {
$this->_propDict["notifications"] = new Win32LobAppNotification($this->_propDict["notifications"]);
return $this->_propDict["notifications"];
}
}
return null;
} | Gets the notifications
The notification status for this app assignment. Possible values are: showAll, showReboot, hideAll.
@return Win32LobAppNotification|null The notifications | getNotifications | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function setNotifications($val)
{
$this->_propDict["notifications"] = $val;
return $this;
} | Sets the notifications
The notification status for this app assignment. Possible values are: showAll, showReboot, hideAll.
@param Win32LobAppNotification $val The value to assign to the notifications
@return Win32LobAppAssignmentSettings The Win32LobAppAssignmentSettings | setNotifications | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function getRestartSettings()
{
if (array_key_exists("restartSettings", $this->_propDict)) {
if (is_a($this->_propDict["restartSettings"], "\Microsoft\Graph\Model\Win32LobAppRestartSettings") || is_null($this->_propDict["restartSettings"])) {
return $this->_propDict["restartSettings"];
} else {
$this->_propDict["restartSettings"] = new Win32LobAppRestartSettings($this->_propDict["restartSettings"]);
return $this->_propDict["restartSettings"];
}
}
return null;
} | Gets the restartSettings
The reboot settings to apply for this app assignment.
@return Win32LobAppRestartSettings|null The restartSettings | getRestartSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function setRestartSettings($val)
{
$this->_propDict["restartSettings"] = $val;
return $this;
} | Sets the restartSettings
The reboot settings to apply for this app assignment.
@param Win32LobAppRestartSettings $val The value to assign to the restartSettings
@return Win32LobAppAssignmentSettings The Win32LobAppAssignmentSettings | setRestartSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Win32LobAppAssignmentSettings.php | MIT |
public function getActionDeliveryStatus()
{
if (array_key_exists("actionDeliveryStatus", $this->_propDict)) {
if (is_a($this->_propDict["actionDeliveryStatus"], "\Beta\Microsoft\Graph\Model\ConfigurationManagerActionDeliveryStatus") || is_null($this->_propDict["actionDeliveryStatus"])) {
return $this->_propDict["actionDeliveryStatus"];
} else {
$this->_propDict["actionDeliveryStatus"] = new ConfigurationManagerActionDeliveryStatus($this->_propDict["actionDeliveryStatus"]);
return $this->_propDict["actionDeliveryStatus"];
}
}
return null;
} | Gets the actionDeliveryStatus
State of the action being delivered to on-prem server. Possible values are: unknown, pendingDelivery, deliveredToConnectorService, failedToDeliverToConnectorService, deliveredToOnPremisesServer.
@return ConfigurationManagerActionDeliveryStatus|null The actionDeliveryStatus | getActionDeliveryStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | MIT |
public function setActionDeliveryStatus($val)
{
$this->_propDict["actionDeliveryStatus"] = $val;
return $this;
} | Sets the actionDeliveryStatus
State of the action being delivered to on-prem server. Possible values are: unknown, pendingDelivery, deliveredToConnectorService, failedToDeliverToConnectorService, deliveredToOnPremisesServer.
@param ConfigurationManagerActionDeliveryStatus $val The value to assign to the actionDeliveryStatus
@return ConfigurationManagerActionResult The ConfigurationManagerActionResult | setActionDeliveryStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | MIT |
public function getErrorCode()
{
if (array_key_exists("errorCode", $this->_propDict)) {
return $this->_propDict["errorCode"];
} else {
return null;
}
} | Gets the errorCode
Error code of Configuration Manager action from client
@return int|null The errorCode | getErrorCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | MIT |
public function setErrorCode($val)
{
$this->_propDict["errorCode"] = $val;
return $this;
} | Sets the errorCode
Error code of Configuration Manager action from client
@param int $val The value of the errorCode
@return ConfigurationManagerActionResult | setErrorCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | MIT |
public function getAudio()
{
if (array_key_exists("audio", $this->_propDict)) {
if (is_a($this->_propDict["audio"], "\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. Read-only. Only on OneDrive Personal.
@return Audio|null The audio | getAudio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setAudio($val)
{
$this->_propDict["audio"] = $val;
return $this;
} | Sets the audio
Audio metadata, if the item is an audio file. Read-only. Read-only. Only on OneDrive Personal.
@param Audio $val The audio
@return DriveItem | setAudio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getBundle()
{
if (array_key_exists("bundle", $this->_propDict)) {
if (is_a($this->_propDict["bundle"], "\Microsoft\Graph\Model\Bundle") || is_null($this->_propDict["bundle"])) {
return $this->_propDict["bundle"];
} else {
$this->_propDict["bundle"] = new Bundle($this->_propDict["bundle"]);
return $this->_propDict["bundle"];
}
}
return null;
} | Gets the bundle
Bundle metadata, if the item is a bundle. Read-only.
@return Bundle|null The bundle | getBundle | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setBundle($val)
{
$this->_propDict["bundle"] = $val;
return $this;
} | Sets the bundle
Bundle metadata, if the item is a bundle. Read-only.
@param Bundle $val The bundle
@return DriveItem | setBundle | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getContent()
{
if (array_key_exists("content", $this->_propDict)) {
if (is_a($this->_propDict["content"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["content"])) {
return $this->_propDict["content"];
} else {
$this->_propDict["content"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["content"]);
return $this->_propDict["content"];
}
}
return null;
} | Gets the content
The content stream, if the item represents a file.
@return \GuzzleHttp\Psr7\Stream|null The content | getContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setContent($val)
{
$this->_propDict["content"] = $val;
return $this;
} | Sets the content
The content stream, if the item represents a file.
@param \GuzzleHttp\Psr7\Stream $val The content
@return DriveItem | setContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getCTag()
{
if (array_key_exists("cTag", $this->_propDict)) {
return $this->_propDict["cTag"];
} else {
return null;
}
} | Gets the cTag
An eTag for the content of the item. This eTag is not changed if only the metadata is changed. Note This property is not returned if the item is a folder. Read-only.
@return string|null The cTag | getCTag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setCTag($val)
{
$this->_propDict["cTag"] = $val;
return $this;
} | Sets the cTag
An eTag for the content of the item. This eTag is not changed if only the metadata is changed. Note This property is not returned if the item is a folder. Read-only.
@param string $val The cTag
@return DriveItem | setCTag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getDeleted()
{
if (array_key_exists("deleted", $this->_propDict)) {
if (is_a($this->_propDict["deleted"], "\Microsoft\Graph\Model\Deleted") || is_null($this->_propDict["deleted"])) {
return $this->_propDict["deleted"];
} else {
$this->_propDict["deleted"] = new Deleted($this->_propDict["deleted"]);
return $this->_propDict["deleted"];
}
}
return null;
} | Gets the deleted
Information about the deleted state of the item. Read-only.
@return Deleted|null The deleted | getDeleted | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setDeleted($val)
{
$this->_propDict["deleted"] = $val;
return $this;
} | Sets the deleted
Information about the deleted state of the item. Read-only.
@param Deleted $val The deleted
@return DriveItem | setDeleted | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getFile()
{
if (array_key_exists("file", $this->_propDict)) {
if (is_a($this->_propDict["file"], "\Microsoft\Graph\Model\File") || is_null($this->_propDict["file"])) {
return $this->_propDict["file"];
} else {
$this->_propDict["file"] = new File($this->_propDict["file"]);
return $this->_propDict["file"];
}
}
return null;
} | Gets the file
File metadata, if the item is a file. Read-only.
@return File|null The file | getFile | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setFile($val)
{
$this->_propDict["file"] = $val;
return $this;
} | Sets the file
File metadata, if the item is a file. Read-only.
@param File $val The file
@return DriveItem | setFile | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getFileSystemInfo()
{
if (array_key_exists("fileSystemInfo", $this->_propDict)) {
if (is_a($this->_propDict["fileSystemInfo"], "\Microsoft\Graph\Model\FileSystemInfo") || is_null($this->_propDict["fileSystemInfo"])) {
return $this->_propDict["fileSystemInfo"];
} else {
$this->_propDict["fileSystemInfo"] = new FileSystemInfo($this->_propDict["fileSystemInfo"]);
return $this->_propDict["fileSystemInfo"];
}
}
return null;
} | Gets the fileSystemInfo
File system information on client. Read-write.
@return FileSystemInfo|null The fileSystemInfo | getFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.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 fileSystemInfo
@return DriveItem | setFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getFolder()
{
if (array_key_exists("folder", $this->_propDict)) {
if (is_a($this->_propDict["folder"], "\Microsoft\Graph\Model\Folder") || is_null($this->_propDict["folder"])) {
return $this->_propDict["folder"];
} else {
$this->_propDict["folder"] = new Folder($this->_propDict["folder"]);
return $this->_propDict["folder"];
}
}
return null;
} | Gets the folder
Folder metadata, if the item is a folder. Read-only.
@return Folder|null The folder | getFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setFolder($val)
{
$this->_propDict["folder"] = $val;
return $this;
} | Sets the folder
Folder metadata, if the item is a folder. Read-only.
@param Folder $val The folder
@return DriveItem | setFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getImage()
{
if (array_key_exists("image", $this->_propDict)) {
if (is_a($this->_propDict["image"], "\Microsoft\Graph\Model\Image") || is_null($this->_propDict["image"])) {
return $this->_propDict["image"];
} else {
$this->_propDict["image"] = new Image($this->_propDict["image"]);
return $this->_propDict["image"];
}
}
return null;
} | Gets the image
Image metadata, if the item is an image. Read-only.
@return Image|null The image | getImage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setImage($val)
{
$this->_propDict["image"] = $val;
return $this;
} | Sets the image
Image metadata, if the item is an image. Read-only.
@param Image $val The image
@return DriveItem | setImage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getLocation()
{
if (array_key_exists("location", $this->_propDict)) {
if (is_a($this->_propDict["location"], "\Microsoft\Graph\Model\GeoCoordinates") || is_null($this->_propDict["location"])) {
return $this->_propDict["location"];
} else {
$this->_propDict["location"] = new GeoCoordinates($this->_propDict["location"]);
return $this->_propDict["location"];
}
}
return null;
} | Gets the location
Location metadata, if the item has location data. Read-only.
@return GeoCoordinates|null The location | getLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setLocation($val)
{
$this->_propDict["location"] = $val;
return $this;
} | Sets the location
Location metadata, if the item has location data. Read-only.
@param GeoCoordinates $val The location
@return DriveItem | setLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getMalware()
{
if (array_key_exists("malware", $this->_propDict)) {
if (is_a($this->_propDict["malware"], "\Microsoft\Graph\Model\Malware") || is_null($this->_propDict["malware"])) {
return $this->_propDict["malware"];
} else {
$this->_propDict["malware"] = new Malware($this->_propDict["malware"]);
return $this->_propDict["malware"];
}
}
return null;
} | Gets the malware
Malware metadata, if the item was detected to contain malware. Read-only.
@return Malware|null The malware | getMalware | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setMalware($val)
{
$this->_propDict["malware"] = $val;
return $this;
} | Sets the malware
Malware metadata, if the item was detected to contain malware. Read-only.
@param Malware $val The malware
@return DriveItem | setMalware | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPackage()
{
if (array_key_exists("package", $this->_propDict)) {
if (is_a($this->_propDict["package"], "\Microsoft\Graph\Model\Package") || is_null($this->_propDict["package"])) {
return $this->_propDict["package"];
} else {
$this->_propDict["package"] = new Package($this->_propDict["package"]);
return $this->_propDict["package"];
}
}
return null;
} | Gets the package
If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only.
@return Package|null The package | getPackage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.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.