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 setEnrollmentType($val) { $this->_propDict["enrollmentType"] = $val; return $this; }
Sets the enrollmentType Enrollment type of the device. This property is set by Intune. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement. @param string $val The enrollmentType @return Device
setEnrollmentType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getExtensionAttributes() { if (array_key_exists("extensionAttributes", $this->_propDict)) { if (is_a($this->_propDict["extensionAttributes"], "\Beta\Microsoft\Graph\Model\OnPremisesExtensionAttributes") || is_null($this->_propDict["extensionAttributes"])) { return $this->_propDict["extensionAttributes"]; } else { $this->_propDict["extensionAttributes"] = new OnPremisesExtensionAttributes($this->_propDict["extensionAttributes"]); return $this->_propDict["extensionAttributes"]; } } return null; }
Gets the extensionAttributes Contains extension attributes 1-15 for the device. The individual extension attributes are not selectable. These properties are mastered in cloud and can be set during creation or update of a device object in Azure AD. Supports $filter (eq, not, startsWith, and eq on null values). @return OnPremisesExtensionAttributes|null The extensionAttributes
getExtensionAttributes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setExtensionAttributes($val) { $this->_propDict["extensionAttributes"] = $val; return $this; }
Sets the extensionAttributes Contains extension attributes 1-15 for the device. The individual extension attributes are not selectable. These properties are mastered in cloud and can be set during creation or update of a device object in Azure AD. Supports $filter (eq, not, startsWith, and eq on null values). @param OnPremisesExtensionAttributes $val The extensionAttributes @return Device
setExtensionAttributes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getHostnames() { if (array_key_exists("hostnames", $this->_propDict)) { return $this->_propDict["hostnames"]; } else { return null; } }
Gets the hostnames List of hostNames for the device. @return array|null The hostnames
getHostnames
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setHostnames($val) { $this->_propDict["hostnames"] = $val; return $this; }
Sets the hostnames List of hostNames for the device. @param string[] $val The hostnames @return Device
setHostnames
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getIsCompliant() { if (array_key_exists("isCompliant", $this->_propDict)) { return $this->_propDict["isCompliant"]; } else { return null; } }
Gets the isCompliant true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). @return bool|null The isCompliant
getIsCompliant
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setIsCompliant($val) { $this->_propDict["isCompliant"] = boolval($val); return $this; }
Sets the isCompliant true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). @param bool $val The isCompliant @return Device
setIsCompliant
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getIsManaged() { if (array_key_exists("isManaged", $this->_propDict)) { return $this->_propDict["isManaged"]; } else { return null; } }
Gets the isManaged true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). @return bool|null The isManaged
getIsManaged
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setIsManaged($val) { $this->_propDict["isManaged"] = boolval($val); return $this; }
Sets the isManaged true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). @param bool $val The isManaged @return Device
setIsManaged
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getIsManagementRestricted() { if (array_key_exists("isManagementRestricted", $this->_propDict)) { return $this->_propDict["isManagementRestricted"]; } else { return null; } }
Gets the isManagementRestricted @return bool|null The isManagementRestricted
getIsManagementRestricted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setIsManagementRestricted($val) { $this->_propDict["isManagementRestricted"] = boolval($val); return $this; }
Sets the isManagementRestricted @param bool $val The isManagementRestricted @return Device
setIsManagementRestricted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getIsRooted() { if (array_key_exists("isRooted", $this->_propDict)) { return $this->_propDict["isRooted"]; } else { return null; } }
Gets the isRooted true if device is rooted; false if device is jail-broken. This can only be updated by Intune. @return bool|null The isRooted
getIsRooted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setIsRooted($val) { $this->_propDict["isRooted"] = boolval($val); return $this; }
Sets the isRooted true if device is rooted; false if device is jail-broken. This can only be updated by Intune. @param bool $val The isRooted @return Device
setIsRooted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getManagementType() { if (array_key_exists("managementType", $this->_propDict)) { return $this->_propDict["managementType"]; } else { return null; } }
Gets the managementType Management channel of the device. This property is set by Intune. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. @return string|null The managementType
getManagementType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setManagementType($val) { $this->_propDict["managementType"] = $val; return $this; }
Sets the managementType Management channel of the device. This property is set by Intune. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. @param string $val The managementType @return Device
setManagementType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getMdmAppId() { if (array_key_exists("mdmAppId", $this->_propDict)) { return $this->_propDict["mdmAppId"]; } else { return null; } }
Gets the mdmAppId Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith). @return string|null The mdmAppId
getMdmAppId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setMdmAppId($val) { $this->_propDict["mdmAppId"] = $val; return $this; }
Sets the mdmAppId Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith). @param string $val The mdmAppId @return Device
setMdmAppId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getOnPremisesLastSyncDateTime() { if (array_key_exists("onPremisesLastSyncDateTime", $this->_propDict)) { if (is_a($this->_propDict["onPremisesLastSyncDateTime"], "\DateTime") || is_null($this->_propDict["onPremisesLastSyncDateTime"])) { return $this->_propDict["onPremisesLastSyncDateTime"]; } else { $this->_propDict["onPremisesLastSyncDateTime"] = new \DateTime($this->_propDict["onPremisesLastSyncDateTime"]); return $this->_propDict["onPremisesLastSyncDateTime"]; } } return null; }
Gets the onPremisesLastSyncDateTime The last time at which the object was synced with the on-premises directory. 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 Read-only. Supports $filter (eq, ne, not, ge, le, in). @return \DateTime|null The onPremisesLastSyncDateTime
getOnPremisesLastSyncDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setOnPremisesLastSyncDateTime($val) { $this->_propDict["onPremisesLastSyncDateTime"] = $val; return $this; }
Sets the onPremisesLastSyncDateTime The last time at which the object was synced with the on-premises directory. 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 Read-only. Supports $filter (eq, ne, not, ge, le, in). @param \DateTime $val The onPremisesLastSyncDateTime @return Device
setOnPremisesLastSyncDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getOnPremisesSyncEnabled() { if (array_key_exists("onPremisesSyncEnabled", $this->_propDict)) { return $this->_propDict["onPremisesSyncEnabled"]; } else { return null; } }
Gets the onPremisesSyncEnabled true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). @return bool|null The onPremisesSyncEnabled
getOnPremisesSyncEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setOnPremisesSyncEnabled($val) { $this->_propDict["onPremisesSyncEnabled"] = boolval($val); return $this; }
Sets the onPremisesSyncEnabled true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). @param bool $val The onPremisesSyncEnabled @return Device
setOnPremisesSyncEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getOperatingSystem() { if (array_key_exists("operatingSystem", $this->_propDict)) { return $this->_propDict["operatingSystem"]; } else { return null; } }
Gets the operatingSystem The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). @return string|null The operatingSystem
getOperatingSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setOperatingSystem($val) { $this->_propDict["operatingSystem"] = $val; return $this; }
Sets the operatingSystem The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). @param string $val The operatingSystem @return Device
setOperatingSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getOperatingSystemVersion() { if (array_key_exists("operatingSystemVersion", $this->_propDict)) { return $this->_propDict["operatingSystemVersion"]; } else { return null; } }
Gets the operatingSystemVersion Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). @return string|null The operatingSystemVersion
getOperatingSystemVersion
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setOperatingSystemVersion($val) { $this->_propDict["operatingSystemVersion"] = $val; return $this; }
Sets the operatingSystemVersion Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). @param string $val The operatingSystemVersion @return Device
setOperatingSystemVersion
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getPhysicalIds() { if (array_key_exists("physicalIds", $this->_propDict)) { return $this->_propDict["physicalIds"]; } else { return null; } }
Gets the physicalIds For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0. @return array|null The physicalIds
getPhysicalIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setPhysicalIds($val) { $this->_propDict["physicalIds"] = $val; return $this; }
Sets the physicalIds For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0. @param string[] $val The physicalIds @return Device
setPhysicalIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getProfileType() { if (array_key_exists("profileType", $this->_propDict)) { return $this->_propDict["profileType"]; } else { return null; } }
Gets the profileType The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT. @return string|null The profileType
getProfileType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setProfileType($val) { $this->_propDict["profileType"] = $val; return $this; }
Sets the profileType The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT. @param string $val The profileType @return Device
setProfileType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getRegistrationDateTime() { if (array_key_exists("registrationDateTime", $this->_propDict)) { if (is_a($this->_propDict["registrationDateTime"], "\DateTime") || is_null($this->_propDict["registrationDateTime"])) { return $this->_propDict["registrationDateTime"]; } else { $this->_propDict["registrationDateTime"] = new \DateTime($this->_propDict["registrationDateTime"]); return $this->_propDict["registrationDateTime"]; } } return null; }
Gets the registrationDateTime Date and time of when the device was registered. 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. Read-only. @return \DateTime|null The registrationDateTime
getRegistrationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setRegistrationDateTime($val) { $this->_propDict["registrationDateTime"] = $val; return $this; }
Sets the registrationDateTime Date and time of when the device was registered. 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. Read-only. @param \DateTime $val The registrationDateTime @return Device
setRegistrationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getSystemLabels() { if (array_key_exists("systemLabels", $this->_propDict)) { return $this->_propDict["systemLabels"]; } else { return null; } }
Gets the systemLabels List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0). @return array|null The systemLabels
getSystemLabels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setSystemLabels($val) { $this->_propDict["systemLabels"] = $val; return $this; }
Sets the systemLabels List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0). @param string[] $val The systemLabels @return Device
setSystemLabels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getTrustType() { if (array_key_exists("trustType", $this->_propDict)) { return $this->_propDict["trustType"]; } else { return null; } }
Gets the trustType Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory @return string|null The trustType
getTrustType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setTrustType($val) { $this->_propDict["trustType"] = $val; return $this; }
Sets the trustType Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory @param string $val The trustType @return Device
setTrustType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getKind() { if (array_key_exists("kind", $this->_propDict)) { return $this->_propDict["kind"]; } else { return null; } }
Gets the kind Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome. @return string|null The kind
getKind
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setKind($val) { $this->_propDict["kind"] = $val; return $this; }
Sets the kind Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome. @param string $val The kind @return Device
setKind
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getManufacturer() { if (array_key_exists("manufacturer", $this->_propDict)) { return $this->_propDict["manufacturer"]; } else { return null; } }
Gets the manufacturer Manufacturer of the device. Read-only. @return string|null The manufacturer
getManufacturer
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setManufacturer($val) { $this->_propDict["manufacturer"] = $val; return $this; }
Sets the manufacturer Manufacturer of the device. Read-only. @param string $val The manufacturer @return Device
setManufacturer
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getModel() { if (array_key_exists("model", $this->_propDict)) { return $this->_propDict["model"]; } else { return null; } }
Gets the model Model of the device. Read-only. @return string|null The model
getModel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setModel($val) { $this->_propDict["model"] = $val; return $this; }
Sets the model Model of the device. Read-only. @param string $val The model @return Device
setModel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } }
Gets the name Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome. @return string|null The name
getName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setName($val) { $this->_propDict["name"] = $val; return $this; }
Sets the name Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome. @param string $val The name @return Device
setName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getPlatform() { if (array_key_exists("platform", $this->_propDict)) { return $this->_propDict["platform"]; } else { return null; } }
Gets the platform Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome. @return string|null The platform
getPlatform
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setPlatform($val) { $this->_propDict["platform"] = $val; return $this; }
Sets the platform Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome. @param string $val The platform @return Device
setPlatform
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { return $this->_propDict["status"]; } else { return null; } }
Gets the status Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome. @return string|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setStatus($val) { $this->_propDict["status"] = $val; return $this; }
Sets the status Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome. @param string $val The status @return Device
setStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getUsageRights() { if (array_key_exists("usageRights", $this->_propDict)) { return $this->_propDict["usageRights"]; } else { return null; } }
Gets the usageRights Represents the usage rights a device has been granted. @return array|null The usageRights
getUsageRights
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setUsageRights($val) { $this->_propDict["usageRights"] = $val; return $this; }
Sets the usageRights Represents the usage rights a device has been granted. @param UsageRight[] $val The usageRights @return Device
setUsageRights
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getMemberOf() { if (array_key_exists("memberOf", $this->_propDict)) { return $this->_propDict["memberOf"]; } else { return null; } }
Gets the memberOf Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. @return array|null The memberOf
getMemberOf
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setMemberOf($val) { $this->_propDict["memberOf"] = $val; return $this; }
Sets the memberOf Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The memberOf @return Device
setMemberOf
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getRegisteredOwners() { if (array_key_exists("registeredOwners", $this->_propDict)) { return $this->_propDict["registeredOwners"]; } else { return null; } }
Gets the registeredOwners The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. @return array|null The registeredOwners
getRegisteredOwners
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setRegisteredOwners($val) { $this->_propDict["registeredOwners"] = $val; return $this; }
Sets the registeredOwners The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The registeredOwners @return Device
setRegisteredOwners
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getRegisteredUsers() { if (array_key_exists("registeredUsers", $this->_propDict)) { return $this->_propDict["registeredUsers"]; } else { return null; } }
Gets the registeredUsers Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand. @return array|null The registeredUsers
getRegisteredUsers
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setRegisteredUsers($val) { $this->_propDict["registeredUsers"] = $val; return $this; }
Sets the registeredUsers Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The registeredUsers @return Device
setRegisteredUsers
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getTransitiveMemberOf() { if (array_key_exists("transitiveMemberOf", $this->_propDict)) { return $this->_propDict["transitiveMemberOf"]; } else { return null; } }
Gets the transitiveMemberOf Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. @return array|null The transitiveMemberOf
getTransitiveMemberOf
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setTransitiveMemberOf($val) { $this->_propDict["transitiveMemberOf"] = $val; return $this; }
Sets the transitiveMemberOf Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. @param DirectoryObject[] $val The transitiveMemberOf @return Device
setTransitiveMemberOf
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getExtensions() { if (array_key_exists("extensions", $this->_propDict)) { return $this->_propDict["extensions"]; } else { return null; } }
Gets the extensions The collection of open extensions defined for the device. Read-only. Nullable. @return array|null The extensions
getExtensions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setExtensions($val) { $this->_propDict["extensions"] = $val; return $this; }
Sets the extensions The collection of open extensions defined for the device. Read-only. Nullable. @param Extension[] $val The extensions @return Device
setExtensions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getCommands() { if (array_key_exists("commands", $this->_propDict)) { return $this->_propDict["commands"]; } else { return null; } }
Gets the commands Set of commands sent to this device. @return array|null The commands
getCommands
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function setCommands($val) { $this->_propDict["commands"] = $val; return $this; }
Sets the commands Set of commands sent to this device. @param Command[] $val The commands @return Device
setCommands
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php
MIT
public function getHandler(array $record = null) { if (!$this->handler instanceof HandlerInterface) { $this->handler = call_user_func($this->handler, $record, $this); if (!$this->handler instanceof HandlerInterface) { throw new \RuntimeException("The factory callable should return a HandlerInterface"); } } return $this->handler; }
Return the nested handler If the handler was provided as a factory callable, this will trigger the handler's instantiation. @return HandlerInterface
getHandler
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php
MIT
public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; }
Gets the createdDateTime Creation time of the PolicySet. @return \DateTime|null The createdDateTime
getCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; }
Sets the createdDateTime Creation time of the PolicySet. @param \DateTime $val The createdDateTime @return PolicySet
setCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } }
Gets the description Description of the PolicySet. @return string|null The description
getDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setDescription($val) { $this->_propDict["description"] = $val; return $this; }
Sets the description Description of the PolicySet. @param string $val The description @return PolicySet
setDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName DisplayName of the PolicySet. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName DisplayName of the PolicySet. @param string $val The displayName @return PolicySet
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getErrorCode() { if (array_key_exists("errorCode", $this->_propDict)) { if (is_a($this->_propDict["errorCode"], "\Beta\Microsoft\Graph\Model\ErrorCode") || is_null($this->_propDict["errorCode"])) { return $this->_propDict["errorCode"]; } else { $this->_propDict["errorCode"] = new ErrorCode($this->_propDict["errorCode"]); return $this->_propDict["errorCode"]; } } return null; }
Gets the errorCode Error code if any occured. Possible values are: noError, unauthorized, notFound, deleted. @return ErrorCode|null The errorCode
getErrorCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setErrorCode($val) { $this->_propDict["errorCode"] = $val; return $this; }
Sets the errorCode Error code if any occured. Possible values are: noError, unauthorized, notFound, deleted. @param ErrorCode $val The errorCode @return PolicySet
setErrorCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getGuidedDeploymentTags() { if (array_key_exists("guidedDeploymentTags", $this->_propDict)) { return $this->_propDict["guidedDeploymentTags"]; } else { return null; } }
Gets the guidedDeploymentTags Tags of the guided deployment @return array|null The guidedDeploymentTags
getGuidedDeploymentTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setGuidedDeploymentTags($val) { $this->_propDict["guidedDeploymentTags"] = $val; return $this; }
Sets the guidedDeploymentTags Tags of the guided deployment @param string[] $val The guidedDeploymentTags @return PolicySet
setGuidedDeploymentTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; }
Gets the lastModifiedDateTime Last modified time of the PolicySet. @return \DateTime|null The lastModifiedDateTime
getLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; }
Sets the lastModifiedDateTime Last modified time of the PolicySet. @param \DateTime $val The lastModifiedDateTime @return PolicySet
setLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getRoleScopeTags() { if (array_key_exists("roleScopeTags", $this->_propDict)) { return $this->_propDict["roleScopeTags"]; } else { return null; } }
Gets the roleScopeTags RoleScopeTags of the PolicySet @return array|null The roleScopeTags
getRoleScopeTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setRoleScopeTags($val) { $this->_propDict["roleScopeTags"] = $val; return $this; }
Sets the roleScopeTags RoleScopeTags of the PolicySet @param string[] $val The roleScopeTags @return PolicySet
setRoleScopeTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\PolicySetStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new PolicySetStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; }
Gets the status Validation/assignment status of the PolicySet. Possible values are: unknown, validating, partialSuccess, success, error, notAssigned. @return PolicySetStatus|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setStatus($val) { $this->_propDict["status"] = $val; return $this; }
Sets the status Validation/assignment status of the PolicySet. Possible values are: unknown, validating, partialSuccess, success, error, notAssigned. @param PolicySetStatus $val The status @return PolicySet
setStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getAssignments() { if (array_key_exists("assignments", $this->_propDict)) { return $this->_propDict["assignments"]; } else { return null; } }
Gets the assignments Assignments of the PolicySet. @return array|null The assignments
getAssignments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setAssignments($val) { $this->_propDict["assignments"] = $val; return $this; }
Sets the assignments Assignments of the PolicySet. @param PolicySetAssignment[] $val The assignments @return PolicySet
setAssignments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getItems() { if (array_key_exists("items", $this->_propDict)) { return $this->_propDict["items"]; } else { return null; } }
Gets the items Items of the PolicySet with maximum count 100. @return array|null The items
getItems
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function setItems($val) { $this->_propDict["items"] = $val; return $this; }
Sets the items Items of the PolicySet with maximum count 100. @param PolicySetItem[] $val The items @return PolicySet
setItems
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PolicySet.php
MIT
public function getDayOfMonth() { if (array_key_exists("dayOfMonth", $this->_propDict)) { return $this->_propDict["dayOfMonth"]; } else { return null; } }
Gets the dayOfMonth The day of the month on which the event occurs. Required if type is absoluteMonthly or absoluteYearly. @return int|null The dayOfMonth
getDayOfMonth
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setDayOfMonth($val) { $this->_propDict["dayOfMonth"] = $val; return $this; }
Sets the dayOfMonth The day of the month on which the event occurs. Required if type is absoluteMonthly or absoluteYearly. @param int $val The value of the dayOfMonth @return RecurrencePattern
setDayOfMonth
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getDaysOfWeek() { if (array_key_exists("daysOfWeek", $this->_propDict)) { if (is_a($this->_propDict["daysOfWeek"], "\Beta\Microsoft\Graph\Model\DayOfWeek") || is_null($this->_propDict["daysOfWeek"])) { return $this->_propDict["daysOfWeek"]; } else { $this->_propDict["daysOfWeek"] = new DayOfWeek($this->_propDict["daysOfWeek"]); return $this->_propDict["daysOfWeek"]; } } return null; }
Gets the daysOfWeek A collection of the days of the week on which the event occurs. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly. @return DayOfWeek|null The daysOfWeek
getDaysOfWeek
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setDaysOfWeek($val) { $this->_propDict["daysOfWeek"] = $val; return $this; }
Sets the daysOfWeek A collection of the days of the week on which the event occurs. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly. @param DayOfWeek $val The value to assign to the daysOfWeek @return RecurrencePattern The RecurrencePattern
setDaysOfWeek
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getFirstDayOfWeek() { if (array_key_exists("firstDayOfWeek", $this->_propDict)) { if (is_a($this->_propDict["firstDayOfWeek"], "\Beta\Microsoft\Graph\Model\DayOfWeek") || is_null($this->_propDict["firstDayOfWeek"])) { return $this->_propDict["firstDayOfWeek"]; } else { $this->_propDict["firstDayOfWeek"] = new DayOfWeek($this->_propDict["firstDayOfWeek"]); return $this->_propDict["firstDayOfWeek"]; } } return null; }
Gets the firstDayOfWeek The first day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is sunday. Required if type is weekly. @return DayOfWeek|null The firstDayOfWeek
getFirstDayOfWeek
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setFirstDayOfWeek($val) { $this->_propDict["firstDayOfWeek"] = $val; return $this; }
Sets the firstDayOfWeek The first day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is sunday. Required if type is weekly. @param DayOfWeek $val The value to assign to the firstDayOfWeek @return RecurrencePattern The RecurrencePattern
setFirstDayOfWeek
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getIndex() { if (array_key_exists("index", $this->_propDict)) { if (is_a($this->_propDict["index"], "\Beta\Microsoft\Graph\Model\WeekIndex") || is_null($this->_propDict["index"])) { return $this->_propDict["index"]; } else { $this->_propDict["index"] = new WeekIndex($this->_propDict["index"]); return $this->_propDict["index"]; } } return null; }
Gets the index Specifies on which instance of the allowed days specified in daysOfWeek the event occurs, counted from the first instance in the month. The possible values are: first, second, third, fourth, last. Default is first. Optional and used if type is relativeMonthly or relativeYearly. @return WeekIndex|null The index
getIndex
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setIndex($val) { $this->_propDict["index"] = $val; return $this; }
Sets the index Specifies on which instance of the allowed days specified in daysOfWeek the event occurs, counted from the first instance in the month. The possible values are: first, second, third, fourth, last. Default is first. Optional and used if type is relativeMonthly or relativeYearly. @param WeekIndex $val The value to assign to the index @return RecurrencePattern The RecurrencePattern
setIndex
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getInterval() { if (array_key_exists("interval", $this->_propDict)) { return $this->_propDict["interval"]; } else { return null; } }
Gets the interval The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type. Required. @return int|null The interval
getInterval
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setInterval($val) { $this->_propDict["interval"] = $val; return $this; }
Sets the interval The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type. Required. @param int $val The value of the interval @return RecurrencePattern
setInterval
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getMonth() { if (array_key_exists("month", $this->_propDict)) { return $this->_propDict["month"]; } else { return null; } }
Gets the month The month in which the event occurs. This is a number from 1 to 12. @return int|null The month
getMonth
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setMonth($val) { $this->_propDict["month"] = $val; return $this; }
Sets the month The month in which the event occurs. This is a number from 1 to 12. @param int $val The value of the month @return RecurrencePattern
setMonth
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getType() { if (array_key_exists("type", $this->_propDict)) { if (is_a($this->_propDict["type"], "\Beta\Microsoft\Graph\Model\RecurrencePatternType") || is_null($this->_propDict["type"])) { return $this->_propDict["type"]; } else { $this->_propDict["type"] = new RecurrencePatternType($this->_propDict["type"]); return $this->_propDict["type"]; } } return null; }
Gets the type The recurrence pattern type: daily, weekly, absoluteMonthly, relativeMonthly, absoluteYearly, relativeYearly. Required. For more information, see values of type property. @return RecurrencePatternType|null The type
getType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function setType($val) { $this->_propDict["type"] = $val; return $this; }
Sets the type The recurrence pattern type: daily, weekly, absoluteMonthly, relativeMonthly, absoluteYearly, relativeYearly. Required. For more information, see values of type property. @param RecurrencePatternType $val The value to assign to the type @return RecurrencePattern The RecurrencePattern
setType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecurrencePattern.php
MIT
public function getLastAuthenticatedDateTime() { if (array_key_exists("lastAuthenticatedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastAuthenticatedDateTime"], "\DateTime") || is_null($this->_propDict["lastAuthenticatedDateTime"])) { return $this->_propDict["lastAuthenticatedDateTime"]; } else { $this->_propDict["lastAuthenticatedDateTime"] = new \DateTime($this->_propDict["lastAuthenticatedDateTime"]); return $this->_propDict["lastAuthenticatedDateTime"]; } } return null; }
Gets the lastAuthenticatedDateTime @return \DateTime|null The lastAuthenticatedDateTime
getLastAuthenticatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
MIT
public function setLastAuthenticatedDateTime($val) { $this->_propDict["lastAuthenticatedDateTime"] = $val; return $this; }
Sets the lastAuthenticatedDateTime @param \DateTime $val The lastAuthenticatedDateTime @return StrongAuthenticationPhoneAppDetail
setLastAuthenticatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
MIT
public function getOathTokenTimeDriftInSeconds() { if (array_key_exists("oathTokenTimeDriftInSeconds", $this->_propDict)) { return $this->_propDict["oathTokenTimeDriftInSeconds"]; } else { return null; } }
Gets the oathTokenTimeDriftInSeconds @return int|null The oathTokenTimeDriftInSeconds
getOathTokenTimeDriftInSeconds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
MIT
public function setOathTokenTimeDriftInSeconds($val) { $this->_propDict["oathTokenTimeDriftInSeconds"] = intval($val); return $this; }
Sets the oathTokenTimeDriftInSeconds @param int $val The oathTokenTimeDriftInSeconds @return StrongAuthenticationPhoneAppDetail
setOathTokenTimeDriftInSeconds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php
MIT