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 getIsLicenseReconciliationNeeded() { if (array_key_exists("isLicenseReconciliationNeeded", $this->_propDict)) { return $this->_propDict["isLicenseReconciliationNeeded"]; } else { return null; } }
Gets the isLicenseReconciliationNeeded Indicates whether the user is pending an exchange mailbox license assignment. Read-only. Supports $filter (eq where true only). @return bool|null The isLicenseReconciliationNeeded
getIsLicenseReconciliationNeeded
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setIsLicenseReconciliationNeeded($val) { $this->_propDict["isLicenseReconciliationNeeded"] = boolval($val); return $this; }
Sets the isLicenseReconciliationNeeded Indicates whether the user is pending an exchange mailbox license assignment. Read-only. Supports $filter (eq where true only). @param bool $val The isLicenseReconciliationNeeded @return User
setIsLicenseReconciliationNeeded
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.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/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setIsManagementRestricted($val) { $this->_propDict["isManagementRestricted"] = boolval($val); return $this; }
Sets the isManagementRestricted @param bool $val The isManagementRestricted @return User
setIsManagementRestricted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getIsResourceAccount() { if (array_key_exists("isResourceAccount", $this->_propDict)) { return $this->_propDict["isResourceAccount"]; } else { return null; } }
Gets the isResourceAccount Do not use – reserved for future use. @return bool|null The isResourceAccount
getIsResourceAccount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setIsResourceAccount($val) { $this->_propDict["isResourceAccount"] = boolval($val); return $this; }
Sets the isResourceAccount Do not use – reserved for future use. @param bool $val The isResourceAccount @return User
setIsResourceAccount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getJobTitle() { if (array_key_exists("jobTitle", $this->_propDict)) { return $this->_propDict["jobTitle"]; } else { return null; } }
Gets the jobTitle The user's job title. Maximum length is 128 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). @return string|null The jobTitle
getJobTitle
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setJobTitle($val) { $this->_propDict["jobTitle"] = $val; return $this; }
Sets the jobTitle The user's job title. Maximum length is 128 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). @param string $val The jobTitle @return User
setJobTitle
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getLastPasswordChangeDateTime() { if (array_key_exists("lastPasswordChangeDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastPasswordChangeDateTime"], "\DateTime") || is_null($this->_propDict["lastPasswordChangeDateTime"])) { return $this->_propDict["lastPasswordChangeDateTime"]; } else { $this->_propDict["lastPasswordChangeDateTime"] = new \DateTime($this->_propDict["lastPasswordChangeDateTime"]); return $this->_propDict["lastPasswordChangeDateTime"]; } } return null; }
Gets the lastPasswordChangeDateTime The time when this Azure AD user last changed their password or when their password was created, , whichever date the latest action was performed. 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. Returned only on $select. @return \DateTime|null The lastPasswordChangeDateTime
getLastPasswordChangeDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setLastPasswordChangeDateTime($val) { $this->_propDict["lastPasswordChangeDateTime"] = $val; return $this; }
Sets the lastPasswordChangeDateTime The time when this Azure AD user last changed their password or when their password was created, , whichever date the latest action was performed. 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. Returned only on $select. @param \DateTime $val The lastPasswordChangeDateTime @return User
setLastPasswordChangeDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getLegalAgeGroupClassification() { if (array_key_exists("legalAgeGroupClassification", $this->_propDict)) { return $this->_propDict["legalAgeGroupClassification"]; } else { return null; } }
Gets the legalAgeGroupClassification Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult and Adult. Refer to the legal age group property definitions for further information. Returned only on $select. @return string|null The legalAgeGroupClassification
getLegalAgeGroupClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setLegalAgeGroupClassification($val) { $this->_propDict["legalAgeGroupClassification"] = $val; return $this; }
Sets the legalAgeGroupClassification Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult and Adult. Refer to the legal age group property definitions for further information. Returned only on $select. @param string $val The legalAgeGroupClassification @return User
setLegalAgeGroupClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getLicenseAssignmentStates() { if (array_key_exists("licenseAssignmentStates", $this->_propDict)) { return $this->_propDict["licenseAssignmentStates"]; } else { return null; } }
Gets the licenseAssignmentStates State of license assignments for this user. Also indicates licenses that are directly-assigned and those that the user has inherited through group memberships. Read-only. Returned only on $select. @return array|null The licenseAssignmentStates
getLicenseAssignmentStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setLicenseAssignmentStates($val) { $this->_propDict["licenseAssignmentStates"] = $val; return $this; }
Sets the licenseAssignmentStates State of license assignments for this user. Also indicates licenses that are directly-assigned and those that the user has inherited through group memberships. Read-only. Returned only on $select. @param LicenseAssignmentState[] $val The licenseAssignmentStates @return User
setLicenseAssignmentStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getMail() { if (array_key_exists("mail", $this->_propDict)) { return $this->_propDict["mail"]; } else { return null; } }
Gets the mail The SMTP address for the user, for example, [email protected]. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. This property cannot contain accent characters. NOTE: We do not recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values). @return string|null The mail
getMail
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setMail($val) { $this->_propDict["mail"] = $val; return $this; }
Sets the mail The SMTP address for the user, for example, [email protected]. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. This property cannot contain accent characters. NOTE: We do not recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values). @param string $val The mail @return User
setMail
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getMailNickname() { if (array_key_exists("mailNickname", $this->_propDict)) { return $this->_propDict["mailNickname"]; } else { return null; } }
Gets the mailNickname The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The mailNickname
getMailNickname
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setMailNickname($val) { $this->_propDict["mailNickname"] = $val; return $this; }
Sets the mailNickname The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The mailNickname @return User
setMailNickname
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getMobilePhone() { if (array_key_exists("mobilePhone", $this->_propDict)) { return $this->_propDict["mobilePhone"]; } else { return null; } }
Gets the mobilePhone The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The mobilePhone
getMobilePhone
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setMobilePhone($val) { $this->_propDict["mobilePhone"] = $val; return $this; }
Sets the mobilePhone The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The mobilePhone @return User
setMobilePhone
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOfficeLocation() { if (array_key_exists("officeLocation", $this->_propDict)) { return $this->_propDict["officeLocation"]; } else { return null; } }
Gets the officeLocation The office location in the user's place of business. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The officeLocation
getOfficeLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOfficeLocation($val) { $this->_propDict["officeLocation"] = $val; return $this; }
Sets the officeLocation The office location in the user's place of business. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The officeLocation @return User
setOfficeLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesDistinguishedName() { if (array_key_exists("onPremisesDistinguishedName", $this->_propDict)) { return $this->_propDict["onPremisesDistinguishedName"]; } else { return null; } }
Gets the onPremisesDistinguishedName Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. @return string|null The onPremisesDistinguishedName
getOnPremisesDistinguishedName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesDistinguishedName($val) { $this->_propDict["onPremisesDistinguishedName"] = $val; return $this; }
Sets the onPremisesDistinguishedName Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. @param string $val The onPremisesDistinguishedName @return User
setOnPremisesDistinguishedName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesDomainName() { if (array_key_exists("onPremisesDomainName", $this->_propDict)) { return $this->_propDict["onPremisesDomainName"]; } else { return null; } }
Gets the onPremisesDomainName Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. @return string|null The onPremisesDomainName
getOnPremisesDomainName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesDomainName($val) { $this->_propDict["onPremisesDomainName"] = $val; return $this; }
Sets the onPremisesDomainName Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. @param string $val The onPremisesDomainName @return User
setOnPremisesDomainName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesExtensionAttributes() { if (array_key_exists("onPremisesExtensionAttributes", $this->_propDict)) { if (is_a($this->_propDict["onPremisesExtensionAttributes"], "\Beta\Microsoft\Graph\Model\OnPremisesExtensionAttributes") || is_null($this->_propDict["onPremisesExtensionAttributes"])) { return $this->_propDict["onPremisesExtensionAttributes"]; } else { $this->_propDict["onPremisesExtensionAttributes"] = new OnPremisesExtensionAttributes($this->_propDict["onPremisesExtensionAttributes"]); return $this->_propDict["onPremisesExtensionAttributes"]; } } return null; }
Gets the onPremisesExtensionAttributes Contains extensionAttributes1-15 for the user. These extension attributes are also known as Exchange custom attributes 1-15. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties can be set during creation or update of a user object. For a cloud-only user previously synced from on-premises Active Directory, these properties are read-only in Microsoft Graph but can be fully managed through the Exchange Admin Center or the Exchange Online V2 module in PowerShell. Supports $filter (eq, ne, not, in). @return OnPremisesExtensionAttributes|null The onPremisesExtensionAttributes
getOnPremisesExtensionAttributes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesExtensionAttributes($val) { $this->_propDict["onPremisesExtensionAttributes"] = $val; return $this; }
Sets the onPremisesExtensionAttributes Contains extensionAttributes1-15 for the user. These extension attributes are also known as Exchange custom attributes 1-15. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties can be set during creation or update of a user object. For a cloud-only user previously synced from on-premises Active Directory, these properties are read-only in Microsoft Graph but can be fully managed through the Exchange Admin Center or the Exchange Online V2 module in PowerShell. Supports $filter (eq, ne, not, in). @param OnPremisesExtensionAttributes $val The onPremisesExtensionAttributes @return User
setOnPremisesExtensionAttributes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesImmutableId() { if (array_key_exists("onPremisesImmutableId", $this->_propDict)) { return $this->_propDict["onPremisesImmutableId"]; } else { return null; } }
Gets the onPremisesImmutableId This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. Note: The $ and _ characters cannot be used when specifying this property. Supports $filter (eq, ne, not, ge, le, in). @return string|null The onPremisesImmutableId
getOnPremisesImmutableId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesImmutableId($val) { $this->_propDict["onPremisesImmutableId"] = $val; return $this; }
Sets the onPremisesImmutableId This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. Note: The $ and _ characters cannot be used when specifying this property. Supports $filter (eq, ne, not, ge, le, in). @param string $val The onPremisesImmutableId @return User
setOnPremisesImmutableId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.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 Indicates the last time at which the object was synced with the on-premises directory; for example: '2013-02-16T03:04:54Z'. 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/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesLastSyncDateTime($val) { $this->_propDict["onPremisesLastSyncDateTime"] = $val; return $this; }
Sets the onPremisesLastSyncDateTime Indicates the last time at which the object was synced with the on-premises directory; for example: '2013-02-16T03:04:54Z'. 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 User
setOnPremisesLastSyncDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesProvisioningErrors() { if (array_key_exists("onPremisesProvisioningErrors", $this->_propDict)) { return $this->_propDict["onPremisesProvisioningErrors"]; } else { return null; } }
Gets the onPremisesProvisioningErrors Errors when using Microsoft synchronization product during provisioning. Supports $filter (eq, not, ge, le). @return array|null The onPremisesProvisioningErrors
getOnPremisesProvisioningErrors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesProvisioningErrors($val) { $this->_propDict["onPremisesProvisioningErrors"] = $val; return $this; }
Sets the onPremisesProvisioningErrors Errors when using Microsoft synchronization product during provisioning. Supports $filter (eq, not, ge, le). @param OnPremisesProvisioningError[] $val The onPremisesProvisioningErrors @return User
setOnPremisesProvisioningErrors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesSamAccountName() { if (array_key_exists("onPremisesSamAccountName", $this->_propDict)) { return $this->_propDict["onPremisesSamAccountName"]; } else { return null; } }
Gets the onPremisesSamAccountName Contains the on-premises sAMAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith). @return string|null The onPremisesSamAccountName
getOnPremisesSamAccountName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesSamAccountName($val) { $this->_propDict["onPremisesSamAccountName"] = $val; return $this; }
Sets the onPremisesSamAccountName Contains the on-premises sAMAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith). @param string $val The onPremisesSamAccountName @return User
setOnPremisesSamAccountName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesSecurityIdentifier() { if (array_key_exists("onPremisesSecurityIdentifier", $this->_propDict)) { return $this->_propDict["onPremisesSecurityIdentifier"]; } else { return null; } }
Gets the onPremisesSecurityIdentifier Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Supports $filter (eq including on null values). @return string|null The onPremisesSecurityIdentifier
getOnPremisesSecurityIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesSecurityIdentifier($val) { $this->_propDict["onPremisesSecurityIdentifier"] = $val; return $this; }
Sets the onPremisesSecurityIdentifier Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Supports $filter (eq including on null values). @param string $val The onPremisesSecurityIdentifier @return User
setOnPremisesSecurityIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.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 user object is currently being synced from an on-premises Active Directory (AD); otherwise the user isn't being synced and can be managed in Azure Active Directory (Azure AD). 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/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesSyncEnabled($val) { $this->_propDict["onPremisesSyncEnabled"] = boolval($val); return $this; }
Sets the onPremisesSyncEnabled true if this user object is currently being synced from an on-premises Active Directory (AD); otherwise the user isn't being synced and can be managed in Azure Active Directory (Azure AD). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). @param bool $val The onPremisesSyncEnabled @return User
setOnPremisesSyncEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOnPremisesUserPrincipalName() { if (array_key_exists("onPremisesUserPrincipalName", $this->_propDict)) { return $this->_propDict["onPremisesUserPrincipalName"]; } else { return null; } }
Gets the onPremisesUserPrincipalName Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith). @return string|null The onPremisesUserPrincipalName
getOnPremisesUserPrincipalName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOnPremisesUserPrincipalName($val) { $this->_propDict["onPremisesUserPrincipalName"] = $val; return $this; }
Sets the onPremisesUserPrincipalName Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith). @param string $val The onPremisesUserPrincipalName @return User
setOnPremisesUserPrincipalName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getOtherMails() { if (array_key_exists("otherMails", $this->_propDict)) { return $this->_propDict["otherMails"]; } else { return null; } }
Gets the otherMails A list of additional email addresses for the user; for example: ['[email protected]', '[email protected]'].NOTE: This property cannot contain accent characters.Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0). @return array|null The otherMails
getOtherMails
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setOtherMails($val) { $this->_propDict["otherMails"] = $val; return $this; }
Sets the otherMails A list of additional email addresses for the user; for example: ['[email protected]', '[email protected]'].NOTE: This property cannot contain accent characters.Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0). @param string[] $val The otherMails @return User
setOtherMails
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPasswordPolicies() { if (array_key_exists("passwordPolicies", $this->_propDict)) { return $this->_propDict["passwordPolicies"]; } else { return null; } }
Gets the passwordPolicies Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. For more information on the default password policies, see Azure AD pasword policies. Supports $filter (ne, not, and eq on null values). @return string|null The passwordPolicies
getPasswordPolicies
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPasswordPolicies($val) { $this->_propDict["passwordPolicies"] = $val; return $this; }
Sets the passwordPolicies Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. For more information on the default password policies, see Azure AD pasword policies. Supports $filter (ne, not, and eq on null values). @param string $val The passwordPolicies @return User
setPasswordPolicies
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPasswordProfile() { if (array_key_exists("passwordProfile", $this->_propDict)) { if (is_a($this->_propDict["passwordProfile"], "\Beta\Microsoft\Graph\Model\PasswordProfile") || is_null($this->_propDict["passwordProfile"])) { return $this->_propDict["passwordProfile"]; } else { $this->_propDict["passwordProfile"] = new PasswordProfile($this->_propDict["passwordProfile"]); return $this->_propDict["passwordProfile"]; } } return null; }
Gets the passwordProfile Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. Supports $filter (eq, ne, not, in, and eq on null values). @return PasswordProfile|null The passwordProfile
getPasswordProfile
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPasswordProfile($val) { $this->_propDict["passwordProfile"] = $val; return $this; }
Sets the passwordProfile Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. Supports $filter (eq, ne, not, in, and eq on null values). @param PasswordProfile $val The passwordProfile @return User
setPasswordProfile
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPostalCode() { if (array_key_exists("postalCode", $this->_propDict)) { return $this->_propDict["postalCode"]; } else { return null; } }
Gets the postalCode The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The postalCode
getPostalCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPostalCode($val) { $this->_propDict["postalCode"] = $val; return $this; }
Sets the postalCode The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The postalCode @return User
setPostalCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPreferredDataLocation() { if (array_key_exists("preferredDataLocation", $this->_propDict)) { return $this->_propDict["preferredDataLocation"]; } else { return null; } }
Gets the preferredDataLocation The preferred data location for the user. For more information, see OneDrive Online Multi-Geo. @return string|null The preferredDataLocation
getPreferredDataLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPreferredDataLocation($val) { $this->_propDict["preferredDataLocation"] = $val; return $this; }
Sets the preferredDataLocation The preferred data location for the user. For more information, see OneDrive Online Multi-Geo. @param string $val The preferredDataLocation @return User
setPreferredDataLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPreferredLanguage() { if (array_key_exists("preferredLanguage", $this->_propDict)) { return $this->_propDict["preferredLanguage"]; } else { return null; } }
Gets the preferredLanguage The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The preferredLanguage
getPreferredLanguage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPreferredLanguage($val) { $this->_propDict["preferredLanguage"] = $val; return $this; }
Sets the preferredLanguage The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The preferredLanguage @return User
setPreferredLanguage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getProvisionedPlans() { if (array_key_exists("provisionedPlans", $this->_propDict)) { return $this->_propDict["provisionedPlans"]; } else { return null; } }
Gets the provisionedPlans The plans that are provisioned for the user. Read-only. Not nullable. Supports $filter (eq, not, ge, le). @return array|null The provisionedPlans
getProvisionedPlans
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setProvisionedPlans($val) { $this->_propDict["provisionedPlans"] = $val; return $this; }
Sets the provisionedPlans The plans that are provisioned for the user. Read-only. Not nullable. Supports $filter (eq, not, ge, le). @param ProvisionedPlan[] $val The provisionedPlans @return User
setProvisionedPlans
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getProxyAddresses() { if (array_key_exists("proxyAddresses", $this->_propDict)) { return $this->_propDict["proxyAddresses"]; } else { return null; } }
Gets the proxyAddresses For example: ['SMTP: [email protected]', 'smtp: [email protected]']. Changes to the mail property will also update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, /$count eq 0, /$count ne 0). @return array|null The proxyAddresses
getProxyAddresses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setProxyAddresses($val) { $this->_propDict["proxyAddresses"] = $val; return $this; }
Sets the proxyAddresses For example: ['SMTP: [email protected]', 'smtp: [email protected]']. Changes to the mail property will also update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, /$count eq 0, /$count ne 0). @param string[] $val The proxyAddresses @return User
setProxyAddresses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getRefreshTokensValidFromDateTime() { if (array_key_exists("refreshTokensValidFromDateTime", $this->_propDict)) { if (is_a($this->_propDict["refreshTokensValidFromDateTime"], "\DateTime") || is_null($this->_propDict["refreshTokensValidFromDateTime"])) { return $this->_propDict["refreshTokensValidFromDateTime"]; } else { $this->_propDict["refreshTokensValidFromDateTime"] = new \DateTime($this->_propDict["refreshTokensValidFromDateTime"]); return $this->_propDict["refreshTokensValidFromDateTime"]; } } return null; }
Gets the refreshTokensValidFromDateTime Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use invalidateAllRefreshTokens to reset. @return \DateTime|null The refreshTokensValidFromDateTime
getRefreshTokensValidFromDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setRefreshTokensValidFromDateTime($val) { $this->_propDict["refreshTokensValidFromDateTime"] = $val; return $this; }
Sets the refreshTokensValidFromDateTime Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use invalidateAllRefreshTokens to reset. @param \DateTime $val The refreshTokensValidFromDateTime @return User
setRefreshTokensValidFromDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getSecurityIdentifier() { if (array_key_exists("securityIdentifier", $this->_propDict)) { return $this->_propDict["securityIdentifier"]; } else { return null; } }
Gets the securityIdentifier Security identifier (SID) of the user, used in Windows scenarios. Read-only. Returned by default. Supports $select and $filter (eq, not, ge, le, startsWith). @return string|null The securityIdentifier
getSecurityIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setSecurityIdentifier($val) { $this->_propDict["securityIdentifier"] = $val; return $this; }
Sets the securityIdentifier Security identifier (SID) of the user, used in Windows scenarios. Read-only. Returned by default. Supports $select and $filter (eq, not, ge, le, startsWith). @param string $val The securityIdentifier @return User
setSecurityIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getServiceProvisioningErrors() { if (array_key_exists("serviceProvisioningErrors", $this->_propDict)) { return $this->_propDict["serviceProvisioningErrors"]; } else { return null; } }
Gets the serviceProvisioningErrors Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). @return array|null The serviceProvisioningErrors
getServiceProvisioningErrors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setServiceProvisioningErrors($val) { $this->_propDict["serviceProvisioningErrors"] = $val; return $this; }
Sets the serviceProvisioningErrors Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). @param ServiceProvisioningError[] $val The serviceProvisioningErrors @return User
setServiceProvisioningErrors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getShowInAddressList() { if (array_key_exists("showInAddressList", $this->_propDict)) { return $this->_propDict["showInAddressList"]; } else { return null; } }
Gets the showInAddressList Do not use in Microsoft Graph. Manage this property through the Microsoft 365 admin center instead. Represents whether the user should be included in the Outlook global address list. See Known issue. @return bool|null The showInAddressList
getShowInAddressList
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setShowInAddressList($val) { $this->_propDict["showInAddressList"] = boolval($val); return $this; }
Sets the showInAddressList Do not use in Microsoft Graph. Manage this property through the Microsoft 365 admin center instead. Represents whether the user should be included in the Outlook global address list. See Known issue. @param bool $val The showInAddressList @return User
setShowInAddressList
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getSignInSessionsValidFromDateTime() { if (array_key_exists("signInSessionsValidFromDateTime", $this->_propDict)) { if (is_a($this->_propDict["signInSessionsValidFromDateTime"], "\DateTime") || is_null($this->_propDict["signInSessionsValidFromDateTime"])) { return $this->_propDict["signInSessionsValidFromDateTime"]; } else { $this->_propDict["signInSessionsValidFromDateTime"] = new \DateTime($this->_propDict["signInSessionsValidFromDateTime"]); return $this->_propDict["signInSessionsValidFromDateTime"]; } } return null; }
Gets the signInSessionsValidFromDateTime Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use revokeSignInSessions to reset. @return \DateTime|null The signInSessionsValidFromDateTime
getSignInSessionsValidFromDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setSignInSessionsValidFromDateTime($val) { $this->_propDict["signInSessionsValidFromDateTime"] = $val; return $this; }
Sets the signInSessionsValidFromDateTime Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use revokeSignInSessions to reset. @param \DateTime $val The signInSessionsValidFromDateTime @return User
setSignInSessionsValidFromDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getState() { if (array_key_exists("state", $this->_propDict)) { return $this->_propDict["state"]; } else { return null; } }
Gets the state The state or province in the user's address. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The state
getState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setState($val) { $this->_propDict["state"] = $val; return $this; }
Sets the state The state or province in the user's address. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The state @return User
setState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getStreetAddress() { if (array_key_exists("streetAddress", $this->_propDict)) { return $this->_propDict["streetAddress"]; } else { return null; } }
Gets the streetAddress The street address of the user's place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The streetAddress
getStreetAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setStreetAddress($val) { $this->_propDict["streetAddress"] = $val; return $this; }
Sets the streetAddress The street address of the user's place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The streetAddress @return User
setStreetAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getSurname() { if (array_key_exists("surname", $this->_propDict)) { return $this->_propDict["surname"]; } else { return null; } }
Gets the surname The user's surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The surname
getSurname
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setSurname($val) { $this->_propDict["surname"] = $val; return $this; }
Sets the surname The user's surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The surname @return User
setSurname
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getUsageLocation() { if (array_key_exists("usageLocation", $this->_propDict)) { return $this->_propDict["usageLocation"]; } else { return null; } }
Gets the usageLocation A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @return string|null The usageLocation
getUsageLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setUsageLocation($val) { $this->_propDict["usageLocation"] = $val; return $this; }
Sets the usageLocation A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). @param string $val The usageLocation @return User
setUsageLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getUserPrincipalName() { if (array_key_exists("userPrincipalName", $this->_propDict)) { return $this->_propDict["userPrincipalName"]; } else { return null; } }
Gets the userPrincipalName The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy. @return string|null The userPrincipalName
getUserPrincipalName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setUserPrincipalName($val) { $this->_propDict["userPrincipalName"] = $val; return $this; }
Sets the userPrincipalName The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy. @param string $val The userPrincipalName @return User
setUserPrincipalName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getUserType() { if (array_key_exists("userType", $this->_propDict)) { return $this->_propDict["userType"]; } else { return null; } }
Gets the userType A String value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for member and guest users, see What are the default user permissions in Azure Active Directory? @return string|null The userType
getUserType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setUserType($val) { $this->_propDict["userType"] = $val; return $this; }
Sets the userType A String value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for member and guest users, see What are the default user permissions in Azure Active Directory? @param string $val The userType @return User
setUserType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getMailboxSettings() { if (array_key_exists("mailboxSettings", $this->_propDict)) { if (is_a($this->_propDict["mailboxSettings"], "\Beta\Microsoft\Graph\Model\MailboxSettings") || is_null($this->_propDict["mailboxSettings"])) { return $this->_propDict["mailboxSettings"]; } else { $this->_propDict["mailboxSettings"] = new MailboxSettings($this->_propDict["mailboxSettings"]); return $this->_propDict["mailboxSettings"]; } } return null; }
Gets the mailboxSettings Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. For more information, see User preferences for languages and regional formats. Returned only on $select. @return MailboxSettings|null The mailboxSettings
getMailboxSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setMailboxSettings($val) { $this->_propDict["mailboxSettings"] = $val; return $this; }
Sets the mailboxSettings Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. For more information, see User preferences for languages and regional formats. Returned only on $select. @param MailboxSettings $val The mailboxSettings @return User
setMailboxSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getDeviceEnrollmentLimit() { if (array_key_exists("deviceEnrollmentLimit", $this->_propDict)) { return $this->_propDict["deviceEnrollmentLimit"]; } else { return null; } }
Gets the deviceEnrollmentLimit The limit on the maximum number of devices that the user is permitted to enroll. Allowed values are 5 or 1000. @return int|null The deviceEnrollmentLimit
getDeviceEnrollmentLimit
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setDeviceEnrollmentLimit($val) { $this->_propDict["deviceEnrollmentLimit"] = intval($val); return $this; }
Sets the deviceEnrollmentLimit The limit on the maximum number of devices that the user is permitted to enroll. Allowed values are 5 or 1000. @param int $val The deviceEnrollmentLimit @return User
setDeviceEnrollmentLimit
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getAboutMe() { if (array_key_exists("aboutMe", $this->_propDict)) { return $this->_propDict["aboutMe"]; } else { return null; } }
Gets the aboutMe A freeform text entry field for the user to describe themselves. Returned only on $select. @return string|null The aboutMe
getAboutMe
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setAboutMe($val) { $this->_propDict["aboutMe"] = $val; return $this; }
Sets the aboutMe A freeform text entry field for the user to describe themselves. Returned only on $select. @param string $val The aboutMe @return User
setAboutMe
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getBirthday() { if (array_key_exists("birthday", $this->_propDict)) { if (is_a($this->_propDict["birthday"], "\DateTime") || is_null($this->_propDict["birthday"])) { return $this->_propDict["birthday"]; } else { $this->_propDict["birthday"] = new \DateTime($this->_propDict["birthday"]); return $this->_propDict["birthday"]; } } return null; }
Gets the birthday The birthday of the user. 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 Returned only on $select. @return \DateTime|null The birthday
getBirthday
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setBirthday($val) { $this->_propDict["birthday"] = $val; return $this; }
Sets the birthday The birthday of the user. 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 Returned only on $select. @param \DateTime $val The birthday @return User
setBirthday
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getHireDate() { if (array_key_exists("hireDate", $this->_propDict)) { if (is_a($this->_propDict["hireDate"], "\DateTime") || is_null($this->_propDict["hireDate"])) { return $this->_propDict["hireDate"]; } else { $this->_propDict["hireDate"] = new \DateTime($this->_propDict["hireDate"]); return $this->_propDict["hireDate"]; } } return null; }
Gets the hireDate The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs. @return \DateTime|null The hireDate
getHireDate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setHireDate($val) { $this->_propDict["hireDate"] = $val; return $this; }
Sets the hireDate The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs. @param \DateTime $val The hireDate @return User
setHireDate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getInterests() { if (array_key_exists("interests", $this->_propDict)) { return $this->_propDict["interests"]; } else { return null; } }
Gets the interests A list for the user to describe their interests. Returned only on $select. @return array|null The interests
getInterests
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setInterests($val) { $this->_propDict["interests"] = $val; return $this; }
Sets the interests A list for the user to describe their interests. Returned only on $select. @param string[] $val The interests @return User
setInterests
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getMySite() { if (array_key_exists("mySite", $this->_propDict)) { return $this->_propDict["mySite"]; } else { return null; } }
Gets the mySite The URL for the user's personal site. Returned only on $select. @return string|null The mySite
getMySite
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setMySite($val) { $this->_propDict["mySite"] = $val; return $this; }
Sets the mySite The URL for the user's personal site. Returned only on $select. @param string $val The mySite @return User
setMySite
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPastProjects() { if (array_key_exists("pastProjects", $this->_propDict)) { return $this->_propDict["pastProjects"]; } else { return null; } }
Gets the pastProjects A list for the user to enumerate their past projects. Returned only on $select. @return array|null The pastProjects
getPastProjects
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPastProjects($val) { $this->_propDict["pastProjects"] = $val; return $this; }
Sets the pastProjects A list for the user to enumerate their past projects. Returned only on $select. @param string[] $val The pastProjects @return User
setPastProjects
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getPreferredName() { if (array_key_exists("preferredName", $this->_propDict)) { return $this->_propDict["preferredName"]; } else { return null; } }
Gets the preferredName The preferred name for the user. Not Supported. This attribute returns an empty string.Returned only on $select. @return string|null The preferredName
getPreferredName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setPreferredName($val) { $this->_propDict["preferredName"] = $val; return $this; }
Sets the preferredName The preferred name for the user. Not Supported. This attribute returns an empty string.Returned only on $select. @param string $val The preferredName @return User
setPreferredName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function getResponsibilities() { if (array_key_exists("responsibilities", $this->_propDict)) { return $this->_propDict["responsibilities"]; } else { return null; } }
Gets the responsibilities A list for the user to enumerate their responsibilities. Returned only on $select. @return array|null The responsibilities
getResponsibilities
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setResponsibilities($val) { $this->_propDict["responsibilities"] = $val; return $this; }
Sets the responsibilities A list for the user to enumerate their responsibilities. Returned only on $select. @param string[] $val The responsibilities @return User
setResponsibilities
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT