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 getSchools() { if (array_key_exists("schools", $this->_propDict)) { return $this->_propDict["schools"]; } else { return null; } }
Gets the schools A list for the user to enumerate the schools they have attended. Returned only on $select. @return array|null The schools
getSchools
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 setSchools($val) { $this->_propDict["schools"] = $val; return $this; }
Sets the schools A list for the user to enumerate the schools they have attended. Returned only on $select. @param string[] $val The schools @return User
setSchools
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 getSkills() { if (array_key_exists("skills", $this->_propDict)) { return $this->_propDict["skills"]; } else { return null; } }
Gets the skills A list for the user to enumerate their skills. Returned only on $select. @return array|null The skills
getSkills
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 setSkills($val) { $this->_propDict["skills"] = $val; return $this; }
Sets the skills A list for the user to enumerate their skills. Returned only on $select. @param string[] $val The skills @return User
setSkills
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 getUsageRights() { if (array_key_exists("usageRights", $this->_propDict)) { return $this->_propDict["usageRights"]; } else { return null; } }
Gets the usageRights Represents the usage rights a user has been granted. @return array|null The usageRights
getUsageRights
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 setUsageRights($val) { $this->_propDict["usageRights"] = $val; return $this; }
Sets the usageRights Represents the usage rights a user has been granted. @param UsageRight[] $val The usageRights @return User
setUsageRights
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 getInformationProtection() { if (array_key_exists("informationProtection", $this->_propDict)) { if (is_a($this->_propDict["informationProtection"], "\Beta\Microsoft\Graph\Model\InformationProtection") || is_null($this->_propDict["informationProtection"])) { return $this->_propDict["informationProtection"]; } else { $this->_propDict["informationProtection"] = new InformationProtection($this->_propDict["informationProtection"]); return $this->_propDict["informationProtection"]; } } return null; }
Gets the informationProtection @return InformationProtection|null The informationProtection
getInformationProtection
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 setInformationProtection($val) { $this->_propDict["informationProtection"] = $val; return $this; }
Sets the informationProtection @param InformationProtection $val The informationProtection @return User
setInformationProtection
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 getAppRoleAssignedResources() { if (array_key_exists("appRoleAssignedResources", $this->_propDict)) { return $this->_propDict["appRoleAssignedResources"]; } else { return null; } }
Gets the appRoleAssignedResources @return array|null The appRoleAssignedResources
getAppRoleAssignedResources
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 setAppRoleAssignedResources($val) { $this->_propDict["appRoleAssignedResources"] = $val; return $this; }
Sets the appRoleAssignedResources @param ServicePrincipal[] $val The appRoleAssignedResources @return User
setAppRoleAssignedResources
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 getAppRoleAssignments() { if (array_key_exists("appRoleAssignments", $this->_propDict)) { return $this->_propDict["appRoleAssignments"]; } else { return null; } }
Gets the appRoleAssignments Represents the app roles a user has been granted for an application. Supports $expand. @return array|null The appRoleAssignments
getAppRoleAssignments
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 setAppRoleAssignments($val) { $this->_propDict["appRoleAssignments"] = $val; return $this; }
Sets the appRoleAssignments Represents the app roles a user has been granted for an application. Supports $expand. @param AppRoleAssignment[] $val The appRoleAssignments @return User
setAppRoleAssignments
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 getCreatedObjects() { if (array_key_exists("createdObjects", $this->_propDict)) { return $this->_propDict["createdObjects"]; } else { return null; } }
Gets the createdObjects Directory objects that were created by the user. Read-only. Nullable. @return array|null The createdObjects
getCreatedObjects
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 setCreatedObjects($val) { $this->_propDict["createdObjects"] = $val; return $this; }
Sets the createdObjects Directory objects that were created by the user. Read-only. Nullable. @param DirectoryObject[] $val The createdObjects @return User
setCreatedObjects
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 getDirectReports() { if (array_key_exists("directReports", $this->_propDict)) { return $this->_propDict["directReports"]; } else { return null; } }
Gets the directReports The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. Supports $expand. @return array|null The directReports
getDirectReports
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 setDirectReports($val) { $this->_propDict["directReports"] = $val; return $this; }
Sets the directReports The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The directReports @return User
setDirectReports
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 getManager() { if (array_key_exists("manager", $this->_propDict)) { if (is_a($this->_propDict["manager"], "\Beta\Microsoft\Graph\Model\DirectoryObject") || is_null($this->_propDict["manager"])) { return $this->_propDict["manager"]; } else { $this->_propDict["manager"] = new DirectoryObject($this->_propDict["manager"]); return $this->_propDict["manager"]; } } return null; }
Gets the manager The user or contact that is this user's manager. Read-only. (HTTP Methods: GET, PUT, DELETE.). Supports $expand. @return DirectoryObject|null The manager
getManager
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 setManager($val) { $this->_propDict["manager"] = $val; return $this; }
Sets the manager The user or contact that is this user's manager. Read-only. (HTTP Methods: GET, PUT, DELETE.). Supports $expand. @param DirectoryObject $val The manager @return User
setManager
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 getMemberOf() { if (array_key_exists("memberOf", $this->_propDict)) { return $this->_propDict["memberOf"]; } else { return null; } }
Gets the memberOf The groups, directory roles and administrative units that the user 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/User.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/User.php
MIT
public function setMemberOf($val) { $this->_propDict["memberOf"] = $val; return $this; }
Sets the memberOf The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The memberOf @return User
setMemberOf
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 getOauth2PermissionGrants() { if (array_key_exists("oauth2PermissionGrants", $this->_propDict)) { return $this->_propDict["oauth2PermissionGrants"]; } else { return null; } }
Gets the oauth2PermissionGrants @return array|null The oauth2PermissionGrants
getOauth2PermissionGrants
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 setOauth2PermissionGrants($val) { $this->_propDict["oauth2PermissionGrants"] = $val; return $this; }
Sets the oauth2PermissionGrants @param OAuth2PermissionGrant[] $val The oauth2PermissionGrants @return User
setOauth2PermissionGrants
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 getOwnedDevices() { if (array_key_exists("ownedDevices", $this->_propDict)) { return $this->_propDict["ownedDevices"]; } else { return null; } }
Gets the ownedDevices Devices that are owned by the user. Read-only. Nullable. Supports $expand. @return array|null The ownedDevices
getOwnedDevices
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 setOwnedDevices($val) { $this->_propDict["ownedDevices"] = $val; return $this; }
Sets the ownedDevices Devices that are owned by the user. Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The ownedDevices @return User
setOwnedDevices
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 getOwnedObjects() { if (array_key_exists("ownedObjects", $this->_propDict)) { return $this->_propDict["ownedObjects"]; } else { return null; } }
Gets the ownedObjects Directory objects that are owned by the user. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). @return array|null The ownedObjects
getOwnedObjects
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 setOwnedObjects($val) { $this->_propDict["ownedObjects"] = $val; return $this; }
Sets the ownedObjects Directory objects that are owned by the user. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). @param DirectoryObject[] $val The ownedObjects @return User
setOwnedObjects
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 getRegisteredDevices() { if (array_key_exists("registeredDevices", $this->_propDict)) { return $this->_propDict["registeredDevices"]; } else { return null; } }
Gets the registeredDevices Devices that are registered for the user. Read-only. Nullable. Supports $expand. @return array|null The registeredDevices
getRegisteredDevices
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 setRegisteredDevices($val) { $this->_propDict["registeredDevices"] = $val; return $this; }
Sets the registeredDevices Devices that are registered for the user. Read-only. Nullable. Supports $expand. @param DirectoryObject[] $val The registeredDevices @return User
setRegisteredDevices
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 getScopedRoleMemberOf() { if (array_key_exists("scopedRoleMemberOf", $this->_propDict)) { return $this->_propDict["scopedRoleMemberOf"]; } else { return null; } }
Gets the scopedRoleMemberOf The scoped-role administrative unit memberships for this user. Read-only. Nullable. @return array|null The scopedRoleMemberOf
getScopedRoleMemberOf
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 setScopedRoleMemberOf($val) { $this->_propDict["scopedRoleMemberOf"] = $val; return $this; }
Sets the scopedRoleMemberOf The scoped-role administrative unit memberships for this user. Read-only. Nullable. @param ScopedRoleMembership[] $val The scopedRoleMemberOf @return User
setScopedRoleMemberOf
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 getTransitiveMemberOf() { if (array_key_exists("transitiveMemberOf", $this->_propDict)) { return $this->_propDict["transitiveMemberOf"]; } else { return null; } }
Gets the transitiveMemberOf The groups, including nested groups, and directory roles that a user is a member of. Nullable. @return array|null The transitiveMemberOf
getTransitiveMemberOf
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 setTransitiveMemberOf($val) { $this->_propDict["transitiveMemberOf"] = $val; return $this; }
Sets the transitiveMemberOf The groups, including nested groups, and directory roles that a user is a member of. Nullable. @param DirectoryObject[] $val The transitiveMemberOf @return User
setTransitiveMemberOf
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 getTransitiveReports() { if (array_key_exists("transitiveReports", $this->_propDict)) { return $this->_propDict["transitiveReports"]; } else { return null; } }
Gets the transitiveReports The transitive reports for a user. Read-only. @return array|null The transitiveReports
getTransitiveReports
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 setTransitiveReports($val) { $this->_propDict["transitiveReports"] = $val; return $this; }
Sets the transitiveReports The transitive reports for a user. Read-only. @param DirectoryObject[] $val The transitiveReports @return User
setTransitiveReports
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 getCalendar() { if (array_key_exists("calendar", $this->_propDict)) { if (is_a($this->_propDict["calendar"], "\Beta\Microsoft\Graph\Model\Calendar") || is_null($this->_propDict["calendar"])) { return $this->_propDict["calendar"]; } else { $this->_propDict["calendar"] = new Calendar($this->_propDict["calendar"]); return $this->_propDict["calendar"]; } } return null; }
Gets the calendar The user's primary calendar. Read-only. @return Calendar|null The calendar
getCalendar
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 setCalendar($val) { $this->_propDict["calendar"] = $val; return $this; }
Sets the calendar The user's primary calendar. Read-only. @param Calendar $val The calendar @return User
setCalendar
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 getCalendarGroups() { if (array_key_exists("calendarGroups", $this->_propDict)) { return $this->_propDict["calendarGroups"]; } else { return null; } }
Gets the calendarGroups The user's calendar groups. Read-only. Nullable. @return array|null The calendarGroups
getCalendarGroups
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 setCalendarGroups($val) { $this->_propDict["calendarGroups"] = $val; return $this; }
Sets the calendarGroups The user's calendar groups. Read-only. Nullable. @param CalendarGroup[] $val The calendarGroups @return User
setCalendarGroups
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 getCalendars() { if (array_key_exists("calendars", $this->_propDict)) { return $this->_propDict["calendars"]; } else { return null; } }
Gets the calendars The user's calendars. Read-only. Nullable. @return array|null The calendars
getCalendars
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 setCalendars($val) { $this->_propDict["calendars"] = $val; return $this; }
Sets the calendars The user's calendars. Read-only. Nullable. @param Calendar[] $val The calendars @return User
setCalendars
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 getCalendarView() { if (array_key_exists("calendarView", $this->_propDict)) { return $this->_propDict["calendarView"]; } else { return null; } }
Gets the calendarView The calendar view for the calendar. Read-only. Nullable. @return array|null The calendarView
getCalendarView
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 setCalendarView($val) { $this->_propDict["calendarView"] = $val; return $this; }
Sets the calendarView The calendar view for the calendar. Read-only. Nullable. @param Event[] $val The calendarView @return User
setCalendarView
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 getContactFolders() { if (array_key_exists("contactFolders", $this->_propDict)) { return $this->_propDict["contactFolders"]; } else { return null; } }
Gets the contactFolders The user's contacts folders. Read-only. Nullable. @return array|null The contactFolders
getContactFolders
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 setContactFolders($val) { $this->_propDict["contactFolders"] = $val; return $this; }
Sets the contactFolders The user's contacts folders. Read-only. Nullable. @param ContactFolder[] $val The contactFolders @return User
setContactFolders
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 getContacts() { if (array_key_exists("contacts", $this->_propDict)) { return $this->_propDict["contacts"]; } else { return null; } }
Gets the contacts The user's contacts. Read-only. Nullable. @return array|null The contacts
getContacts
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 setContacts($val) { $this->_propDict["contacts"] = $val; return $this; }
Sets the contacts The user's contacts. Read-only. Nullable. @param Contact[] $val The contacts @return User
setContacts
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 getEvents() { if (array_key_exists("events", $this->_propDict)) { return $this->_propDict["events"]; } else { return null; } }
Gets the events The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. @return array|null The events
getEvents
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 setEvents($val) { $this->_propDict["events"] = $val; return $this; }
Sets the events The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. @param Event[] $val The events @return User
setEvents
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 getInferenceClassification() { if (array_key_exists("inferenceClassification", $this->_propDict)) { if (is_a($this->_propDict["inferenceClassification"], "\Beta\Microsoft\Graph\Model\InferenceClassification") || is_null($this->_propDict["inferenceClassification"])) { return $this->_propDict["inferenceClassification"]; } else { $this->_propDict["inferenceClassification"] = new InferenceClassification($this->_propDict["inferenceClassification"]); return $this->_propDict["inferenceClassification"]; } } return null; }
Gets the inferenceClassification Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. @return InferenceClassification|null The inferenceClassification
getInferenceClassification
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 setInferenceClassification($val) { $this->_propDict["inferenceClassification"] = $val; return $this; }
Sets the inferenceClassification Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. @param InferenceClassification $val The inferenceClassification @return User
setInferenceClassification
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 getMailFolders() { if (array_key_exists("mailFolders", $this->_propDict)) { return $this->_propDict["mailFolders"]; } else { return null; } }
Gets the mailFolders The user's mail folders. Read-only. Nullable. @return array|null The mailFolders
getMailFolders
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 setMailFolders($val) { $this->_propDict["mailFolders"] = $val; return $this; }
Sets the mailFolders The user's mail folders. Read-only. Nullable. @param MailFolder[] $val The mailFolders @return User
setMailFolders
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 getMessages() { if (array_key_exists("messages", $this->_propDict)) { return $this->_propDict["messages"]; } else { return null; } }
Gets the messages The messages in a mailbox or folder. Read-only. Nullable. @return array|null The messages
getMessages
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 setMessages($val) { $this->_propDict["messages"] = $val; return $this; }
Sets the messages The messages in a mailbox or folder. Read-only. Nullable. @param Message[] $val The messages @return User
setMessages
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 getOutlook() { if (array_key_exists("outlook", $this->_propDict)) { if (is_a($this->_propDict["outlook"], "\Beta\Microsoft\Graph\Model\OutlookUser") || is_null($this->_propDict["outlook"])) { return $this->_propDict["outlook"]; } else { $this->_propDict["outlook"] = new OutlookUser($this->_propDict["outlook"]); return $this->_propDict["outlook"]; } } return null; }
Gets the outlook Selective Outlook services available to the user. Read-only. Nullable. @return OutlookUser|null The outlook
getOutlook
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 setOutlook($val) { $this->_propDict["outlook"] = $val; return $this; }
Sets the outlook Selective Outlook services available to the user. Read-only. Nullable. @param OutlookUser $val The outlook @return User
setOutlook
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 getPeople() { if (array_key_exists("people", $this->_propDict)) { return $this->_propDict["people"]; } else { return null; } }
Gets the people Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user's communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks. @return array|null The people
getPeople
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 setPeople($val) { $this->_propDict["people"] = $val; return $this; }
Sets the people Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user's communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks. @param Person[] $val The people @return User
setPeople
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 getDrive() { if (array_key_exists("drive", $this->_propDict)) { if (is_a($this->_propDict["drive"], "\Beta\Microsoft\Graph\Model\Drive") || is_null($this->_propDict["drive"])) { return $this->_propDict["drive"]; } else { $this->_propDict["drive"] = new Drive($this->_propDict["drive"]); return $this->_propDict["drive"]; } } return null; }
Gets the drive The user's OneDrive. Read-only. @return Drive|null The drive
getDrive
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 setDrive($val) { $this->_propDict["drive"] = $val; return $this; }
Sets the drive The user's OneDrive. Read-only. @param Drive $val The drive @return User
setDrive
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 getDrives() { if (array_key_exists("drives", $this->_propDict)) { return $this->_propDict["drives"]; } else { return null; } }
Gets the drives A collection of drives available for this user. Read-only. @return array|null The drives
getDrives
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 setDrives($val) { $this->_propDict["drives"] = $val; return $this; }
Sets the drives A collection of drives available for this user. Read-only. @param Drive[] $val The drives @return User
setDrives
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 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 user. Supports $expand. Nullable. @return array|null The extensions
getExtensions
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 setExtensions($val) { $this->_propDict["extensions"] = $val; return $this; }
Sets the extensions The collection of open extensions defined for the user. Supports $expand. Nullable. @param Extension[] $val The extensions @return User
setExtensions
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 getAppConsentRequestsForApproval() { if (array_key_exists("appConsentRequestsForApproval", $this->_propDict)) { return $this->_propDict["appConsentRequestsForApproval"]; } else { return null; } }
Gets the appConsentRequestsForApproval @return array|null The appConsentRequestsForApproval
getAppConsentRequestsForApproval
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 setAppConsentRequestsForApproval($val) { $this->_propDict["appConsentRequestsForApproval"] = $val; return $this; }
Sets the appConsentRequestsForApproval @param AppConsentRequest[] $val The appConsentRequestsForApproval @return User
setAppConsentRequestsForApproval
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 getPendingAccessReviewInstances() { if (array_key_exists("pendingAccessReviewInstances", $this->_propDict)) { return $this->_propDict["pendingAccessReviewInstances"]; } else { return null; } }
Gets the pendingAccessReviewInstances Navigation property to get list of access reviews pending approval by reviewer. @return array|null The pendingAccessReviewInstances
getPendingAccessReviewInstances
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 setPendingAccessReviewInstances($val) { $this->_propDict["pendingAccessReviewInstances"] = $val; return $this; }
Sets the pendingAccessReviewInstances Navigation property to get list of access reviews pending approval by reviewer. @param AccessReviewInstance[] $val The pendingAccessReviewInstances @return User
setPendingAccessReviewInstances
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 getAgreementAcceptances() { if (array_key_exists("agreementAcceptances", $this->_propDict)) { return $this->_propDict["agreementAcceptances"]; } else { return null; } }
Gets the agreementAcceptances The user's terms of use acceptance statuses. Read-only. Nullable. @return array|null The agreementAcceptances
getAgreementAcceptances
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 setAgreementAcceptances($val) { $this->_propDict["agreementAcceptances"] = $val; return $this; }
Sets the agreementAcceptances The user's terms of use acceptance statuses. Read-only. Nullable. @param AgreementAcceptance[] $val The agreementAcceptances @return User
setAgreementAcceptances
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 getDeviceEnrollmentConfigurations() { if (array_key_exists("deviceEnrollmentConfigurations", $this->_propDict)) { return $this->_propDict["deviceEnrollmentConfigurations"]; } else { return null; } }
Gets the deviceEnrollmentConfigurations Get enrollment configurations targeted to the user @return array|null The deviceEnrollmentConfigurations
getDeviceEnrollmentConfigurations
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 setDeviceEnrollmentConfigurations($val) { $this->_propDict["deviceEnrollmentConfigurations"] = $val; return $this; }
Sets the deviceEnrollmentConfigurations Get enrollment configurations targeted to the user @param DeviceEnrollmentConfiguration[] $val The deviceEnrollmentConfigurations @return User
setDeviceEnrollmentConfigurations
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 getManagedDevices() { if (array_key_exists("managedDevices", $this->_propDict)) { return $this->_propDict["managedDevices"]; } else { return null; } }
Gets the managedDevices The managed devices associated with the user. @return array|null The managedDevices
getManagedDevices
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 setManagedDevices($val) { $this->_propDict["managedDevices"] = $val; return $this; }
Sets the managedDevices The managed devices associated with the user. @param ManagedDevice[] $val The managedDevices @return User
setManagedDevices
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 getManagedAppRegistrations() { if (array_key_exists("managedAppRegistrations", $this->_propDict)) { return $this->_propDict["managedAppRegistrations"]; } else { return null; } }
Gets the managedAppRegistrations Zero or more managed app registrations that belong to the user. @return array|null The managedAppRegistrations
getManagedAppRegistrations
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 setManagedAppRegistrations($val) { $this->_propDict["managedAppRegistrations"] = $val; return $this; }
Sets the managedAppRegistrations Zero or more managed app registrations that belong to the user. @param ManagedAppRegistration[] $val The managedAppRegistrations @return User
setManagedAppRegistrations
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 getWindowsInformationProtectionDeviceRegistrations() { if (array_key_exists("windowsInformationProtectionDeviceRegistrations", $this->_propDict)) { return $this->_propDict["windowsInformationProtectionDeviceRegistrations"]; } else { return null; } }
Gets the windowsInformationProtectionDeviceRegistrations Zero or more WIP device registrations that belong to the user. @return array|null The windowsInformationProtectionDeviceRegistrations
getWindowsInformationProtectionDeviceRegistrations
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 setWindowsInformationProtectionDeviceRegistrations($val) { $this->_propDict["windowsInformationProtectionDeviceRegistrations"] = $val; return $this; }
Sets the windowsInformationProtectionDeviceRegistrations Zero or more WIP device registrations that belong to the user. @param WindowsInformationProtectionDeviceRegistration[] $val The windowsInformationProtectionDeviceRegistrations @return User
setWindowsInformationProtectionDeviceRegistrations
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 getDeviceManagementTroubleshootingEvents() { if (array_key_exists("deviceManagementTroubleshootingEvents", $this->_propDict)) { return $this->_propDict["deviceManagementTroubleshootingEvents"]; } else { return null; } }
Gets the deviceManagementTroubleshootingEvents The list of troubleshooting events for this user. @return array|null The deviceManagementTroubleshootingEvents
getDeviceManagementTroubleshootingEvents
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 setDeviceManagementTroubleshootingEvents($val) { $this->_propDict["deviceManagementTroubleshootingEvents"] = $val; return $this; }
Sets the deviceManagementTroubleshootingEvents The list of troubleshooting events for this user. @param DeviceManagementTroubleshootingEvent[] $val The deviceManagementTroubleshootingEvents @return User
setDeviceManagementTroubleshootingEvents
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 getMobileAppIntentAndStates() { if (array_key_exists("mobileAppIntentAndStates", $this->_propDict)) { return $this->_propDict["mobileAppIntentAndStates"]; } else { return null; } }
Gets the mobileAppIntentAndStates The list of troubleshooting events for this user. @return array|null The mobileAppIntentAndStates
getMobileAppIntentAndStates
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 setMobileAppIntentAndStates($val) { $this->_propDict["mobileAppIntentAndStates"] = $val; return $this; }
Sets the mobileAppIntentAndStates The list of troubleshooting events for this user. @param MobileAppIntentAndState[] $val The mobileAppIntentAndStates @return User
setMobileAppIntentAndStates
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 getMobileAppTroubleshootingEvents() { if (array_key_exists("mobileAppTroubleshootingEvents", $this->_propDict)) { return $this->_propDict["mobileAppTroubleshootingEvents"]; } else { return null; } }
Gets the mobileAppTroubleshootingEvents The list of mobile app troubleshooting events for this user. @return array|null The mobileAppTroubleshootingEvents
getMobileAppTroubleshootingEvents
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 setMobileAppTroubleshootingEvents($val) { $this->_propDict["mobileAppTroubleshootingEvents"] = $val; return $this; }
Sets the mobileAppTroubleshootingEvents The list of mobile app troubleshooting events for this user. @param MobileAppTroubleshootingEvent[] $val The mobileAppTroubleshootingEvents @return User
setMobileAppTroubleshootingEvents
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 getPlanner() { if (array_key_exists("planner", $this->_propDict)) { if (is_a($this->_propDict["planner"], "\Beta\Microsoft\Graph\Model\PlannerUser") || is_null($this->_propDict["planner"])) { return $this->_propDict["planner"]; } else { $this->_propDict["planner"] = new PlannerUser($this->_propDict["planner"]); return $this->_propDict["planner"]; } } return null; }
Gets the planner Selective Planner services available to the user. Read-only. Nullable. @return PlannerUser|null The planner
getPlanner
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 setPlanner($val) { $this->_propDict["planner"] = $val; return $this; }
Sets the planner Selective Planner services available to the user. Read-only. Nullable. @param PlannerUser $val The planner @return User
setPlanner
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 getPhoto() { if (array_key_exists("photo", $this->_propDict)) { if (is_a($this->_propDict["photo"], "\Beta\Microsoft\Graph\Model\ProfilePhoto") || is_null($this->_propDict["photo"])) { return $this->_propDict["photo"]; } else { $this->_propDict["photo"] = new ProfilePhoto($this->_propDict["photo"]); return $this->_propDict["photo"]; } } return null; }
Gets the photo The user's profile photo. Read-only. @return ProfilePhoto|null The photo
getPhoto
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 setPhoto($val) { $this->_propDict["photo"] = $val; return $this; }
Sets the photo The user's profile photo. Read-only. @param ProfilePhoto $val The photo @return User
setPhoto
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 getProfile() { if (array_key_exists("profile", $this->_propDict)) { if (is_a($this->_propDict["profile"], "\Beta\Microsoft\Graph\Model\Profile") || is_null($this->_propDict["profile"])) { return $this->_propDict["profile"]; } else { $this->_propDict["profile"] = new Profile($this->_propDict["profile"]); return $this->_propDict["profile"]; } } return null; }
Gets the profile Represents properties that are descriptive of a user in a tenant. @return Profile|null The profile
getProfile
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 setProfile($val) { $this->_propDict["profile"] = $val; return $this; }
Sets the profile Represents properties that are descriptive of a user in a tenant. @param Profile $val The profile @return User
setProfile
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 getJoinedTeams() { if (array_key_exists("joinedTeams", $this->_propDict)) { return $this->_propDict["joinedTeams"]; } else { return null; } }
Gets the joinedTeams The Microsoft Teams teams that the user is a member of. Read-only. Nullable. @return array|null The joinedTeams
getJoinedTeams
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 setJoinedTeams($val) { $this->_propDict["joinedTeams"] = $val; return $this; }
Sets the joinedTeams The Microsoft Teams teams that the user is a member of. Read-only. Nullable. @param Team[] $val The joinedTeams @return User
setJoinedTeams
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 getTeamwork() { if (array_key_exists("teamwork", $this->_propDict)) { if (is_a($this->_propDict["teamwork"], "\Beta\Microsoft\Graph\Model\UserTeamwork") || is_null($this->_propDict["teamwork"])) { return $this->_propDict["teamwork"]; } else { $this->_propDict["teamwork"] = new UserTeamwork($this->_propDict["teamwork"]); return $this->_propDict["teamwork"]; } } return null; }
Gets the teamwork A container for Microsoft Teams features available for the user. Read-only. Nullable. @return UserTeamwork|null The teamwork
getTeamwork
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 setTeamwork($val) { $this->_propDict["teamwork"] = $val; return $this; }
Sets the teamwork A container for Microsoft Teams features available for the user. Read-only. Nullable. @param UserTeamwork $val The teamwork @return User
setTeamwork
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 getTodo() { if (array_key_exists("todo", $this->_propDict)) { if (is_a($this->_propDict["todo"], "\Beta\Microsoft\Graph\Model\Todo") || is_null($this->_propDict["todo"])) { return $this->_propDict["todo"]; } else { $this->_propDict["todo"] = new Todo($this->_propDict["todo"]); return $this->_propDict["todo"]; } } return null; }
Gets the todo Represents the To Do services available to a user. @return Todo|null The todo
getTodo
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 setTodo($val) { $this->_propDict["todo"] = $val; return $this; }
Sets the todo Represents the To Do services available to a user. @param Todo $val The todo @return User
setTodo
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 getDestinationPrefix() { if (array_key_exists("destinationPrefix", $this->_propDict)) { return $this->_propDict["destinationPrefix"]; } else { return null; } }
Gets the destinationPrefix Destination prefix (IPv4/v6 address). @return string|null The destinationPrefix
getDestinationPrefix
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
MIT
public function setDestinationPrefix($val) { $this->_propDict["destinationPrefix"] = $val; return $this; }
Sets the destinationPrefix Destination prefix (IPv4/v6 address). @param string $val The value of the destinationPrefix @return VpnRoute
setDestinationPrefix
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
MIT
public function getPrefixSize() { if (array_key_exists("prefixSize", $this->_propDict)) { return $this->_propDict["prefixSize"]; } else { return null; } }
Gets the prefixSize Prefix size. (1-32). Valid values 1 to 32 @return int|null The prefixSize
getPrefixSize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
MIT
public function setPrefixSize($val) { $this->_propDict["prefixSize"] = $val; return $this; }
Sets the prefixSize Prefix size. (1-32). Valid values 1 to 32 @param int $val The value of the prefixSize @return VpnRoute
setPrefixSize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnRoute.php
MIT