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 getEnableResultTemplate()
{
if (array_key_exists("enableResultTemplate", $this->_propDict)) {
return $this->_propDict["enableResultTemplate"];
} else {
return null;
}
} | Gets the enableResultTemplate
Indicates whether search display layouts are enabled. If enabled, the user will get the result template to render the search results content in the resultTemplates property of the response. The result template is based on Adaptive Cards. Optional.
@return bool|null The enableResultTemplate | getEnableResultTemplate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php | MIT |
public function setEnableResultTemplate($val)
{
$this->_propDict["enableResultTemplate"] = $val;
return $this;
} | Sets the enableResultTemplate
Indicates whether search display layouts are enabled. If enabled, the user will get the result template to render the search results content in the resultTemplates property of the response. The result template is based on Adaptive Cards. Optional.
@param bool $val The value of the enableResultTemplate
@return ResultTemplateOption | setEnableResultTemplate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ResultTemplateOption.php | MIT |
public function getMessage()
{
if (array_key_exists("message", $this->_propDict)) {
return $this->_propDict["message"];
} else {
return null;
}
} | Gets the message
The message in the reminder.
@return string|null The message | getMessage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | MIT |
public function setMessage($val)
{
$this->_propDict["message"] = $val;
return $this;
} | Sets the message
The message in the reminder.
@param string $val The value of the message
@return BookingReminder | setMessage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | MIT |
public function getOffset()
{
if (array_key_exists("offset", $this->_propDict)) {
if (is_a($this->_propDict["offset"], "\DateInterval") || is_null($this->_propDict["offset"])) {
return $this->_propDict["offset"];
} else {
$this->_propDict["offset"] = new \DateInterval($this->_propDict["offset"]);
return $this->_propDict["offset"];
}
}
return null;
} | Gets the offset
The amount of time before the start of an appointment that the reminder should be sent. It's denoted in ISO 8601 format.
@return \DateInterval|null The offset | getOffset | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | MIT |
public function setOffset($val)
{
$this->_propDict["offset"] = $val;
return $this;
} | Sets the offset
The amount of time before the start of an appointment that the reminder should be sent. It's denoted in ISO 8601 format.
@param \DateInterval $val The value to assign to the offset
@return BookingReminder The BookingReminder | setOffset | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | MIT |
public function getRecipients()
{
if (array_key_exists("recipients", $this->_propDict)) {
if (is_a($this->_propDict["recipients"], "\Microsoft\Graph\Model\BookingReminderRecipients") || is_null($this->_propDict["recipients"])) {
return $this->_propDict["recipients"];
} else {
$this->_propDict["recipients"] = new BookingReminderRecipients($this->_propDict["recipients"]);
return $this->_propDict["recipients"];
}
}
return null;
} | Gets the recipients
The persons who should receive the reminder. Possible values are: allAttendees, staff, customer, unknownFutureValue.
@return BookingReminderRecipients|null The recipients | getRecipients | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | MIT |
public function setRecipients($val)
{
$this->_propDict["recipients"] = $val;
return $this;
} | Sets the recipients
The persons who should receive the reminder. Possible values are: allAttendees, staff, customer, unknownFutureValue.
@param BookingReminderRecipients $val The value to assign to the recipients
@return BookingReminder The BookingReminder | setRecipients | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BookingReminder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BookingReminder.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 time the evidence was created and added to the alert.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The time the evidence was created and added to the alert.
@param \DateTime $val The value to assign to the createdDateTime
@return AlertEvidence The AlertEvidence | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function getRemediationStatus()
{
if (array_key_exists("remediationStatus", $this->_propDict)) {
if (is_a($this->_propDict["remediationStatus"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EvidenceRemediationStatus") || is_null($this->_propDict["remediationStatus"])) {
return $this->_propDict["remediationStatus"];
} else {
$this->_propDict["remediationStatus"] = new EvidenceRemediationStatus($this->_propDict["remediationStatus"]);
return $this->_propDict["remediationStatus"];
}
}
return null;
} | Gets the remediationStatus
Status of the remediation action taken. The possible values are: none, remediated, prevented, blocked, notFound, unknownFutureValue.
@return EvidenceRemediationStatus|null The remediationStatus | getRemediationStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function setRemediationStatus($val)
{
$this->_propDict["remediationStatus"] = $val;
return $this;
} | Sets the remediationStatus
Status of the remediation action taken. The possible values are: none, remediated, prevented, blocked, notFound, unknownFutureValue.
@param EvidenceRemediationStatus $val The value to assign to the remediationStatus
@return AlertEvidence The AlertEvidence | setRemediationStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function getRemediationStatusDetails()
{
if (array_key_exists("remediationStatusDetails", $this->_propDict)) {
return $this->_propDict["remediationStatusDetails"];
} else {
return null;
}
} | Gets the remediationStatusDetails
Details about the remediation status.
@return string|null The remediationStatusDetails | getRemediationStatusDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function setRemediationStatusDetails($val)
{
$this->_propDict["remediationStatusDetails"] = $val;
return $this;
} | Sets the remediationStatusDetails
Details about the remediation status.
@param string $val The value of the remediationStatusDetails
@return AlertEvidence | setRemediationStatusDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function getRoles()
{
if (array_key_exists("roles", $this->_propDict)) {
if (is_a($this->_propDict["roles"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EvidenceRole") || is_null($this->_propDict["roles"])) {
return $this->_propDict["roles"];
} else {
$this->_propDict["roles"] = new EvidenceRole($this->_propDict["roles"]);
return $this->_propDict["roles"];
}
}
return null;
} | Gets the roles
The role/s that an evidence entity represents in an alert, e.g., an IP address that is associated with an attacker will have the evidence role 'Attacker'.
@return EvidenceRole|null The roles | getRoles | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function setRoles($val)
{
$this->_propDict["roles"] = $val;
return $this;
} | Sets the roles
The role/s that an evidence entity represents in an alert, e.g., an IP address that is associated with an attacker will have the evidence role 'Attacker'.
@param EvidenceRole $val The value to assign to the roles
@return AlertEvidence The AlertEvidence | setRoles | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function getTags()
{
if (array_key_exists("tags", $this->_propDict)) {
return $this->_propDict["tags"];
} else {
return null;
}
} | Gets the tags
Array of custom tags associated with an evidence instance, for example to denote a group of devices, high value assets, etc.
@return string|null The tags | getTags | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function setTags($val)
{
$this->_propDict["tags"] = $val;
return $this;
} | Sets the tags
Array of custom tags associated with an evidence instance, for example to denote a group of devices, high value assets, etc.
@param string $val The value of the tags
@return AlertEvidence | setTags | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function getVerdict()
{
if (array_key_exists("verdict", $this->_propDict)) {
if (is_a($this->_propDict["verdict"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EvidenceVerdict") || is_null($this->_propDict["verdict"])) {
return $this->_propDict["verdict"];
} else {
$this->_propDict["verdict"] = new EvidenceVerdict($this->_propDict["verdict"]);
return $this->_propDict["verdict"];
}
}
return null;
} | Gets the verdict
The decision reached by automated investigation. The possible values are: unknown, suspicious, malicious, noThreatsFound, unknownFutureValue.
@return EvidenceVerdict|null The verdict | getVerdict | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function setVerdict($val)
{
$this->_propDict["verdict"] = $val;
return $this;
} | Sets the verdict
The decision reached by automated investigation. The possible values are: unknown, suspicious, malicious, noThreatsFound, unknownFutureValue.
@param EvidenceVerdict $val The value to assign to the verdict
@return AlertEvidence The AlertEvidence | setVerdict | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/AlertEvidence.php | MIT |
public function getIsEnabledForContentSharing()
{
if (array_key_exists("isEnabledForContentSharing", $this->_propDict)) {
return $this->_propDict["isEnabledForContentSharing"];
} else {
return null;
}
} | Gets the isEnabledForContentSharing
Indicates whether to apply a watermark to any shared content.
@return bool|null The isEnabledForContentSharing | getIsEnabledForContentSharing | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | MIT |
public function setIsEnabledForContentSharing($val)
{
$this->_propDict["isEnabledForContentSharing"] = $val;
return $this;
} | Sets the isEnabledForContentSharing
Indicates whether to apply a watermark to any shared content.
@param bool $val The value of the isEnabledForContentSharing
@return WatermarkProtectionValues | setIsEnabledForContentSharing | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | MIT |
public function getIsEnabledForVideo()
{
if (array_key_exists("isEnabledForVideo", $this->_propDict)) {
return $this->_propDict["isEnabledForVideo"];
} else {
return null;
}
} | Gets the isEnabledForVideo
Indicates whether to apply a watermark to everyone's video feed.
@return bool|null The isEnabledForVideo | getIsEnabledForVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | MIT |
public function setIsEnabledForVideo($val)
{
$this->_propDict["isEnabledForVideo"] = $val;
return $this;
} | Sets the isEnabledForVideo
Indicates whether to apply a watermark to everyone's video feed.
@param bool $val The value of the isEnabledForVideo
@return WatermarkProtectionValues | setIsEnabledForVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WatermarkProtectionValues.php | MIT |
public function getExpirationDateTime()
{
if (array_key_exists("expirationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["expirationDateTime"], "\DateTime") || is_null($this->_propDict["expirationDateTime"])) {
return $this->_propDict["expirationDateTime"];
} else {
$this->_propDict["expirationDateTime"] = new \DateTime($this->_propDict["expirationDateTime"]);
return $this->_propDict["expirationDateTime"];
}
}
return null;
} | Gets the expirationDateTime
The date and time in UTC that the upload session will expire. The complete file must be uploaded before this expiration time is reached.
@return \DateTime|null The expirationDateTime | getExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | MIT |
public function setExpirationDateTime($val)
{
$this->_propDict["expirationDateTime"] = $val;
return $this;
} | Sets the expirationDateTime
The date and time in UTC that the upload session will expire. The complete file must be uploaded before this expiration time is reached.
@param \DateTime $val The value to assign to the expirationDateTime
@return UploadSession The UploadSession | setExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | MIT |
public function getNextExpectedRanges()
{
if (array_key_exists("nextExpectedRanges", $this->_propDict)) {
return $this->_propDict["nextExpectedRanges"];
} else {
return null;
}
} | Gets the nextExpectedRanges
A collection of byte ranges that the server is missing for the file. These ranges are zero indexed and of the format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the location in the file where the next upload should begin.
@return string|null The nextExpectedRanges | getNextExpectedRanges | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | MIT |
public function setNextExpectedRanges($val)
{
$this->_propDict["nextExpectedRanges"] = $val;
return $this;
} | Sets the nextExpectedRanges
A collection of byte ranges that the server is missing for the file. These ranges are zero indexed and of the format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the location in the file where the next upload should begin.
@param string $val The value of the nextExpectedRanges
@return UploadSession | setNextExpectedRanges | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | MIT |
public function getUploadUrl()
{
if (array_key_exists("uploadUrl", $this->_propDict)) {
return $this->_propDict["uploadUrl"];
} else {
return null;
}
} | Gets the uploadUrl
The URL endpoint that accepts PUT requests for byte ranges of the file.
@return string|null The uploadUrl | getUploadUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | MIT |
public function setUploadUrl($val)
{
$this->_propDict["uploadUrl"] = $val;
return $this;
} | Sets the uploadUrl
The URL endpoint that accepts PUT requests for byte ranges of the file.
@param string $val The value of the uploadUrl
@return UploadSession | setUploadUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UploadSession.php | MIT |
public function getValue()
{
if (array_key_exists("value", $this->_propDict)) {
return $this->_propDict["value"];
} else {
return null;
}
} | Gets the value
An unsigned integer value for the associated presentation.
@return int|null The value | getValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyPresentationValueDecimal.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyPresentationValueDecimal.php | MIT |
public function setValue($val)
{
$this->_propDict["value"] = intval($val);
return $this;
} | Sets the value
An unsigned integer value for the associated presentation.
@param int $val The value
@return GroupPolicyPresentationValueDecimal | setValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyPresentationValueDecimal.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GroupPolicyPresentationValueDecimal.php | MIT |
function getShareAccess() {
return isset($this->calendarInfo['share-access']) ? $this->calendarInfo['share-access'] : SPlugin::ACCESS_NOTSHARED;
} | Returns the 'access level' for the instance of this shared resource.
The value should be one of the Sabre\DAV\Sharing\Plugin::ACCESS_
constants.
@return int | getShareAccess | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
function getShareResourceUri() {
return $this->calendarInfo['share-resource-uri'];
} | This function must return a URI that uniquely identifies the shared
resource. This URI should be identical across instances, and is
also used in several other XML bodies to connect invites to
resources.
This may simply be a relative reference to the original shared instance,
but it could also be a urn. As long as it's a valid URI and unique.
@return string | getShareResourceUri | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
function updateInvites(array $sharees) {
$this->caldavBackend->updateInvites($this->calendarInfo['id'], $sharees);
} | Updates the list of sharees.
Every item must be a Sharee object.
@param \Sabre\DAV\Xml\Element\Sharee[] $sharees
@return void | updateInvites | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
function getInvites() {
return $this->caldavBackend->getInvites($this->calendarInfo['id']);
} | Returns the list of people whom this resource is shared with.
Every item in the returned array must be a Sharee object with
at least the following properties set:
* $href
* $shareAccess
* $inviteStatus
and optionally:
* $properties
@return \Sabre\DAV\Xml\Element\Sharee[] | getInvites | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
function setPublishStatus($value) {
$this->caldavBackend->setPublishStatus($this->calendarInfo['id'], $value);
} | Marks this calendar as published.
Publishing a calendar should automatically create a read-only, public,
subscribable calendar.
@param bool $value
@return void | setPublishStatus | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
function getACL() {
$acl = [];
switch ($this->getShareAccess()) {
case SPlugin::ACCESS_NOTSHARED :
case SPlugin::ACCESS_SHAREDOWNER :
$acl[] = [
'privilege' => '{DAV:}share',
'principal' => $this->calendarInfo['principaluri'],
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}share',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-write',
'protected' => true,
];
// No break intentional!
case SPlugin::ACCESS_READWRITE :
$acl[] = [
'privilege' => '{DAV:}write',
'principal' => $this->calendarInfo['principaluri'],
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}write',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-write',
'protected' => true,
];
// No break intentional!
case SPlugin::ACCESS_READ :
$acl[] = [
'privilege' => '{DAV:}write-properties',
'principal' => $this->calendarInfo['principaluri'],
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}write-properties',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-write',
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}read',
'principal' => $this->calendarInfo['principaluri'],
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}read',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-read',
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}read',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-write',
'protected' => true,
];
$acl[] = [
'privilege' => '{' . Plugin::NS_CALDAV . '}read-free-busy',
'principal' => '{DAV:}authenticated',
'protected' => true,
];
break;
}
return $acl;
} | Returns a list of ACE's for this node.
Each ACE has the following properties:
* 'privilege', a string such as {DAV:}read or {DAV:}write. These are
currently the only supported privileges
* 'principal', a url to the principal who owns the node
* 'protected' (optional), indicating that this ACE is not allowed to
be updated.
@return array | getACL | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
function getChildACL() {
$acl = [];
switch ($this->getShareAccess()) {
case SPlugin::ACCESS_NOTSHARED :
// No break intentional
case SPlugin::ACCESS_SHAREDOWNER :
// No break intentional
case SPlugin::ACCESS_READWRITE:
$acl[] = [
'privilege' => '{DAV:}write',
'principal' => $this->calendarInfo['principaluri'],
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}write',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-write',
'protected' => true,
];
// No break intentional
case SPlugin::ACCESS_READ:
$acl[] = [
'privilege' => '{DAV:}read',
'principal' => $this->calendarInfo['principaluri'],
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}read',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-write',
'protected' => true,
];
$acl[] = [
'privilege' => '{DAV:}read',
'principal' => $this->calendarInfo['principaluri'] . '/calendar-proxy-read',
'protected' => true,
];
break;
}
return $acl;
} | This method returns the ACL's for calendar objects in this calendar.
The result of this method automatically gets passed to the
calendar-object nodes in the calendar.
@return array | getChildACL | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php | MIT |
public function getBandwidthLowEventRatio()
{
if (array_key_exists("bandwidthLowEventRatio", $this->_propDict)) {
return $this->_propDict["bandwidthLowEventRatio"];
} else {
return null;
}
} | Gets the bandwidthLowEventRatio
Fraction of the call that the media endpoint detected the available bandwidth or bandwidth policy was low enough to cause poor quality of the audio sent.
@return float|null The bandwidthLowEventRatio | getBandwidthLowEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setBandwidthLowEventRatio($val)
{
$this->_propDict["bandwidthLowEventRatio"] = $val;
return $this;
} | Sets the bandwidthLowEventRatio
Fraction of the call that the media endpoint detected the available bandwidth or bandwidth policy was low enough to cause poor quality of the audio sent.
@param float $val The value of the bandwidthLowEventRatio
@return NetworkInfo | setBandwidthLowEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getBasicServiceSetIdentifier()
{
if (array_key_exists("basicServiceSetIdentifier", $this->_propDict)) {
return $this->_propDict["basicServiceSetIdentifier"];
} else {
return null;
}
} | Gets the basicServiceSetIdentifier
The wireless LAN basic service set identifier of the media endpoint used to connect to the network.
@return string|null The basicServiceSetIdentifier | getBasicServiceSetIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setBasicServiceSetIdentifier($val)
{
$this->_propDict["basicServiceSetIdentifier"] = $val;
return $this;
} | Sets the basicServiceSetIdentifier
The wireless LAN basic service set identifier of the media endpoint used to connect to the network.
@param string $val The value of the basicServiceSetIdentifier
@return NetworkInfo | setBasicServiceSetIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getConnectionType()
{
if (array_key_exists("connectionType", $this->_propDict)) {
if (is_a($this->_propDict["connectionType"], "\Microsoft\Graph\CallRecords\Model\NetworkConnectionType") || is_null($this->_propDict["connectionType"])) {
return $this->_propDict["connectionType"];
} else {
$this->_propDict["connectionType"] = new NetworkConnectionType($this->_propDict["connectionType"]);
return $this->_propDict["connectionType"];
}
}
return null;
} | Gets the connectionType
Type of network used by the media endpoint. Possible values are: unknown, wired, wifi, mobile, tunnel, unknownFutureValue.
@return NetworkConnectionType|null The connectionType | getConnectionType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setConnectionType($val)
{
$this->_propDict["connectionType"] = $val;
return $this;
} | Sets the connectionType
Type of network used by the media endpoint. Possible values are: unknown, wired, wifi, mobile, tunnel, unknownFutureValue.
@param NetworkConnectionType $val The value to assign to the connectionType
@return NetworkInfo The NetworkInfo | setConnectionType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getDelayEventRatio()
{
if (array_key_exists("delayEventRatio", $this->_propDict)) {
return $this->_propDict["delayEventRatio"];
} else {
return null;
}
} | Gets the delayEventRatio
Fraction of the call that the media endpoint detected the network delay was significant enough to impact the ability to have real-time two-way communication.
@return float|null The delayEventRatio | getDelayEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setDelayEventRatio($val)
{
$this->_propDict["delayEventRatio"] = $val;
return $this;
} | Sets the delayEventRatio
Fraction of the call that the media endpoint detected the network delay was significant enough to impact the ability to have real-time two-way communication.
@param float $val The value of the delayEventRatio
@return NetworkInfo | setDelayEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getDnsSuffix()
{
if (array_key_exists("dnsSuffix", $this->_propDict)) {
return $this->_propDict["dnsSuffix"];
} else {
return null;
}
} | Gets the dnsSuffix
DNS suffix associated with the network adapter of the media endpoint.
@return string|null The dnsSuffix | getDnsSuffix | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setDnsSuffix($val)
{
$this->_propDict["dnsSuffix"] = $val;
return $this;
} | Sets the dnsSuffix
DNS suffix associated with the network adapter of the media endpoint.
@param string $val The value of the dnsSuffix
@return NetworkInfo | setDnsSuffix | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getIpAddress()
{
if (array_key_exists("ipAddress", $this->_propDict)) {
return $this->_propDict["ipAddress"];
} else {
return null;
}
} | Gets the ipAddress
IP address of the media endpoint.
@return string|null The ipAddress | getIpAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setIpAddress($val)
{
$this->_propDict["ipAddress"] = $val;
return $this;
} | Sets the ipAddress
IP address of the media endpoint.
@param string $val The value of the ipAddress
@return NetworkInfo | setIpAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getLinkSpeed()
{
if (array_key_exists("linkSpeed", $this->_propDict)) {
return $this->_propDict["linkSpeed"];
} else {
return null;
}
} | Gets the linkSpeed
Link speed in bits per second reported by the network adapter used by the media endpoint.
@return int|null The linkSpeed | getLinkSpeed | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setLinkSpeed($val)
{
$this->_propDict["linkSpeed"] = $val;
return $this;
} | Sets the linkSpeed
Link speed in bits per second reported by the network adapter used by the media endpoint.
@param int $val The value of the linkSpeed
@return NetworkInfo | setLinkSpeed | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getMacAddress()
{
if (array_key_exists("macAddress", $this->_propDict)) {
return $this->_propDict["macAddress"];
} else {
return null;
}
} | Gets the macAddress
The media access control (MAC) address of the media endpoint's network device.
@return string|null The macAddress | getMacAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setMacAddress($val)
{
$this->_propDict["macAddress"] = $val;
return $this;
} | Sets the macAddress
The media access control (MAC) address of the media endpoint's network device.
@param string $val The value of the macAddress
@return NetworkInfo | setMacAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getNetworkTransportProtocol()
{
if (array_key_exists("networkTransportProtocol", $this->_propDict)) {
if (is_a($this->_propDict["networkTransportProtocol"], "\Microsoft\Graph\CallRecords\Model\NetworkTransportProtocol") || is_null($this->_propDict["networkTransportProtocol"])) {
return $this->_propDict["networkTransportProtocol"];
} else {
$this->_propDict["networkTransportProtocol"] = new NetworkTransportProtocol($this->_propDict["networkTransportProtocol"]);
return $this->_propDict["networkTransportProtocol"];
}
}
return null;
} | Gets the networkTransportProtocol
Network protocol used for the transmission of stream. Possible values are: unknown, udp, tcp, unknownFutureValue.
@return NetworkTransportProtocol|null The networkTransportProtocol | getNetworkTransportProtocol | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setNetworkTransportProtocol($val)
{
$this->_propDict["networkTransportProtocol"] = $val;
return $this;
} | Sets the networkTransportProtocol
Network protocol used for the transmission of stream. Possible values are: unknown, udp, tcp, unknownFutureValue.
@param NetworkTransportProtocol $val The value to assign to the networkTransportProtocol
@return NetworkInfo The NetworkInfo | setNetworkTransportProtocol | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getPort()
{
if (array_key_exists("port", $this->_propDict)) {
return $this->_propDict["port"];
} else {
return null;
}
} | Gets the port
Network port number used by media endpoint.
@return int|null The port | getPort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setPort($val)
{
$this->_propDict["port"] = $val;
return $this;
} | Sets the port
Network port number used by media endpoint.
@param int $val The value of the port
@return NetworkInfo | setPort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getReceivedQualityEventRatio()
{
if (array_key_exists("receivedQualityEventRatio", $this->_propDict)) {
return $this->_propDict["receivedQualityEventRatio"];
} else {
return null;
}
} | Gets the receivedQualityEventRatio
Fraction of the call that the media endpoint detected the network was causing poor quality of the audio received.
@return float|null The receivedQualityEventRatio | getReceivedQualityEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setReceivedQualityEventRatio($val)
{
$this->_propDict["receivedQualityEventRatio"] = $val;
return $this;
} | Sets the receivedQualityEventRatio
Fraction of the call that the media endpoint detected the network was causing poor quality of the audio received.
@param float $val The value of the receivedQualityEventRatio
@return NetworkInfo | setReceivedQualityEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getReflexiveIPAddress()
{
if (array_key_exists("reflexiveIPAddress", $this->_propDict)) {
return $this->_propDict["reflexiveIPAddress"];
} else {
return null;
}
} | Gets the reflexiveIPAddress
IP address of the media endpoint as seen by the media relay server. This is typically the public internet IP address associated to the endpoint.
@return string|null The reflexiveIPAddress | getReflexiveIPAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setReflexiveIPAddress($val)
{
$this->_propDict["reflexiveIPAddress"] = $val;
return $this;
} | Sets the reflexiveIPAddress
IP address of the media endpoint as seen by the media relay server. This is typically the public internet IP address associated to the endpoint.
@param string $val The value of the reflexiveIPAddress
@return NetworkInfo | setReflexiveIPAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getRelayIPAddress()
{
if (array_key_exists("relayIPAddress", $this->_propDict)) {
return $this->_propDict["relayIPAddress"];
} else {
return null;
}
} | Gets the relayIPAddress
IP address of the media relay server allocated by the media endpoint.
@return string|null The relayIPAddress | getRelayIPAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setRelayIPAddress($val)
{
$this->_propDict["relayIPAddress"] = $val;
return $this;
} | Sets the relayIPAddress
IP address of the media relay server allocated by the media endpoint.
@param string $val The value of the relayIPAddress
@return NetworkInfo | setRelayIPAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getRelayPort()
{
if (array_key_exists("relayPort", $this->_propDict)) {
return $this->_propDict["relayPort"];
} else {
return null;
}
} | Gets the relayPort
Network port number allocated on the media relay server by the media endpoint.
@return int|null The relayPort | getRelayPort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setRelayPort($val)
{
$this->_propDict["relayPort"] = $val;
return $this;
} | Sets the relayPort
Network port number allocated on the media relay server by the media endpoint.
@param int $val The value of the relayPort
@return NetworkInfo | setRelayPort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getSentQualityEventRatio()
{
if (array_key_exists("sentQualityEventRatio", $this->_propDict)) {
return $this->_propDict["sentQualityEventRatio"];
} else {
return null;
}
} | Gets the sentQualityEventRatio
Fraction of the call that the media endpoint detected the network was causing poor quality of the audio sent.
@return float|null The sentQualityEventRatio | getSentQualityEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setSentQualityEventRatio($val)
{
$this->_propDict["sentQualityEventRatio"] = $val;
return $this;
} | Sets the sentQualityEventRatio
Fraction of the call that the media endpoint detected the network was causing poor quality of the audio sent.
@param float $val The value of the sentQualityEventRatio
@return NetworkInfo | setSentQualityEventRatio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getSubnet()
{
if (array_key_exists("subnet", $this->_propDict)) {
return $this->_propDict["subnet"];
} else {
return null;
}
} | Gets the subnet
Subnet used for media stream by the media endpoint.
@return string|null The subnet | getSubnet | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setSubnet($val)
{
$this->_propDict["subnet"] = $val;
return $this;
} | Sets the subnet
Subnet used for media stream by the media endpoint.
@param string $val The value of the subnet
@return NetworkInfo | setSubnet | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getTraceRouteHops()
{
if (array_key_exists("traceRouteHops", $this->_propDict)) {
if (is_a($this->_propDict["traceRouteHops"], "\Microsoft\Graph\CallRecords\Model\TraceRouteHop") || is_null($this->_propDict["traceRouteHops"])) {
return $this->_propDict["traceRouteHops"];
} else {
$this->_propDict["traceRouteHops"] = new TraceRouteHop($this->_propDict["traceRouteHops"]);
return $this->_propDict["traceRouteHops"];
}
}
return null;
} | Gets the traceRouteHops
List of network trace route hops collected for this media stream.*
@return TraceRouteHop|null The traceRouteHops | getTraceRouteHops | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setTraceRouteHops($val)
{
$this->_propDict["traceRouteHops"] = $val;
return $this;
} | Sets the traceRouteHops
List of network trace route hops collected for this media stream.*
@param TraceRouteHop $val The value to assign to the traceRouteHops
@return NetworkInfo The NetworkInfo | setTraceRouteHops | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiBand()
{
if (array_key_exists("wifiBand", $this->_propDict)) {
if (is_a($this->_propDict["wifiBand"], "\Microsoft\Graph\CallRecords\Model\WifiBand") || is_null($this->_propDict["wifiBand"])) {
return $this->_propDict["wifiBand"];
} else {
$this->_propDict["wifiBand"] = new WifiBand($this->_propDict["wifiBand"]);
return $this->_propDict["wifiBand"];
}
}
return null;
} | Gets the wifiBand
WiFi band used by the media endpoint. Possible values are: unknown, frequency24GHz, frequency50GHz, frequency60GHz, unknownFutureValue.
@return WifiBand|null The wifiBand | getWifiBand | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiBand($val)
{
$this->_propDict["wifiBand"] = $val;
return $this;
} | Sets the wifiBand
WiFi band used by the media endpoint. Possible values are: unknown, frequency24GHz, frequency50GHz, frequency60GHz, unknownFutureValue.
@param WifiBand $val The value to assign to the wifiBand
@return NetworkInfo The NetworkInfo | setWifiBand | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiBatteryCharge()
{
if (array_key_exists("wifiBatteryCharge", $this->_propDict)) {
return $this->_propDict["wifiBatteryCharge"];
} else {
return null;
}
} | Gets the wifiBatteryCharge
Estimated remaining battery charge in percentage reported by the media endpoint.
@return int|null The wifiBatteryCharge | getWifiBatteryCharge | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiBatteryCharge($val)
{
$this->_propDict["wifiBatteryCharge"] = $val;
return $this;
} | Sets the wifiBatteryCharge
Estimated remaining battery charge in percentage reported by the media endpoint.
@param int $val The value of the wifiBatteryCharge
@return NetworkInfo | setWifiBatteryCharge | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiChannel()
{
if (array_key_exists("wifiChannel", $this->_propDict)) {
return $this->_propDict["wifiChannel"];
} else {
return null;
}
} | Gets the wifiChannel
WiFi channel used by the media endpoint.
@return int|null The wifiChannel | getWifiChannel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiChannel($val)
{
$this->_propDict["wifiChannel"] = $val;
return $this;
} | Sets the wifiChannel
WiFi channel used by the media endpoint.
@param int $val The value of the wifiChannel
@return NetworkInfo | setWifiChannel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiMicrosoftDriver()
{
if (array_key_exists("wifiMicrosoftDriver", $this->_propDict)) {
return $this->_propDict["wifiMicrosoftDriver"];
} else {
return null;
}
} | Gets the wifiMicrosoftDriver
Name of the Microsoft WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
@return string|null The wifiMicrosoftDriver | getWifiMicrosoftDriver | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiMicrosoftDriver($val)
{
$this->_propDict["wifiMicrosoftDriver"] = $val;
return $this;
} | Sets the wifiMicrosoftDriver
Name of the Microsoft WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
@param string $val The value of the wifiMicrosoftDriver
@return NetworkInfo | setWifiMicrosoftDriver | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiMicrosoftDriverVersion()
{
if (array_key_exists("wifiMicrosoftDriverVersion", $this->_propDict)) {
return $this->_propDict["wifiMicrosoftDriverVersion"];
} else {
return null;
}
} | Gets the wifiMicrosoftDriverVersion
Version of the Microsoft WiFi driver used by the media endpoint.
@return string|null The wifiMicrosoftDriverVersion | getWifiMicrosoftDriverVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiMicrosoftDriverVersion($val)
{
$this->_propDict["wifiMicrosoftDriverVersion"] = $val;
return $this;
} | Sets the wifiMicrosoftDriverVersion
Version of the Microsoft WiFi driver used by the media endpoint.
@param string $val The value of the wifiMicrosoftDriverVersion
@return NetworkInfo | setWifiMicrosoftDriverVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiRadioType()
{
if (array_key_exists("wifiRadioType", $this->_propDict)) {
if (is_a($this->_propDict["wifiRadioType"], "\Microsoft\Graph\CallRecords\Model\WifiRadioType") || is_null($this->_propDict["wifiRadioType"])) {
return $this->_propDict["wifiRadioType"];
} else {
$this->_propDict["wifiRadioType"] = new WifiRadioType($this->_propDict["wifiRadioType"]);
return $this->_propDict["wifiRadioType"];
}
}
return null;
} | Gets the wifiRadioType
Type of WiFi radio used by the media endpoint. Possible values are: unknown, wifi80211a, wifi80211b, wifi80211g, wifi80211n, wifi80211ac, wifi80211ax, unknownFutureValue.
@return WifiRadioType|null The wifiRadioType | getWifiRadioType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiRadioType($val)
{
$this->_propDict["wifiRadioType"] = $val;
return $this;
} | Sets the wifiRadioType
Type of WiFi radio used by the media endpoint. Possible values are: unknown, wifi80211a, wifi80211b, wifi80211g, wifi80211n, wifi80211ac, wifi80211ax, unknownFutureValue.
@param WifiRadioType $val The value to assign to the wifiRadioType
@return NetworkInfo The NetworkInfo | setWifiRadioType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiSignalStrength()
{
if (array_key_exists("wifiSignalStrength", $this->_propDict)) {
return $this->_propDict["wifiSignalStrength"];
} else {
return null;
}
} | Gets the wifiSignalStrength
WiFi signal strength in percentage reported by the media endpoint.
@return int|null The wifiSignalStrength | getWifiSignalStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiSignalStrength($val)
{
$this->_propDict["wifiSignalStrength"] = $val;
return $this;
} | Sets the wifiSignalStrength
WiFi signal strength in percentage reported by the media endpoint.
@param int $val The value of the wifiSignalStrength
@return NetworkInfo | setWifiSignalStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiVendorDriver()
{
if (array_key_exists("wifiVendorDriver", $this->_propDict)) {
return $this->_propDict["wifiVendorDriver"];
} else {
return null;
}
} | Gets the wifiVendorDriver
Name of the WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
@return string|null The wifiVendorDriver | getWifiVendorDriver | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiVendorDriver($val)
{
$this->_propDict["wifiVendorDriver"] = $val;
return $this;
} | Sets the wifiVendorDriver
Name of the WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
@param string $val The value of the wifiVendorDriver
@return NetworkInfo | setWifiVendorDriver | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getWifiVendorDriverVersion()
{
if (array_key_exists("wifiVendorDriverVersion", $this->_propDict)) {
return $this->_propDict["wifiVendorDriverVersion"];
} else {
return null;
}
} | Gets the wifiVendorDriverVersion
Version of the WiFi driver used by the media endpoint.
@return string|null The wifiVendorDriverVersion | getWifiVendorDriverVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function setWifiVendorDriverVersion($val)
{
$this->_propDict["wifiVendorDriverVersion"] = $val;
return $this;
} | Sets the wifiVendorDriverVersion
Version of the WiFi driver used by the media endpoint.
@param string $val The value of the wifiVendorDriverVersion
@return NetworkInfo | setWifiVendorDriverVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/NetworkInfo.php | MIT |
public function getDecisions()
{
if (array_key_exists("decisions", $this->_propDict)) {
return $this->_propDict["decisions"];
} else {
return null;
}
} | Gets the decisions
Represents an Azure AD access review decision on an instance of a review.
@return array|null The decisions | getDecisions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function setDecisions($val)
{
$this->_propDict["decisions"] = $val;
return $this;
} | Sets the decisions
Represents an Azure AD access review decision on an instance of a review.
@param AccessReviewInstanceDecisionItem[] $val The decisions
@return AccessReviewSet | setDecisions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function getDefinitions()
{
if (array_key_exists("definitions", $this->_propDict)) {
return $this->_propDict["definitions"];
} else {
return null;
}
} | Gets the definitions
Represents the template and scheduling for an access review.
@return array|null The definitions | getDefinitions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function setDefinitions($val)
{
$this->_propDict["definitions"] = $val;
return $this;
} | Sets the definitions
Represents the template and scheduling for an access review.
@param AccessReviewScheduleDefinition[] $val The definitions
@return AccessReviewSet | setDefinitions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function getHistoryDefinitions()
{
if (array_key_exists("historyDefinitions", $this->_propDict)) {
return $this->_propDict["historyDefinitions"];
} else {
return null;
}
} | Gets the historyDefinitions
Represents a collection of access review history data and the scopes used to collect that data.
@return array|null The historyDefinitions | getHistoryDefinitions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function setHistoryDefinitions($val)
{
$this->_propDict["historyDefinitions"] = $val;
return $this;
} | Sets the historyDefinitions
Represents a collection of access review history data and the scopes used to collect that data.
@param AccessReviewHistoryDefinition[] $val The historyDefinitions
@return AccessReviewSet | setHistoryDefinitions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function getPolicy()
{
if (array_key_exists("policy", $this->_propDict)) {
if (is_a($this->_propDict["policy"], "\Beta\Microsoft\Graph\Model\AccessReviewPolicy") || is_null($this->_propDict["policy"])) {
return $this->_propDict["policy"];
} else {
$this->_propDict["policy"] = new AccessReviewPolicy($this->_propDict["policy"]);
return $this->_propDict["policy"];
}
}
return null;
} | Gets the policy
Resource that enables administrators to manage directory-level access review policies in their tenant.
@return AccessReviewPolicy|null The policy | getPolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function setPolicy($val)
{
$this->_propDict["policy"] = $val;
return $this;
} | Sets the policy
Resource that enables administrators to manage directory-level access review policies in their tenant.
@param AccessReviewPolicy $val The policy
@return AccessReviewSet | setPolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessReviewSet.php | MIT |
public function getTarget()
{
if (array_key_exists("target", $this->_propDict)) {
return $this->_propDict["target"];
} else {
return null;
}
} | Gets the target
The unique identifier of the user, group, or application; one of the following keywords: AllUsers and AllApplications; or for targets that are applications, you may use reserved values.
@return string|null The target | getTarget | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyTarget.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyTarget.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.