code
stringlengths 17
247k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function setWallpaperImage($val)
{
$this->_propDict["wallpaperImage"] = $val;
return $this;
} | Sets the wallpaperImage
A wallpaper image must be in either PNG or JPEG format. It requires a supervised device with iOS 8 or later version.
@param MimeContent $val The wallpaperImage
@return IosDeviceFeaturesConfiguration | setWallpaperImage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | MIT |
public function getIdentityCertificateForClientAuthentication()
{
if (array_key_exists("identityCertificateForClientAuthentication", $this->_propDict)) {
if (is_a($this->_propDict["identityCertificateForClientAuthentication"], "\Beta\Microsoft\Graph\Model\IosCertificateProfileBase") || is_null($this->_propDict["identityCertificateForClientAuthentication"])) {
return $this->_propDict["identityCertificateForClientAuthentication"];
} else {
$this->_propDict["identityCertificateForClientAuthentication"] = new IosCertificateProfileBase($this->_propDict["identityCertificateForClientAuthentication"]);
return $this->_propDict["identityCertificateForClientAuthentication"];
}
}
return null;
} | Gets the identityCertificateForClientAuthentication
Identity Certificate for the renewal of Kerberos ticket used in single sign-on settings.
@return IosCertificateProfileBase|null The identityCertificateForClientAuthentication | getIdentityCertificateForClientAuthentication | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | MIT |
public function getSingleSignOnExtensionPkinitCertificate()
{
if (array_key_exists("singleSignOnExtensionPkinitCertificate", $this->_propDict)) {
if (is_a($this->_propDict["singleSignOnExtensionPkinitCertificate"], "\Beta\Microsoft\Graph\Model\IosCertificateProfileBase") || is_null($this->_propDict["singleSignOnExtensionPkinitCertificate"])) {
return $this->_propDict["singleSignOnExtensionPkinitCertificate"];
} else {
$this->_propDict["singleSignOnExtensionPkinitCertificate"] = new IosCertificateProfileBase($this->_propDict["singleSignOnExtensionPkinitCertificate"]);
return $this->_propDict["singleSignOnExtensionPkinitCertificate"];
}
}
return null;
} | Gets the singleSignOnExtensionPkinitCertificate
PKINIT Certificate for the authentication with single sign-on extension settings.
@return IosCertificateProfileBase|null The singleSignOnExtensionPkinitCertificate | getSingleSignOnExtensionPkinitCertificate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | MIT |
public function setSingleSignOnExtensionPkinitCertificate($val)
{
$this->_propDict["singleSignOnExtensionPkinitCertificate"] = $val;
return $this;
} | Sets the singleSignOnExtensionPkinitCertificate
PKINIT Certificate for the authentication with single sign-on extension settings.
@param IosCertificateProfileBase $val The singleSignOnExtensionPkinitCertificate
@return IosDeviceFeaturesConfiguration | setSingleSignOnExtensionPkinitCertificate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php | MIT |
public function getBirthDate()
{
if (array_key_exists("birthDate", $this->_propDict)) {
if (is_a($this->_propDict["birthDate"], "\DateTime") || is_null($this->_propDict["birthDate"])) {
return $this->_propDict["birthDate"];
} else {
$this->_propDict["birthDate"] = new \DateTime($this->_propDict["birthDate"]);
return $this->_propDict["birthDate"];
}
}
return null;
} | Gets the birthDate
Birth date of the student.
@return \DateTime|null The birthDate | getBirthDate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function setBirthDate($val)
{
$this->_propDict["birthDate"] = $val;
return $this;
} | Sets the birthDate
Birth date of the student.
@param \DateTime $val The value to assign to the birthDate
@return EducationStudent The EducationStudent | setBirthDate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function getGender()
{
if (array_key_exists("gender", $this->_propDict)) {
if (is_a($this->_propDict["gender"], "\Microsoft\Graph\Model\EducationGender") || is_null($this->_propDict["gender"])) {
return $this->_propDict["gender"];
} else {
$this->_propDict["gender"] = new EducationGender($this->_propDict["gender"]);
return $this->_propDict["gender"];
}
}
return null;
} | Gets the gender
The possible values are: female, male, other, unknownFutureValue.
@return EducationGender|null The gender | getGender | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function setGender($val)
{
$this->_propDict["gender"] = $val;
return $this;
} | Sets the gender
The possible values are: female, male, other, unknownFutureValue.
@param EducationGender $val The value to assign to the gender
@return EducationStudent The EducationStudent | setGender | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function getGraduationYear()
{
if (array_key_exists("graduationYear", $this->_propDict)) {
return $this->_propDict["graduationYear"];
} else {
return null;
}
} | Gets the graduationYear
Year the student is graduating from the school.
@return string|null The graduationYear | getGraduationYear | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function setGraduationYear($val)
{
$this->_propDict["graduationYear"] = $val;
return $this;
} | Sets the graduationYear
Year the student is graduating from the school.
@param string $val The value of the graduationYear
@return EducationStudent | setGraduationYear | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function getStudentNumber()
{
if (array_key_exists("studentNumber", $this->_propDict)) {
return $this->_propDict["studentNumber"];
} else {
return null;
}
} | Gets the studentNumber
Student Number.
@return string|null The studentNumber | getStudentNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function setStudentNumber($val)
{
$this->_propDict["studentNumber"] = $val;
return $this;
} | Sets the studentNumber
Student Number.
@param string $val The value of the studentNumber
@return EducationStudent | setStudentNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationStudent.php | MIT |
public function getState()
{
if (array_key_exists("state", $this->_propDict)) {
if (is_a($this->_propDict["state"], "\Beta\Microsoft\Graph\Model\PrintTaskProcessingState") || is_null($this->_propDict["state"])) {
return $this->_propDict["state"];
} else {
$this->_propDict["state"] = new PrintTaskProcessingState($this->_propDict["state"]);
return $this->_propDict["state"];
}
}
return null;
} | Gets the state
The current processing state of the printTask. Valid values are described in the following table.
@return PrintTaskProcessingState|null The state | getState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintTaskStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PrintTaskStatus.php | MIT |
public function getBookmarkFolder()
{
if (array_key_exists("bookmarkFolder", $this->_propDict)) {
return $this->_propDict["bookmarkFolder"];
} else {
return null;
}
} | Gets the bookmarkFolder
The folder into which the bookmark should be added in Safari
@return string|null The bookmarkFolder | getBookmarkFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosBookmark.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosBookmark.php | MIT |
public function setBookmarkFolder($val)
{
$this->_propDict["bookmarkFolder"] = $val;
return $this;
} | Sets the bookmarkFolder
The folder into which the bookmark should be added in Safari
@param string $val The value of the bookmarkFolder
@return IosBookmark | setBookmarkFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosBookmark.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosBookmark.php | MIT |
public function getConfidenceLevel()
{
if (array_key_exists("confidenceLevel", $this->_propDict)) {
return $this->_propDict["confidenceLevel"];
} else {
return null;
}
} | Gets the confidenceLevel
The confidence level, 0 to 100, of the result.
@return int|null The confidenceLevel | getConfidenceLevel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | MIT |
public function setConfidenceLevel($val)
{
$this->_propDict["confidenceLevel"] = $val;
return $this;
} | Sets the confidenceLevel
The confidence level, 0 to 100, of the result.
@param int $val The value of the confidenceLevel
@return ClassificationResult | setConfidenceLevel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | MIT |
public function getCount()
{
if (array_key_exists("count", $this->_propDict)) {
return $this->_propDict["count"];
} else {
return null;
}
} | Gets the count
The number of instances of the specific information type in the input.
@return int|null The count | getCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | MIT |
public function setCount($val)
{
$this->_propDict["count"] = $val;
return $this;
} | Sets the count
The number of instances of the specific information type in the input.
@param int $val The value of the count
@return ClassificationResult | setCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | MIT |
public function getSensitiveTypeId()
{
if (array_key_exists("sensitiveTypeId", $this->_propDict)) {
return $this->_propDict["sensitiveTypeId"];
} else {
return null;
}
} | Gets the sensitiveTypeId
The GUID of the discovered sensitive information type.
@return string|null The sensitiveTypeId | getSensitiveTypeId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | MIT |
public function setSensitiveTypeId($val)
{
$this->_propDict["sensitiveTypeId"] = $val;
return $this;
} | Sets the sensitiveTypeId
The GUID of the discovered sensitive information type.
@param string $val The value of the sensitiveTypeId
@return ClassificationResult | setSensitiveTypeId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ClassificationResult.php | MIT |
public function setVisibleHistoryStartDateTime($val)
{
$this->_propDict["visibleHistoryStartDateTime"] = $val;
return $this;
} | Sets the visibleHistoryStartDateTime
The timestamp that denotes how far back a conversation's history is shared with the conversation members.
@param \DateTime $val The value to assign to the visibleHistoryStartDateTime
@return MembersAddedEventMessageDetail The MembersAddedEventMessageDetail | setVisibleHistoryStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MembersAddedEventMessageDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MembersAddedEventMessageDetail.php | MIT |
public function getDetail()
{
if (array_key_exists("detail", $this->_propDict)) {
if (is_a($this->_propDict["detail"], "\Beta\Microsoft\Graph\Model\AuthenticationContextDetail") || is_null($this->_propDict["detail"])) {
return $this->_propDict["detail"];
} else {
$this->_propDict["detail"] = new AuthenticationContextDetail($this->_propDict["detail"]);
return $this->_propDict["detail"];
}
}
return null;
} | Gets the detail
Describes how the conditional access authentication context was triggered. A value of previouslySatisfied means the auth context was because the user already satisfied the requirements for that authentication context in some previous authentication event. A value of required means the user had to meet the authentication context requirement as part of the sign-in flow. The possible values are: required, previouslySatisfied, notApplicable, unknownFutureValue.
@return AuthenticationContextDetail|null The detail | getDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthenticationContext.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthenticationContext.php | MIT |
public function getAccessDetails()
{
if (array_key_exists("accessDetails", $this->_propDict)) {
if (is_a($this->_propDict["accessDetails"], "\Microsoft\Graph\Model\DelegatedAdminAccessDetails") || is_null($this->_propDict["accessDetails"])) {
return $this->_propDict["accessDetails"];
} else {
$this->_propDict["accessDetails"] = new DelegatedAdminAccessDetails($this->_propDict["accessDetails"]);
return $this->_propDict["accessDetails"];
}
}
return null;
} | Gets the accessDetails
The access details containing the identifiers of the administrative roles that the partner admin is requesting in the customer tenant.
@return DelegatedAdminAccessDetails|null The accessDetails | getAccessDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function setAccessDetails($val)
{
$this->_propDict["accessDetails"] = $val;
return $this;
} | Sets the accessDetails
The access details containing the identifiers of the administrative roles that the partner admin is requesting in the customer tenant.
@param DelegatedAdminAccessDetails $val The accessDetails
@return DelegatedAdminRelationship | setAccessDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function getActivatedDateTime()
{
if (array_key_exists("activatedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["activatedDateTime"], "\DateTime") || is_null($this->_propDict["activatedDateTime"])) {
return $this->_propDict["activatedDateTime"];
} else {
$this->_propDict["activatedDateTime"] = new \DateTime($this->_propDict["activatedDateTime"]);
return $this->_propDict["activatedDateTime"];
}
}
return null;
} | Gets the activatedDateTime
The date and time in ISO 8601 format and in UTC time when the relationship became active. Read-only.
@return \DateTime|null The activatedDateTime | getActivatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function setActivatedDateTime($val)
{
$this->_propDict["activatedDateTime"] = $val;
return $this;
} | Sets the activatedDateTime
The date and time in ISO 8601 format and in UTC time when the relationship became active. Read-only.
@param \DateTime $val The activatedDateTime
@return DelegatedAdminRelationship | setActivatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function getCustomer()
{
if (array_key_exists("customer", $this->_propDict)) {
if (is_a($this->_propDict["customer"], "\Microsoft\Graph\Model\DelegatedAdminRelationshipCustomerParticipant") || is_null($this->_propDict["customer"])) {
return $this->_propDict["customer"];
} else {
$this->_propDict["customer"] = new DelegatedAdminRelationshipCustomerParticipant($this->_propDict["customer"]);
return $this->_propDict["customer"];
}
}
return null;
} | Gets the customer
The display name and unique identifier of the customer of the relationship. This is configured either by the partner at the time the relationship is created or by the system after the customer approves the relationship. Cannot be changed by the customer.
@return DelegatedAdminRelationshipCustomerParticipant|null The customer | getCustomer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function setCustomer($val)
{
$this->_propDict["customer"] = $val;
return $this;
} | Sets the customer
The display name and unique identifier of the customer of the relationship. This is configured either by the partner at the time the relationship is created or by the system after the customer approves the relationship. Cannot be changed by the customer.
@param DelegatedAdminRelationshipCustomerParticipant $val The customer
@return DelegatedAdminRelationship | setCustomer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\DelegatedAdminRelationshipStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new DelegatedAdminRelationshipStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
The status of the relationship. Read Only. The possible values are: activating, active, approvalPending, approved, created, expired, expiring, terminated, terminating, terminationRequested, unknownFutureValue. Supports $orderBy.
@return DelegatedAdminRelationshipStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function getAccessAssignments()
{
if (array_key_exists("accessAssignments", $this->_propDict)) {
return $this->_propDict["accessAssignments"];
} else {
return null;
}
} | Gets the accessAssignments
The access assignments associated with the delegated admin relationship.
@return array|null The accessAssignments | getAccessAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function setAccessAssignments($val)
{
$this->_propDict["accessAssignments"] = $val;
return $this;
} | Sets the accessAssignments
The access assignments associated with the delegated admin relationship.
@param DelegatedAdminAccessAssignment[] $val The accessAssignments
@return DelegatedAdminRelationship | setAccessAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function getRequests()
{
if (array_key_exists("requests", $this->_propDict)) {
return $this->_propDict["requests"];
} else {
return null;
}
} | Gets the requests
The requests associated with the delegated admin relationship.
@return array|null The requests | getRequests | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function setRequests($val)
{
$this->_propDict["requests"] = $val;
return $this;
} | Sets the requests
The requests associated with the delegated admin relationship.
@param DelegatedAdminRelationshipRequest[] $val The requests
@return DelegatedAdminRelationship | setRequests | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminRelationship.php | MIT |
public function getScope()
{
if (array_key_exists("scope", $this->_propDict)) {
if (is_a($this->_propDict["scope"], "\Beta\Microsoft\Graph\Model\SubjectSet") || is_null($this->_propDict["scope"])) {
return $this->_propDict["scope"];
} else {
$this->_propDict["scope"] = new \Beta\Microsoft\Graph\Model\SubjectSet($this->_propDict["scope"]);
return $this->_propDict["scope"];
}
}
return null;
} | Gets the scope
Defines who the workflow runs for.
@return \Beta\Microsoft\Graph\Model\SubjectSet|null The scope | getScope | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | MIT |
public function setScope($val)
{
$this->_propDict["scope"] = $val;
return $this;
} | Sets the scope
Defines who the workflow runs for.
@param \Beta\Microsoft\Graph\Model\SubjectSet $val The value to assign to the scope
@return TriggerAndScopeBasedConditions The TriggerAndScopeBasedConditions | setScope | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | MIT |
public function getTrigger()
{
if (array_key_exists("trigger", $this->_propDict)) {
if (is_a($this->_propDict["trigger"], "\Beta\Microsoft\Graph\IdentityGovernanceNamespace\Model\WorkflowExecutionTrigger") || is_null($this->_propDict["trigger"])) {
return $this->_propDict["trigger"];
} else {
$this->_propDict["trigger"] = new WorkflowExecutionTrigger($this->_propDict["trigger"]);
return $this->_propDict["trigger"];
}
}
return null;
} | Gets the trigger
What triggers a workflow to run.
@return WorkflowExecutionTrigger|null The trigger | getTrigger | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | MIT |
public function setTrigger($val)
{
$this->_propDict["trigger"] = $val;
return $this;
} | Sets the trigger
What triggers a workflow to run.
@param WorkflowExecutionTrigger $val The value to assign to the trigger
@return TriggerAndScopeBasedConditions The TriggerAndScopeBasedConditions | setTrigger | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/IdentityGovernanceNamespace/Model/TriggerAndScopeBasedConditions.php | MIT |
public function getAzureResourceGroupName()
{
if (array_key_exists("azureResourceGroupName", $this->_propDict)) {
return $this->_propDict["azureResourceGroupName"];
} else {
return null;
}
} | Gets the azureResourceGroupName
The name of the Azure resource group that contains the Log Analytics workspace.
@return string|null The azureResourceGroupName | getAzureResourceGroupName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | MIT |
public function setAzureResourceGroupName($val)
{
$this->_propDict["azureResourceGroupName"] = $val;
return $this;
} | Sets the azureResourceGroupName
The name of the Azure resource group that contains the Log Analytics workspace.
@param string $val The azureResourceGroupName
@return OperationalInsightsConnection | setAzureResourceGroupName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | MIT |
public function getAzureSubscriptionId()
{
if (array_key_exists("azureSubscriptionId", $this->_propDict)) {
return $this->_propDict["azureSubscriptionId"];
} else {
return null;
}
} | Gets the azureSubscriptionId
The Azure subscription ID that contains the Log Analytics workspace.
@return string|null The azureSubscriptionId | getAzureSubscriptionId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | MIT |
public function setAzureSubscriptionId($val)
{
$this->_propDict["azureSubscriptionId"] = $val;
return $this;
} | Sets the azureSubscriptionId
The Azure subscription ID that contains the Log Analytics workspace.
@param string $val The azureSubscriptionId
@return OperationalInsightsConnection | setAzureSubscriptionId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | MIT |
public function getWorkspaceName()
{
if (array_key_exists("workspaceName", $this->_propDict)) {
return $this->_propDict["workspaceName"];
} else {
return null;
}
} | Gets the workspaceName
The name of the Log Analytics workspace.
@return string|null The workspaceName | getWorkspaceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | MIT |
public function setWorkspaceName($val)
{
$this->_propDict["workspaceName"] = $val;
return $this;
} | Sets the workspaceName
The name of the Log Analytics workspace.
@param string $val The workspaceName
@return OperationalInsightsConnection | setWorkspaceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/OperationalInsightsConnection.php | MIT |
public function getMatchTolerancesToInclude()
{
if (array_key_exists("matchTolerancesToInclude", $this->_propDict)) {
if (is_a($this->_propDict["matchTolerancesToInclude"], "\Beta\Microsoft\Graph\Model\MlClassificationMatchTolerance") || is_null($this->_propDict["matchTolerancesToInclude"])) {
return $this->_propDict["matchTolerancesToInclude"];
} else {
$this->_propDict["matchTolerancesToInclude"] = new MlClassificationMatchTolerance($this->_propDict["matchTolerancesToInclude"]);
return $this->_propDict["matchTolerancesToInclude"];
}
}
return null;
} | Gets the matchTolerancesToInclude
@return MlClassificationMatchTolerance|null The matchTolerancesToInclude | getMatchTolerancesToInclude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TextClassificationRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TextClassificationRequest.php | MIT |
public function setMatchTolerancesToInclude($val)
{
$this->_propDict["matchTolerancesToInclude"] = $val;
return $this;
} | Sets the matchTolerancesToInclude
@param MlClassificationMatchTolerance $val The matchTolerancesToInclude
@return TextClassificationRequest | setMatchTolerancesToInclude | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TextClassificationRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TextClassificationRequest.php | MIT |
public function getDefaultLength()
{
if (array_key_exists("defaultLength", $this->_propDict)) {
return $this->_propDict["defaultLength"];
} else {
return null;
}
} | Gets the defaultLength
Default length in characters of a Temporary Access Pass object. Must be between 8 and 48 characters.
@return int|null The defaultLength | getDefaultLength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function setDefaultLength($val)
{
$this->_propDict["defaultLength"] = intval($val);
return $this;
} | Sets the defaultLength
Default length in characters of a Temporary Access Pass object. Must be between 8 and 48 characters.
@param int $val The defaultLength
@return TemporaryAccessPassAuthenticationMethodConfiguration | setDefaultLength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function getDefaultLifetimeInMinutes()
{
if (array_key_exists("defaultLifetimeInMinutes", $this->_propDict)) {
return $this->_propDict["defaultLifetimeInMinutes"];
} else {
return null;
}
} | Gets the defaultLifetimeInMinutes
Default lifetime in minutes for a Temporary Access Pass. Value can be any integer between the minimumLifetimeInMinutes and maximumLifetimeInMinutes.
@return int|null The defaultLifetimeInMinutes | getDefaultLifetimeInMinutes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function setDefaultLifetimeInMinutes($val)
{
$this->_propDict["defaultLifetimeInMinutes"] = intval($val);
return $this;
} | Sets the defaultLifetimeInMinutes
Default lifetime in minutes for a Temporary Access Pass. Value can be any integer between the minimumLifetimeInMinutes and maximumLifetimeInMinutes.
@param int $val The defaultLifetimeInMinutes
@return TemporaryAccessPassAuthenticationMethodConfiguration | setDefaultLifetimeInMinutes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function getIsUsableOnce()
{
if (array_key_exists("isUsableOnce", $this->_propDict)) {
return $this->_propDict["isUsableOnce"];
} else {
return null;
}
} | Gets the isUsableOnce
If true, all the passes in the tenant will be restricted to one-time use. If false, passes in the tenant can be created to be either one-time use or reusable.
@return bool|null The isUsableOnce | getIsUsableOnce | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function setIsUsableOnce($val)
{
$this->_propDict["isUsableOnce"] = boolval($val);
return $this;
} | Sets the isUsableOnce
If true, all the passes in the tenant will be restricted to one-time use. If false, passes in the tenant can be created to be either one-time use or reusable.
@param bool $val The isUsableOnce
@return TemporaryAccessPassAuthenticationMethodConfiguration | setIsUsableOnce | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function getMaximumLifetimeInMinutes()
{
if (array_key_exists("maximumLifetimeInMinutes", $this->_propDict)) {
return $this->_propDict["maximumLifetimeInMinutes"];
} else {
return null;
}
} | Gets the maximumLifetimeInMinutes
Maximum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).
@return int|null The maximumLifetimeInMinutes | getMaximumLifetimeInMinutes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function setMaximumLifetimeInMinutes($val)
{
$this->_propDict["maximumLifetimeInMinutes"] = intval($val);
return $this;
} | Sets the maximumLifetimeInMinutes
Maximum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).
@param int $val The maximumLifetimeInMinutes
@return TemporaryAccessPassAuthenticationMethodConfiguration | setMaximumLifetimeInMinutes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function getMinimumLifetimeInMinutes()
{
if (array_key_exists("minimumLifetimeInMinutes", $this->_propDict)) {
return $this->_propDict["minimumLifetimeInMinutes"];
} else {
return null;
}
} | Gets the minimumLifetimeInMinutes
Minimum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).
@return int|null The minimumLifetimeInMinutes | getMinimumLifetimeInMinutes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function setMinimumLifetimeInMinutes($val)
{
$this->_propDict["minimumLifetimeInMinutes"] = intval($val);
return $this;
} | Sets the minimumLifetimeInMinutes
Minimum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).
@param int $val The minimumLifetimeInMinutes
@return TemporaryAccessPassAuthenticationMethodConfiguration | setMinimumLifetimeInMinutes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TemporaryAccessPassAuthenticationMethodConfiguration.php | MIT |
public function getGroupPolicyObjectId()
{
if (array_key_exists("groupPolicyObjectId", $this->_propDict)) {
return $this->_propDict["groupPolicyObjectId"];
} else {
return null;
}
} | Gets the groupPolicyObjectId
The Group Policy Object GUID from GPO Xml content
@return string|null The groupPolicyObjectId | getGroupPolicyObjectId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | MIT |
public function setGroupPolicyObjectId($val)
{
$this->_propDict["groupPolicyObjectId"] = $val;
return $this;
} | Sets the groupPolicyObjectId
The Group Policy Object GUID from GPO Xml content
@param string $val The groupPolicyObjectId
@return GroupPolicyObjectFile | setGroupPolicyObjectId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | MIT |
public function getOuDistinguishedName()
{
if (array_key_exists("ouDistinguishedName", $this->_propDict)) {
return $this->_propDict["ouDistinguishedName"];
} else {
return null;
}
} | Gets the ouDistinguishedName
The distinguished name of the OU.
@return string|null The ouDistinguishedName | getOuDistinguishedName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | MIT |
public function setOuDistinguishedName($val)
{
$this->_propDict["ouDistinguishedName"] = $val;
return $this;
} | Sets the ouDistinguishedName
The distinguished name of the OU.
@param string $val The ouDistinguishedName
@return GroupPolicyObjectFile | setOuDistinguishedName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyObjectFile.php | MIT |
public function getSignInActivity()
{
if (array_key_exists("signInActivity", $this->_propDict)) {
if (is_a($this->_propDict["signInActivity"], "\Beta\Microsoft\Graph\Model\SignInActivity") || is_null($this->_propDict["signInActivity"])) {
return $this->_propDict["signInActivity"];
} else {
$this->_propDict["signInActivity"] = new SignInActivity($this->_propDict["signInActivity"]);
return $this->_propDict["signInActivity"];
}
}
return null;
} | Gets the signInActivity
Get the last signed-in date and request ID of the sign-in for a given user. Read-only.Returned only on $select. Supports $filter (eq, ne, not, ge, le) but not with any other filterable properties. Note: Details for this property require an Azure AD Premium P1/P2 license and the AuditLog.Read.All permission.This property is not returned for a user who has never signed in or last signed in before April 2020.
@return SignInActivity|null The signInActivity | getSignInActivity | 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 getAuthorizationInfo()
{
if (array_key_exists("authorizationInfo", $this->_propDict)) {
if (is_a($this->_propDict["authorizationInfo"], "\Beta\Microsoft\Graph\Model\AuthorizationInfo") || is_null($this->_propDict["authorizationInfo"])) {
return $this->_propDict["authorizationInfo"];
} else {
$this->_propDict["authorizationInfo"] = new AuthorizationInfo($this->_propDict["authorizationInfo"]);
return $this->_propDict["authorizationInfo"];
}
}
return null;
} | Gets the authorizationInfo
Identifiers that can be used to identify and authenticate a user in non-Azure AD environments. This property can be used to store identifiers for smartcard-based certificates that a user uses for access to on-premises Active Directory deployments or for federated access. It can also be used to store the Subject Alternate Name (SAN) that's associated with a Common Access Card (CAC). Nullable.Supports $filter (eq and startsWith).
@return AuthorizationInfo|null The authorizationInfo | getAuthorizationInfo | 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 setAuthorizationInfo($val)
{
$this->_propDict["authorizationInfo"] = $val;
return $this;
} | Sets the authorizationInfo
Identifiers that can be used to identify and authenticate a user in non-Azure AD environments. This property can be used to store identifiers for smartcard-based certificates that a user uses for access to on-premises Active Directory deployments or for federated access. It can also be used to store the Subject Alternate Name (SAN) that's associated with a Common Access Card (CAC). Nullable.Supports $filter (eq and startsWith).
@param AuthorizationInfo $val The authorizationInfo
@return User | setAuthorizationInfo | 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 getCustomSecurityAttributes()
{
if (array_key_exists("customSecurityAttributes", $this->_propDict)) {
if (is_a($this->_propDict["customSecurityAttributes"], "\Beta\Microsoft\Graph\Model\CustomSecurityAttributeValue") || is_null($this->_propDict["customSecurityAttributes"])) {
return $this->_propDict["customSecurityAttributes"];
} else {
$this->_propDict["customSecurityAttributes"] = new CustomSecurityAttributeValue($this->_propDict["customSecurityAttributes"]);
return $this->_propDict["customSecurityAttributes"];
}
}
return null;
} | Gets the customSecurityAttributes
An open complex type that holds the value of a custom security attribute that is assigned to a directory object. Nullable. Returned only on $select. Supports $filter (eq, ne, not, startsWith). Filter value is case sensitive.
@return CustomSecurityAttributeValue|null The customSecurityAttributes | getCustomSecurityAttributes | 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 setCustomSecurityAttributes($val)
{
$this->_propDict["customSecurityAttributes"] = $val;
return $this;
} | Sets the customSecurityAttributes
An open complex type that holds the value of a custom security attribute that is assigned to a directory object. Nullable. Returned only on $select. Supports $filter (eq, ne, not, startsWith). Filter value is case sensitive.
@param CustomSecurityAttributeValue $val The customSecurityAttributes
@return User | setCustomSecurityAttributes | 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 getEmployeeOrgData()
{
if (array_key_exists("employeeOrgData", $this->_propDict)) {
if (is_a($this->_propDict["employeeOrgData"], "\Beta\Microsoft\Graph\Model\EmployeeOrgData") || is_null($this->_propDict["employeeOrgData"])) {
return $this->_propDict["employeeOrgData"];
} else {
$this->_propDict["employeeOrgData"] = new EmployeeOrgData($this->_propDict["employeeOrgData"]);
return $this->_propDict["employeeOrgData"];
}
}
return null;
} | Gets the employeeOrgData
Represents organization data (e.g. division and costCenter) associated with a user. Supports $filter (eq, ne, not , ge, le, in).
@return EmployeeOrgData|null The employeeOrgData | getEmployeeOrgData | 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 getExternalUserStateChangeDateTime()
{
if (array_key_exists("externalUserStateChangeDateTime", $this->_propDict)) {
return $this->_propDict["externalUserStateChangeDateTime"];
} else {
return null;
}
} | Gets the externalUserStateChangeDateTime
Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, not , in).
@return string|null The externalUserStateChangeDateTime | getExternalUserStateChangeDateTime | 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 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 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 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 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 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 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 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 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 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 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 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 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 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 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.