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 getParticipants() { if (array_key_exists("participants", $this->_propDict)) { if (is_a($this->_propDict["participants"], "\Beta\Microsoft\Graph\Model\MeetingParticipants") || is_null($this->_propDict["participants"])) { return $this->_propDict["participants"]; } else { $this->_propDict["participants"] = new MeetingParticipants($this->_propDict["participants"]); return $this->_propDict["participants"]; } } return null; }
Gets the participants The participants associated with the online meeting. This includes the organizer and the attendees. @return MeetingParticipants|null The participants
getParticipants
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setParticipants($val) { $this->_propDict["participants"] = $val; return $this; }
Sets the participants The participants associated with the online meeting. This includes the organizer and the attendees. @param MeetingParticipants $val The participants @return OnlineMeeting
setParticipants
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getRecordAutomatically() { if (array_key_exists("recordAutomatically", $this->_propDict)) { return $this->_propDict["recordAutomatically"]; } else { return null; } }
Gets the recordAutomatically Indicates whether to record the meeting automatically. @return bool|null The recordAutomatically
getRecordAutomatically
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setRecordAutomatically($val) { $this->_propDict["recordAutomatically"] = boolval($val); return $this; }
Sets the recordAutomatically Indicates whether to record the meeting automatically. @param bool $val The recordAutomatically @return OnlineMeeting
setRecordAutomatically
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getRecording() { if (array_key_exists("recording", $this->_propDict)) { if (is_a($this->_propDict["recording"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["recording"])) { return $this->_propDict["recording"]; } else { $this->_propDict["recording"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["recording"]); return $this->_propDict["recording"]; } } return null; }
Gets the recording The content stream of the recording of a Teams live event. Read-only. @return \GuzzleHttp\Psr7\Stream|null The recording
getRecording
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setRecording($val) { $this->_propDict["recording"] = $val; return $this; }
Sets the recording The content stream of the recording of a Teams live event. Read-only. @param \GuzzleHttp\Psr7\Stream $val The recording @return OnlineMeeting
setRecording
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getShareMeetingChatHistoryDefault() { if (array_key_exists("shareMeetingChatHistoryDefault", $this->_propDict)) { if (is_a($this->_propDict["shareMeetingChatHistoryDefault"], "\Beta\Microsoft\Graph\Model\MeetingChatHistoryDefaultMode") || is_null($this->_propDict["shareMeetingChatHistoryDefault"])) { return $this->_propDict["shareMeetingChatHistoryDefault"]; } else { $this->_propDict["shareMeetingChatHistoryDefault"] = new MeetingChatHistoryDefaultMode($this->_propDict["shareMeetingChatHistoryDefault"]); return $this->_propDict["shareMeetingChatHistoryDefault"]; } } return null; }
Gets the shareMeetingChatHistoryDefault Specifies whether meeting chat history is shared with participants. Possible values are: all, none, unknownFutureValue. @return MeetingChatHistoryDefaultMode|null The shareMeetingChatHistoryDefault
getShareMeetingChatHistoryDefault
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setShareMeetingChatHistoryDefault($val) { $this->_propDict["shareMeetingChatHistoryDefault"] = $val; return $this; }
Sets the shareMeetingChatHistoryDefault Specifies whether meeting chat history is shared with participants. Possible values are: all, none, unknownFutureValue. @param MeetingChatHistoryDefaultMode $val The shareMeetingChatHistoryDefault @return OnlineMeeting
setShareMeetingChatHistoryDefault
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getStartDateTime() { if (array_key_exists("startDateTime", $this->_propDict)) { if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) { return $this->_propDict["startDateTime"]; } else { $this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]); return $this->_propDict["startDateTime"]; } } return null; }
Gets the startDateTime The meeting start time in UTC. @return \DateTime|null The startDateTime
getStartDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setStartDateTime($val) { $this->_propDict["startDateTime"] = $val; return $this; }
Sets the startDateTime The meeting start time in UTC. @param \DateTime $val The startDateTime @return OnlineMeeting
setStartDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getSubject() { if (array_key_exists("subject", $this->_propDict)) { return $this->_propDict["subject"]; } else { return null; } }
Gets the subject The subject of the online meeting. @return string|null The subject
getSubject
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setSubject($val) { $this->_propDict["subject"] = $val; return $this; }
Sets the subject The subject of the online meeting. @param string $val The subject @return OnlineMeeting
setSubject
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getVideoTeleconferenceId() { if (array_key_exists("videoTeleconferenceId", $this->_propDict)) { return $this->_propDict["videoTeleconferenceId"]; } else { return null; } }
Gets the videoTeleconferenceId The video teleconferencing ID. Read-only. @return string|null The videoTeleconferenceId
getVideoTeleconferenceId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setVideoTeleconferenceId($val) { $this->_propDict["videoTeleconferenceId"] = $val; return $this; }
Sets the videoTeleconferenceId The video teleconferencing ID. Read-only. @param string $val The videoTeleconferenceId @return OnlineMeeting
setVideoTeleconferenceId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getWatermarkProtection() { if (array_key_exists("watermarkProtection", $this->_propDict)) { if (is_a($this->_propDict["watermarkProtection"], "\Beta\Microsoft\Graph\Model\WatermarkProtectionValues") || is_null($this->_propDict["watermarkProtection"])) { return $this->_propDict["watermarkProtection"]; } else { $this->_propDict["watermarkProtection"] = new WatermarkProtectionValues($this->_propDict["watermarkProtection"]); return $this->_propDict["watermarkProtection"]; } } return null; }
Gets the watermarkProtection Specifies whether a watermark should be applied to a content type by the client application. @return WatermarkProtectionValues|null The watermarkProtection
getWatermarkProtection
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setWatermarkProtection($val) { $this->_propDict["watermarkProtection"] = $val; return $this; }
Sets the watermarkProtection Specifies whether a watermark should be applied to a content type by the client application. @param WatermarkProtectionValues $val The watermarkProtection @return OnlineMeeting
setWatermarkProtection
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAttendanceReports() { if (array_key_exists("attendanceReports", $this->_propDict)) { return $this->_propDict["attendanceReports"]; } else { return null; } }
Gets the attendanceReports The attendance reports of an online meeting. Read-only. @return array|null The attendanceReports
getAttendanceReports
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAttendanceReports($val) { $this->_propDict["attendanceReports"] = $val; return $this; }
Sets the attendanceReports The attendance reports of an online meeting. Read-only. @param MeetingAttendanceReport[] $val The attendanceReports @return OnlineMeeting
setAttendanceReports
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getMeetingAttendanceReport() { if (array_key_exists("meetingAttendanceReport", $this->_propDict)) { if (is_a($this->_propDict["meetingAttendanceReport"], "\Beta\Microsoft\Graph\Model\MeetingAttendanceReport") || is_null($this->_propDict["meetingAttendanceReport"])) { return $this->_propDict["meetingAttendanceReport"]; } else { $this->_propDict["meetingAttendanceReport"] = new MeetingAttendanceReport($this->_propDict["meetingAttendanceReport"]); return $this->_propDict["meetingAttendanceReport"]; } } return null; }
Gets the meetingAttendanceReport @return MeetingAttendanceReport|null The meetingAttendanceReport
getMeetingAttendanceReport
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setMeetingAttendanceReport($val) { $this->_propDict["meetingAttendanceReport"] = $val; return $this; }
Sets the meetingAttendanceReport @param MeetingAttendanceReport $val The meetingAttendanceReport @return OnlineMeeting
setMeetingAttendanceReport
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getRegistration() { if (array_key_exists("registration", $this->_propDict)) { if (is_a($this->_propDict["registration"], "\Beta\Microsoft\Graph\Model\MeetingRegistration") || is_null($this->_propDict["registration"])) { return $this->_propDict["registration"]; } else { $this->_propDict["registration"] = new MeetingRegistration($this->_propDict["registration"]); return $this->_propDict["registration"]; } } return null; }
Gets the registration The registration that has been enabled for an online meeting. One online meeting can only have one registration enabled. @return MeetingRegistration|null The registration
getRegistration
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setRegistration($val) { $this->_propDict["registration"] = $val; return $this; }
Sets the registration The registration that has been enabled for an online meeting. One online meeting can only have one registration enabled. @param MeetingRegistration $val The registration @return OnlineMeeting
setRegistration
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getTranscripts() { if (array_key_exists("transcripts", $this->_propDict)) { return $this->_propDict["transcripts"]; } else { return null; } }
Gets the transcripts The transcripts of an online meeting. Read-only. @return array|null The transcripts
getTranscripts
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setTranscripts($val) { $this->_propDict["transcripts"] = $val; return $this; }
Sets the transcripts The transcripts of an online meeting. Read-only. @param CallTranscript[] $val The transcripts @return OnlineMeeting
setTranscripts
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getProperties() { return $this->_propDict; }
Gets the property dictionary of the External @return array The list of properties
getProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/ExternalConnectors/Model/External.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/ExternalConnectors/Model/External.php
MIT
public function jsonSerialize() { $serializableProperties = $this->getProperties(); foreach ($serializableProperties as $property => $val) { if (is_a($val, "\DateTime")) { $serializableProperties[$property] = $val->format(\DateTime::RFC3339); } else if (is_a($val, "\Microsoft\Graph\Core\Enum")) { $serializableProperties[$property] = $val->value(); } else if (is_a($val, "\Entity")) { $serializableProperties[$property] = $val->jsonSerialize(); } else if (is_a($val, "\GuzzleHttp\Psr7\Stream")) { $serializableProperties[$property] = (string) $val; } } return $serializableProperties; }
Serializes the object by property array Manually serialize DateTime into RFC3339 format @return array The list of properties
jsonSerialize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/ExternalConnectors/Model/External.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/ExternalConnectors/Model/External.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName The operation name. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName The operation name. @param string $val The displayName @return ManagedAppOperation
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; }
Gets the lastModifiedDateTime The last time the app operation was modified. @return \DateTime|null The lastModifiedDateTime
getLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; }
Sets the lastModifiedDateTime The last time the app operation was modified. @param \DateTime $val The lastModifiedDateTime @return ManagedAppOperation
setLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function getState() { if (array_key_exists("state", $this->_propDict)) { return $this->_propDict["state"]; } else { return null; } }
Gets the state The current state of the operation @return string|null The state
getState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function setState($val) { $this->_propDict["state"] = $val; return $this; }
Sets the state The current state of the operation @param string $val The state @return ManagedAppOperation
setState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function getVersion() { if (array_key_exists("version", $this->_propDict)) { return $this->_propDict["version"]; } else { return null; } }
Gets the version Version of the entity. @return string|null The version
getVersion
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function setVersion($val) { $this->_propDict["version"] = $val; return $this; }
Sets the version Version of the entity. @param string $val The version @return ManagedAppOperation
setVersion
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedAppOperation.php
MIT
public function getAllowedAudiences() { if (array_key_exists("allowedAudiences", $this->_propDict)) { if (is_a($this->_propDict["allowedAudiences"], "\Beta\Microsoft\Graph\Model\AllowedAudiences") || is_null($this->_propDict["allowedAudiences"])) { return $this->_propDict["allowedAudiences"]; } else { $this->_propDict["allowedAudiences"] = new AllowedAudiences($this->_propDict["allowedAudiences"]); return $this->_propDict["allowedAudiences"]; } } return null; }
Gets the allowedAudiences The audiences that are able to see the values contained within the associated entity. Possible values are: me, family, contacts, groupMembers, organization, federatedOrganizations, everyone, unknownFutureValue. @return AllowedAudiences|null The allowedAudiences
getAllowedAudiences
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setAllowedAudiences($val) { $this->_propDict["allowedAudiences"] = $val; return $this; }
Sets the allowedAudiences The audiences that are able to see the values contained within the associated entity. Possible values are: me, family, contacts, groupMembers, organization, federatedOrganizations, everyone, unknownFutureValue. @param AllowedAudiences $val The allowedAudiences @return ItemFacet
setAllowedAudiences
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["createdBy"])) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new IdentitySet($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; }
Gets the createdBy Provides the identifier of the user and/or application that created the entity. @return IdentitySet|null The createdBy
getCreatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; }
Sets the createdBy Provides the identifier of the user and/or application that created the entity. @param IdentitySet $val The createdBy @return ItemFacet
setCreatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; }
Gets the createdDateTime Provides the dateTimeOffset for when the entity was created. @return \DateTime|null The createdDateTime
getCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; }
Sets the createdDateTime Provides the dateTimeOffset for when the entity was created. @param \DateTime $val The createdDateTime @return ItemFacet
setCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getInference() { if (array_key_exists("inference", $this->_propDict)) { if (is_a($this->_propDict["inference"], "\Beta\Microsoft\Graph\Model\InferenceData") || is_null($this->_propDict["inference"])) { return $this->_propDict["inference"]; } else { $this->_propDict["inference"] = new InferenceData($this->_propDict["inference"]); return $this->_propDict["inference"]; } } return null; }
Gets the inference Contains inference detail if the entity is inferred by the creating or modifying application. @return InferenceData|null The inference
getInference
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setInference($val) { $this->_propDict["inference"] = $val; return $this; }
Sets the inference Contains inference detail if the entity is inferred by the creating or modifying application. @param InferenceData $val The inference @return ItemFacet
setInference
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getLastModifiedBy() { if (array_key_exists("lastModifiedBy", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["lastModifiedBy"])) { return $this->_propDict["lastModifiedBy"]; } else { $this->_propDict["lastModifiedBy"] = new IdentitySet($this->_propDict["lastModifiedBy"]); return $this->_propDict["lastModifiedBy"]; } } return null; }
Gets the lastModifiedBy Provides the identifier of the user and/or application that last modified the entity. @return IdentitySet|null The lastModifiedBy
getLastModifiedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setLastModifiedBy($val) { $this->_propDict["lastModifiedBy"] = $val; return $this; }
Sets the lastModifiedBy Provides the identifier of the user and/or application that last modified the entity. @param IdentitySet $val The lastModifiedBy @return ItemFacet
setLastModifiedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; }
Gets the lastModifiedDateTime Provides the dateTimeOffset for when the entity was created. @return \DateTime|null The lastModifiedDateTime
getLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; }
Sets the lastModifiedDateTime Provides the dateTimeOffset for when the entity was created. @param \DateTime $val The lastModifiedDateTime @return ItemFacet
setLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getSource() { if (array_key_exists("source", $this->_propDict)) { if (is_a($this->_propDict["source"], "\Beta\Microsoft\Graph\Model\PersonDataSources") || is_null($this->_propDict["source"])) { return $this->_propDict["source"]; } else { $this->_propDict["source"] = new PersonDataSources($this->_propDict["source"]); return $this->_propDict["source"]; } } return null; }
Gets the source Where the values within an entity originated if synced from another service. @return PersonDataSources|null The source
getSource
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function setSource($val) { $this->_propDict["source"] = $val; return $this; }
Sets the source Where the values within an entity originated if synced from another service. @param PersonDataSources $val The source @return ItemFacet
setSource
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ItemFacet.php
MIT
public function getData() { if (array_key_exists("data", $this->_propDict)) { if (is_a($this->_propDict["data"], "\Beta\Microsoft\Graph\Model\CustomExtensionData") || is_null($this->_propDict["data"])) { return $this->_propDict["data"]; } else { $this->_propDict["data"] = new CustomExtensionData($this->_propDict["data"]); return $this->_propDict["data"]; } } return null; }
Gets the data Contains the data that will be provided to the external system. @return CustomExtensionData|null The data
getData
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
MIT
public function setData($val) { $this->_propDict["data"] = $val; return $this; }
Sets the data Contains the data that will be provided to the external system. @param CustomExtensionData $val The value to assign to the data @return CustomExtensionCalloutRequest The CustomExtensionCalloutRequest
setData
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
MIT
public function getSource() { if (array_key_exists("source", $this->_propDict)) { return $this->_propDict["source"]; } else { return null; } }
Gets the source Identifies the source system or event context related to the callout request. @return string|null The source
getSource
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
MIT
public function setSource($val) { $this->_propDict["source"] = $val; return $this; }
Sets the source Identifies the source system or event context related to the callout request. @param string $val The value of the source @return CustomExtensionCalloutRequest
setSource
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
MIT
public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } }
Gets the type Describes the type of event related to the callout request. @return string|null The type
getType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
MIT
public function setType($val) { $this->_propDict["type"] = $val; return $this; }
Sets the type Describes the type of event related to the callout request. @param string $val The value of the type @return CustomExtensionCalloutRequest
setType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php
MIT
public function getAmountRoundingPrecision() { if (array_key_exists("amountRoundingPrecision", $this->_propDict)) { if (is_a($this->_propDict["amountRoundingPrecision"], "\Beta\Microsoft\Graph\Model\Decimal") || is_null($this->_propDict["amountRoundingPrecision"])) { return $this->_propDict["amountRoundingPrecision"]; } else { $this->_propDict["amountRoundingPrecision"] = new Decimal($this->_propDict["amountRoundingPrecision"]); return $this->_propDict["amountRoundingPrecision"]; } } return null; }
Gets the amountRoundingPrecision @return Decimal|null The amountRoundingPrecision
getAmountRoundingPrecision
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Currency.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Currency.php
MIT
public function setAmountRoundingPrecision($val) { $this->_propDict["amountRoundingPrecision"] = $val; return $this; }
Sets the amountRoundingPrecision @param Decimal $val The amountRoundingPrecision @return Currency
setAmountRoundingPrecision
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Currency.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Currency.php
MIT
public function getCompletionReason() { if (array_key_exists("completionReason", $this->_propDict)) { if (is_a($this->_propDict["completionReason"], "\Beta\Microsoft\Graph\Model\PlayPromptCompletionReason") || is_null($this->_propDict["completionReason"])) { return $this->_propDict["completionReason"]; } else { $this->_propDict["completionReason"] = new PlayPromptCompletionReason($this->_propDict["completionReason"]); return $this->_propDict["completionReason"]; } } return null; }
Gets the completionReason Possible values are: unknown, completedSuccessfully, mediaOperationCanceled. @return PlayPromptCompletionReason|null The completionReason
getCompletionReason
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlayPromptOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlayPromptOperation.php
MIT
public function setCompletionReason($val) { $this->_propDict["completionReason"] = $val; return $this; }
Sets the completionReason Possible values are: unknown, completedSuccessfully, mediaOperationCanceled. @param PlayPromptCompletionReason $val The completionReason @return PlayPromptOperation
setCompletionReason
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlayPromptOperation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PlayPromptOperation.php
MIT
public function getIsEnabled() { if (array_key_exists("isEnabled", $this->_propDict)) { return $this->_propDict["isEnabled"]; } else { return null; } }
Gets the isEnabled Indicates whether email threading and near duplicate detection are enabled. @return bool|null The isEnabled
getIsEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function setIsEnabled($val) { $this->_propDict["isEnabled"] = $val; return $this; }
Sets the isEnabled Indicates whether email threading and near duplicate detection are enabled. @param bool $val The value of the isEnabled @return RedundancyDetectionSettings
setIsEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function getMaxWords() { if (array_key_exists("maxWords", $this->_propDict)) { return $this->_propDict["maxWords"]; } else { return null; } }
Gets the maxWords Specifies the maximum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words. @return int|null The maxWords
getMaxWords
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function setMaxWords($val) { $this->_propDict["maxWords"] = $val; return $this; }
Sets the maxWords Specifies the maximum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words. @param int $val The value of the maxWords @return RedundancyDetectionSettings
setMaxWords
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function getMinWords() { if (array_key_exists("minWords", $this->_propDict)) { return $this->_propDict["minWords"]; } else { return null; } }
Gets the minWords Specifies the minimum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words. @return int|null The minWords
getMinWords
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function setMinWords($val) { $this->_propDict["minWords"] = $val; return $this; }
Sets the minWords Specifies the minimum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words. @param int $val The value of the minWords @return RedundancyDetectionSettings
setMinWords
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function getSimilarityThreshold() { if (array_key_exists("similarityThreshold", $this->_propDict)) { return $this->_propDict["similarityThreshold"]; } else { return null; } }
Gets the similarityThreshold Specifies the similarity level for documents to be put in the same near duplicate set. To learn more, see Document and email similarity threshold. @return int|null The similarityThreshold
getSimilarityThreshold
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function setSimilarityThreshold($val) { $this->_propDict["similarityThreshold"] = $val; return $this; }
Sets the similarityThreshold Specifies the similarity level for documents to be put in the same near duplicate set. To learn more, see Document and email similarity threshold. @param int $val The value of the similarityThreshold @return RedundancyDetectionSettings
setSimilarityThreshold
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/RedundancyDetectionSettings.php
MIT
public function getRuleId() { if (array_key_exists("ruleId", $this->_propDict)) { return $this->_propDict["ruleId"]; } else { return null; } }
Gets the ruleId The identifier of the synchronizationRule to be applied. This rule ID is defined in the schema for a given synchronization job or template. @return string|null The ruleId
getRuleId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
MIT
public function setRuleId($val) { $this->_propDict["ruleId"] = $val; return $this; }
Sets the ruleId The identifier of the synchronizationRule to be applied. This rule ID is defined in the schema for a given synchronization job or template. @param string $val The value of the ruleId @return SynchronizationJobApplicationParameters
setRuleId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
MIT
public function getSubjects() { if (array_key_exists("subjects", $this->_propDict)) { if (is_a($this->_propDict["subjects"], "\Beta\Microsoft\Graph\Model\SynchronizationJobSubject") || is_null($this->_propDict["subjects"])) { return $this->_propDict["subjects"]; } else { $this->_propDict["subjects"] = new SynchronizationJobSubject($this->_propDict["subjects"]); return $this->_propDict["subjects"]; } } return null; }
Gets the subjects The identifiers of one or more objects to which a synchronizationJob is to be applied. @return SynchronizationJobSubject|null The subjects
getSubjects
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
MIT
public function setSubjects($val) { $this->_propDict["subjects"] = $val; return $this; }
Sets the subjects The identifiers of one or more objects to which a synchronizationJob is to be applied. @param SynchronizationJobSubject $val The value to assign to the subjects @return SynchronizationJobApplicationParameters The SynchronizationJobApplicationParameters
setSubjects
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJobApplicationParameters.php
MIT
public function getComparisonResult() { if (array_key_exists("comparisonResult", $this->_propDict)) { if (is_a($this->_propDict["comparisonResult"], "\Beta\Microsoft\Graph\Model\DeviceManagementComparisonResult") || is_null($this->_propDict["comparisonResult"])) { return $this->_propDict["comparisonResult"]; } else { $this->_propDict["comparisonResult"] = new DeviceManagementComparisonResult($this->_propDict["comparisonResult"]); return $this->_propDict["comparisonResult"]; } } return null; }
Gets the comparisonResult Setting comparison result. Possible values are: unknown, equal, notEqual, added, removed. @return DeviceManagementComparisonResult|null The comparisonResult
getComparisonResult
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function setComparisonResult($val) { $this->_propDict["comparisonResult"] = $val; return $this; }
Sets the comparisonResult Setting comparison result. Possible values are: unknown, equal, notEqual, added, removed. @param DeviceManagementComparisonResult $val The value to assign to the comparisonResult @return DeviceManagementSettingComparison The DeviceManagementSettingComparison
setComparisonResult
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function getCurrentValueJson() { if (array_key_exists("currentValueJson", $this->_propDict)) { return $this->_propDict["currentValueJson"]; } else { return null; } }
Gets the currentValueJson JSON representation of current intent (or) template setting's value @return string|null The currentValueJson
getCurrentValueJson
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function setCurrentValueJson($val) { $this->_propDict["currentValueJson"] = $val; return $this; }
Sets the currentValueJson JSON representation of current intent (or) template setting's value @param string $val The value of the currentValueJson @return DeviceManagementSettingComparison
setCurrentValueJson
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function getDefinitionId() { if (array_key_exists("definitionId", $this->_propDict)) { return $this->_propDict["definitionId"]; } else { return null; } }
Gets the definitionId The ID of the setting definition for this instance @return string|null The definitionId
getDefinitionId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function setDefinitionId($val) { $this->_propDict["definitionId"] = $val; return $this; }
Sets the definitionId The ID of the setting definition for this instance @param string $val The value of the definitionId @return DeviceManagementSettingComparison
setDefinitionId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName The setting's display name @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName The setting's display name @param string $val The value of the displayName @return DeviceManagementSettingComparison
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function getNewValueJson() { if (array_key_exists("newValueJson", $this->_propDict)) { return $this->_propDict["newValueJson"]; } else { return null; } }
Gets the newValueJson JSON representation of new template setting's value @return string|null The newValueJson
getNewValueJson
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function setNewValueJson($val) { $this->_propDict["newValueJson"] = $val; return $this; }
Sets the newValueJson JSON representation of new template setting's value @param string $val The value of the newValueJson @return DeviceManagementSettingComparison
setNewValueJson
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingComparison.php
MIT
public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["createdBy"])) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new \Beta\Microsoft\Graph\Model\IdentitySet($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; }
Gets the createdBy The user who created the review set. Read-only. @return \Beta\Microsoft\Graph\Model\IdentitySet|null The createdBy
getCreatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
MIT
public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; }
Sets the createdBy The user who created the review set. Read-only. @param \Beta\Microsoft\Graph\Model\IdentitySet $val The createdBy @return ReviewSet
setCreatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
MIT
public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; }
Gets the createdDateTime The datetime when the review set was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. @return \DateTime|null The createdDateTime
getCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
MIT
public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; }
Sets the createdDateTime The datetime when the review set was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. @param \DateTime $val The createdDateTime @return ReviewSet
setCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName The review set name. The name is unique with a maximum limit of 64 characters. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName The review set name. The name is unique with a maximum limit of 64 characters. @param string $val The displayName @return ReviewSet
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Ediscovery/Model/ReviewSet.php
MIT
public function getApplications() { if (array_key_exists("applications", $this->_propDict)) { if (is_a($this->_propDict["applications"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyTargetConfiguration") || is_null($this->_propDict["applications"])) { return $this->_propDict["applications"]; } else { $this->_propDict["applications"] = new CrossTenantAccessPolicyTargetConfiguration($this->_propDict["applications"]); return $this->_propDict["applications"]; } } return null; }
Gets the applications The list of applications targeted with your cross-tenant access policy. @return CrossTenantAccessPolicyTargetConfiguration|null The applications
getApplications
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
MIT
public function setApplications($val) { $this->_propDict["applications"] = $val; return $this; }
Sets the applications The list of applications targeted with your cross-tenant access policy. @param CrossTenantAccessPolicyTargetConfiguration $val The value to assign to the applications @return CrossTenantAccessPolicyB2BSetting The CrossTenantAccessPolicyB2BSetting
setApplications
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
MIT
public function getUsersAndGroups() { if (array_key_exists("usersAndGroups", $this->_propDict)) { if (is_a($this->_propDict["usersAndGroups"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyTargetConfiguration") || is_null($this->_propDict["usersAndGroups"])) { return $this->_propDict["usersAndGroups"]; } else { $this->_propDict["usersAndGroups"] = new CrossTenantAccessPolicyTargetConfiguration($this->_propDict["usersAndGroups"]); return $this->_propDict["usersAndGroups"]; } } return null; }
Gets the usersAndGroups The list of users and groups targeted with your cross-tenant access policy. @return CrossTenantAccessPolicyTargetConfiguration|null The usersAndGroups
getUsersAndGroups
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
MIT
public function setUsersAndGroups($val) { $this->_propDict["usersAndGroups"] = $val; return $this; }
Sets the usersAndGroups The list of users and groups targeted with your cross-tenant access policy. @param CrossTenantAccessPolicyTargetConfiguration $val The value to assign to the usersAndGroups @return CrossTenantAccessPolicyB2BSetting The CrossTenantAccessPolicyB2BSetting
setUsersAndGroups
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyB2BSetting.php
MIT
public static function validate(array $data) { parent::validate($data); if ($data['service'] !== 's3') { throw new InvalidArnException("The 3rd component of an S3 access" . " point ARN represents the region and must be 's3'."); } }
Validation specific to AccessPointArn @param array $data
validate
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php
MIT
public function getAction() { if (array_key_exists("action", $this->_propDict)) { if (is_a($this->_propDict["action"], "\Microsoft\Graph\Model\OnenotePatchActionType") || is_null($this->_propDict["action"])) { return $this->_propDict["action"]; } else { $this->_propDict["action"] = new OnenotePatchActionType($this->_propDict["action"]); return $this->_propDict["action"]; } } return null; }
Gets the action The action to perform on the target element. The possible values are: replace, append, delete, insert, or prepend. @return OnenotePatchActionType|null The action
getAction
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function setAction($val) { $this->_propDict["action"] = $val; return $this; }
Sets the action The action to perform on the target element. The possible values are: replace, append, delete, insert, or prepend. @param OnenotePatchActionType $val The value to assign to the action @return OnenotePatchContentCommand The OnenotePatchContentCommand
setAction
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function getContent() { if (array_key_exists("content", $this->_propDict)) { return $this->_propDict["content"]; } else { return null; } }
Gets the content A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part. @return string|null The content
getContent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function setContent($val) { $this->_propDict["content"] = $val; return $this; }
Sets the content A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part. @param string $val The value of the content @return OnenotePatchContentCommand
setContent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function getPosition() { if (array_key_exists("position", $this->_propDict)) { if (is_a($this->_propDict["position"], "\Microsoft\Graph\Model\OnenotePatchInsertPosition") || is_null($this->_propDict["position"])) { return $this->_propDict["position"]; } else { $this->_propDict["position"] = new OnenotePatchInsertPosition($this->_propDict["position"]); return $this->_propDict["position"]; } } return null; }
Gets the position The location to add the supplied content, relative to the target element. The possible values are: after (default) or before. @return OnenotePatchInsertPosition|null The position
getPosition
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function setPosition($val) { $this->_propDict["position"] = $val; return $this; }
Sets the position The location to add the supplied content, relative to the target element. The possible values are: after (default) or before. @param OnenotePatchInsertPosition $val The value to assign to the position @return OnenotePatchContentCommand The OnenotePatchContentCommand
setPosition
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function getTarget() { if (array_key_exists("target", $this->_propDict)) { return $this->_propDict["target"]; } else { return null; } }
Gets the target The element to update. Must be the #<data-id> or the generated <id> of the element, or the body or title keyword. @return string|null The target
getTarget
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function setTarget($val) { $this->_propDict["target"] = $val; return $this; }
Sets the target The element to update. Must be the #<data-id> or the generated <id> of the element, or the body or title keyword. @param string $val The value of the target @return OnenotePatchContentCommand
setTarget
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OnenotePatchContentCommand.php
MIT
public function getAllowAdHocPermissions() { if (array_key_exists("allowAdHocPermissions", $this->_propDict)) { return $this->_propDict["allowAdHocPermissions"]; } else { return null; } }
Gets the allowAdHocPermissions @return bool|null The allowAdHocPermissions
getAllowAdHocPermissions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EncryptWithUserDefinedRights.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EncryptWithUserDefinedRights.php
MIT