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 getICalUId() { if (array_key_exists("iCalUId", $this->_propDict)) { return $this->_propDict["iCalUId"]; } else { return null; } }
Gets the iCalUId A unique identifier for an event across calendars. This ID is different for each occurrence in a recurring series. Read-only. @return string|null The iCalUId
getICalUId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setICalUId($val) { $this->_propDict["iCalUId"] = $val; return $this; }
Sets the iCalUId A unique identifier for an event across calendars. This ID is different for each occurrence in a recurring series. Read-only. @param string $val The iCalUId @return Event
setICalUId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getOnlineMeetingProvider() { if (array_key_exists("onlineMeetingProvider", $this->_propDict)) { if (is_a($this->_propDict["onlineMeetingProvider"], "\Microsoft\Graph\Model\OnlineMeetingProviderType") || is_null($this->_propDict["onlineMeetingProvider"])) { return $this->_propDict["onlineMeetingProvider"]; } else { $this->_propDict["onlineMeetingProvider"] = new OnlineMeetingProviderType($this->_propDict["onlineMeetingProvider"]); return $this->_propDict["onlineMeetingProvider"]; } } return null; }
Gets the onlineMeetingProvider @return OnlineMeetingProviderType|null The onlineMeetingProvider
getOnlineMeetingProvider
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setOnlineMeetingProvider($val) { $this->_propDict["onlineMeetingProvider"] = $val; return $this; }
Sets the onlineMeetingProvider @param OnlineMeetingProviderType $val The onlineMeetingProvider @return Event
setOnlineMeetingProvider
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getOriginalStartTimeZone() { if (array_key_exists("originalStartTimeZone", $this->_propDict)) { return $this->_propDict["originalStartTimeZone"]; } else { return null; } }
Gets the originalStartTimeZone @return string|null The originalStartTimeZone
getOriginalStartTimeZone
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setOriginalStartTimeZone($val) { $this->_propDict["originalStartTimeZone"] = $val; return $this; }
Sets the originalStartTimeZone @param string $val The originalStartTimeZone @return Event
setOriginalStartTimeZone
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getReminderMinutesBeforeStart() { if (array_key_exists("reminderMinutesBeforeStart", $this->_propDict)) { return $this->_propDict["reminderMinutesBeforeStart"]; } else { return null; } }
Gets the reminderMinutesBeforeStart @return int|null The reminderMinutesBeforeStart
getReminderMinutesBeforeStart
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setReminderMinutesBeforeStart($val) { $this->_propDict["reminderMinutesBeforeStart"] = intval($val); return $this; }
Sets the reminderMinutesBeforeStart @param int $val The reminderMinutesBeforeStart @return Event
setReminderMinutesBeforeStart
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getAttachments() { if (array_key_exists("attachments", $this->_propDict)) { return $this->_propDict["attachments"]; } else { return null; } }
Gets the attachments The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. @return array|null The attachments
getAttachments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setAttachments($val) { $this->_propDict["attachments"] = $val; return $this; }
Sets the attachments The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. @param Attachment[] $val The attachments @return Event
setAttachments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getCalendar() { if (array_key_exists("calendar", $this->_propDict)) { if (is_a($this->_propDict["calendar"], "\Microsoft\Graph\Model\Calendar") || is_null($this->_propDict["calendar"])) { return $this->_propDict["calendar"]; } else { $this->_propDict["calendar"] = new Calendar($this->_propDict["calendar"]); return $this->_propDict["calendar"]; } } return null; }
Gets the calendar The calendar that contains the event. Navigation property. Read-only. @return Calendar|null The calendar
getCalendar
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setCalendar($val) { $this->_propDict["calendar"] = $val; return $this; }
Sets the calendar The calendar that contains the event. Navigation property. Read-only. @param Calendar $val The calendar @return Event
setCalendar
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getExtensions() { if (array_key_exists("extensions", $this->_propDict)) { return $this->_propDict["extensions"]; } else { return null; } }
Gets the extensions The collection of open extensions defined for the event. Nullable. @return array|null The extensions
getExtensions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setExtensions($val) { $this->_propDict["extensions"] = $val; return $this; }
Sets the extensions The collection of open extensions defined for the event. Nullable. @param Extension[] $val The extensions @return Event
setExtensions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getInstances() { if (array_key_exists("instances", $this->_propDict)) { return $this->_propDict["instances"]; } else { return null; } }
Gets the instances The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable. @return array|null The instances
getInstances
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setInstances($val) { $this->_propDict["instances"] = $val; return $this; }
Sets the instances The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable. @param Event[] $val The instances @return Event
setInstances
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getMultiValueExtendedProperties() { if (array_key_exists("multiValueExtendedProperties", $this->_propDict)) { return $this->_propDict["multiValueExtendedProperties"]; } else { return null; } }
Gets the multiValueExtendedProperties The collection of multi-value extended properties defined for the event. Read-only. Nullable. @return array|null The multiValueExtendedProperties
getMultiValueExtendedProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setMultiValueExtendedProperties($val) { $this->_propDict["multiValueExtendedProperties"] = $val; return $this; }
Sets the multiValueExtendedProperties The collection of multi-value extended properties defined for the event. Read-only. Nullable. @param MultiValueLegacyExtendedProperty[] $val The multiValueExtendedProperties @return Event
setMultiValueExtendedProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getSingleValueExtendedProperties() { if (array_key_exists("singleValueExtendedProperties", $this->_propDict)) { return $this->_propDict["singleValueExtendedProperties"]; } else { return null; } }
Gets the singleValueExtendedProperties The collection of single-value extended properties defined for the event. Read-only. Nullable. @return array|null The singleValueExtendedProperties
getSingleValueExtendedProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function setSingleValueExtendedProperties($val) { $this->_propDict["singleValueExtendedProperties"] = $val; return $this; }
Sets the singleValueExtendedProperties The collection of single-value extended properties defined for the event. Read-only. Nullable. @param SingleValueLegacyExtendedProperty[] $val The singleValueExtendedProperties @return Event
setSingleValueExtendedProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Event.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Event.php
MIT
public function getOriginalQueryString() { if (array_key_exists("originalQueryString", $this->_propDict)) { return $this->_propDict["originalQueryString"]; } else { return null; } }
Gets the originalQueryString Defines the original user query string. @return string|null The originalQueryString
getOriginalQueryString
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
MIT
public function setOriginalQueryString($val) { $this->_propDict["originalQueryString"] = $val; return $this; }
Sets the originalQueryString Defines the original user query string. @param string $val The value of the originalQueryString @return AlterationResponse
setOriginalQueryString
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
MIT
public function getQueryAlteration() { if (array_key_exists("queryAlteration", $this->_propDict)) { if (is_a($this->_propDict["queryAlteration"], "\Beta\Microsoft\Graph\Model\SearchAlteration") || is_null($this->_propDict["queryAlteration"])) { return $this->_propDict["queryAlteration"]; } else { $this->_propDict["queryAlteration"] = new SearchAlteration($this->_propDict["queryAlteration"]); return $this->_propDict["queryAlteration"]; } } return null; }
Gets the queryAlteration Defines the details of alteration information for the spelling correction. @return SearchAlteration|null The queryAlteration
getQueryAlteration
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
MIT
public function setQueryAlteration($val) { $this->_propDict["queryAlteration"] = $val; return $this; }
Sets the queryAlteration Defines the details of alteration information for the spelling correction. @param SearchAlteration $val The value to assign to the queryAlteration @return AlterationResponse The AlterationResponse
setQueryAlteration
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
MIT
public function getQueryAlterationType() { if (array_key_exists("queryAlterationType", $this->_propDict)) { if (is_a($this->_propDict["queryAlterationType"], "\Beta\Microsoft\Graph\Model\SearchAlterationType") || is_null($this->_propDict["queryAlterationType"])) { return $this->_propDict["queryAlterationType"]; } else { $this->_propDict["queryAlterationType"] = new SearchAlterationType($this->_propDict["queryAlterationType"]); return $this->_propDict["queryAlterationType"]; } } return null; }
Gets the queryAlterationType Defines the type of the spelling correction. Possible values are suggestion, modification. @return SearchAlterationType|null The queryAlterationType
getQueryAlterationType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
MIT
public function setQueryAlterationType($val) { $this->_propDict["queryAlterationType"] = $val; return $this; }
Sets the queryAlterationType Defines the type of the spelling correction. Possible values are suggestion, modification. @param SearchAlterationType $val The value to assign to the queryAlterationType @return AlterationResponse The AlterationResponse
setQueryAlterationType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AlterationResponse.php
MIT
public function save(MetadataEnvelope $envelope, array $args) { foreach ($envelope as $header=>$value) { $args['Metadata'][$header] = $value; } return $args; }
Places the information in the MetadataEnvelope in to the metadata for the PutObject request of the encrypted object. @param MetadataEnvelope $envelope Encryption data to save according to the strategy. @param array $args Arguments for PutObject that can be manipulated to store strategy related information. @return array Updated arguments for PutObject.
save
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php
MIT
public function load(array $args) { $envelope = new MetadataEnvelope(); $constantValues = MetadataEnvelope::getConstantValues(); foreach ($constantValues as $constant) { if (!empty($args['Metadata'][$constant])) { $envelope[$constant] = $args['Metadata'][$constant]; } } return $envelope; }
Generates a MetadataEnvelope according to the metadata headers from the GetObject result. @param array $args Arguments from Command and Result that contains S3 Object information, relevant headers, and command configuration. @return MetadataEnvelope
load
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php
MIT
public function getExcludeStates() { if (array_key_exists("excludeStates", $this->_propDict)) { return $this->_propDict["excludeStates"]; } else { return null; } }
Gets the excludeStates States excluded from the scope of the policy. Possible values: Compliant, DomainJoined. @return string|null The excludeStates
getExcludeStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
MIT
public function setExcludeStates($val) { $this->_propDict["excludeStates"] = $val; return $this; }
Sets the excludeStates States excluded from the scope of the policy. Possible values: Compliant, DomainJoined. @param string $val The value of the excludeStates @return ConditionalAccessDeviceStates
setExcludeStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
MIT
public function getIncludeStates() { if (array_key_exists("includeStates", $this->_propDict)) { return $this->_propDict["includeStates"]; } else { return null; } }
Gets the includeStates States in the scope of the policy. All is the only allowed value. @return string|null The includeStates
getIncludeStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
MIT
public function setIncludeStates($val) { $this->_propDict["includeStates"] = $val; return $this; }
Sets the includeStates States in the scope of the policy. All is the only allowed value. @param string $val The value of the includeStates @return ConditionalAccessDeviceStates
setIncludeStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessDeviceStates.php
MIT
public function getDaysUntilForcedReboot() { if (array_key_exists("daysUntilForcedReboot", $this->_propDict)) { return $this->_propDict["daysUntilForcedReboot"]; } else { return null; } }
Gets the daysUntilForcedReboot The number of days after installation that forced reboot will happen. @return int|null The daysUntilForcedReboot
getDaysUntilForcedReboot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
MIT
public function setDaysUntilForcedReboot($val) { $this->_propDict["daysUntilForcedReboot"] = $val; return $this; }
Sets the daysUntilForcedReboot The number of days after installation that forced reboot will happen. @param int $val The value of the daysUntilForcedReboot @return ExpeditedWindowsQualityUpdateSettings
setDaysUntilForcedReboot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
MIT
public function getQualityUpdateRelease() { if (array_key_exists("qualityUpdateRelease", $this->_propDict)) { return $this->_propDict["qualityUpdateRelease"]; } else { return null; } }
Gets the qualityUpdateRelease The release date to identify a quality update. @return string|null The qualityUpdateRelease
getQualityUpdateRelease
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
MIT
public function setQualityUpdateRelease($val) { $this->_propDict["qualityUpdateRelease"] = $val; return $this; }
Sets the qualityUpdateRelease The release date to identify a quality update. @param string $val The value of the qualityUpdateRelease @return ExpeditedWindowsQualityUpdateSettings
setQualityUpdateRelease
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpeditedWindowsQualityUpdateSettings.php
MIT
public function getActive() { if (array_key_exists("active", $this->_propDict)) { return $this->_propDict["active"]; } else { return null; } }
Gets the active The number of files that were viewed, edited, shared, or synced in the group's SharePoint document library. @return int|null The active
getActive
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function setActive($val) { $this->_propDict["active"] = intval($val); return $this; }
Sets the active The number of files that were viewed, edited, shared, or synced in the group's SharePoint document library. @param int $val The active @return Office365GroupsActivityFileCounts
setActive
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function getReportDate() { if (array_key_exists("reportDate", $this->_propDict)) { if (is_a($this->_propDict["reportDate"], "\DateTime") || is_null($this->_propDict["reportDate"])) { return $this->_propDict["reportDate"]; } else { $this->_propDict["reportDate"] = new \DateTime($this->_propDict["reportDate"]); return $this->_propDict["reportDate"]; } } return null; }
Gets the reportDate The date on which a number of files were active in the group's SharePoint site. @return \DateTime|null The reportDate
getReportDate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function setReportDate($val) { $this->_propDict["reportDate"] = $val; return $this; }
Sets the reportDate The date on which a number of files were active in the group's SharePoint site. @param \DateTime $val The reportDate @return Office365GroupsActivityFileCounts
setReportDate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function getReportPeriod() { if (array_key_exists("reportPeriod", $this->_propDict)) { return $this->_propDict["reportPeriod"]; } else { return null; } }
Gets the reportPeriod The number of days the report covers. @return string|null The reportPeriod
getReportPeriod
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function setReportPeriod($val) { $this->_propDict["reportPeriod"] = $val; return $this; }
Sets the reportPeriod The number of days the report covers. @param string $val The reportPeriod @return Office365GroupsActivityFileCounts
setReportPeriod
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function getReportRefreshDate() { if (array_key_exists("reportRefreshDate", $this->_propDict)) { if (is_a($this->_propDict["reportRefreshDate"], "\DateTime") || is_null($this->_propDict["reportRefreshDate"])) { return $this->_propDict["reportRefreshDate"]; } else { $this->_propDict["reportRefreshDate"] = new \DateTime($this->_propDict["reportRefreshDate"]); return $this->_propDict["reportRefreshDate"]; } } return null; }
Gets the reportRefreshDate The latest date of the content. @return \DateTime|null The reportRefreshDate
getReportRefreshDate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function setReportRefreshDate($val) { $this->_propDict["reportRefreshDate"] = $val; return $this; }
Sets the reportRefreshDate The latest date of the content. @param \DateTime $val The reportRefreshDate @return Office365GroupsActivityFileCounts
setReportRefreshDate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function getTotal() { if (array_key_exists("total", $this->_propDict)) { return $this->_propDict["total"]; } else { return null; } }
Gets the total The total number of files in the group's SharePoint document library. @return int|null The total
getTotal
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function setTotal($val) { $this->_propDict["total"] = intval($val); return $this; }
Sets the total The total number of files in the group's SharePoint document library. @param int $val The total @return Office365GroupsActivityFileCounts
setTotal
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365GroupsActivityFileCounts.php
MIT
public function __construct( callable $decider, callable $nextHandler, callable $delay = null ) { $this->decider = $decider; $this->nextHandler = $nextHandler; $this->delay = $delay ?: __CLASS__ . '::exponentialDelay'; }
@param callable $decider Function that accepts the number of retries, a request, [response], and [exception] and returns true if the request is to be retried. @param callable $nextHandler Next handler to invoke. @param callable $delay Function that accepts the number of retries and [response] and returns the number of milliseconds to delay.
__construct
php
xiebruce/PicUploader
vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
MIT
public static function exponentialDelay($retries) { return (int) pow(2, $retries - 1) * 1000; }
Default exponential backoff delay function. @param int $retries @return int milliseconds.
exponentialDelay
php
xiebruce/PicUploader
vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
MIT
public function getTarget() { if (array_key_exists("target", $this->_propDict)) { if (is_a($this->_propDict["target"], "\Beta\Microsoft\Graph\Model\DeviceAndAppManagementAssignmentTarget") || is_null($this->_propDict["target"])) { return $this->_propDict["target"]; } else { $this->_propDict["target"] = new DeviceAndAppManagementAssignmentTarget($this->_propDict["target"]); return $this->_propDict["target"]; } } return null; }
Gets the target Assignment target that the branding profile is assigned to. @return DeviceAndAppManagementAssignmentTarget|null The target
getTarget
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfileAssignment.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfileAssignment.php
MIT
public function setTarget($val) { $this->_propDict["target"] = $val; return $this; }
Sets the target Assignment target that the branding profile is assigned to. @param DeviceAndAppManagementAssignmentTarget $val The target @return IntuneBrandingProfileAssignment
setTarget
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfileAssignment.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfileAssignment.php
MIT
public function getHttp() { return $this->definition['http']; }
Returns an associative array of the HTTP attribute of the operation: - method: HTTP method of the operation - requestUri: URI of the request (can include URI template placeholders) @return array
getHttp
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/Api/Operation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Api/Operation.php
MIT
public function getInput() { if (!$this->input) { if ($input = $this['input']) { $this->input = $this->shapeFor($input); } else { $this->input = new StructureShape([], $this->shapeMap); } } return $this->input; }
Get the input shape of the operation. @return StructureShape
getInput
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/Api/Operation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Api/Operation.php
MIT
public function getOutput() { if (!$this->output) { if ($output = $this['output']) { $this->output = $this->shapeFor($output); } else { $this->output = new StructureShape([], $this->shapeMap); } } return $this->output; }
Get the output shape of the operation. @return StructureShape
getOutput
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/Api/Operation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Api/Operation.php
MIT
public function getStaticContextParams() { return $this->staticContextParams; }
Gets static modeled static values used for endpoint resolution. @return array
getStaticContextParams
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/Api/Operation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Api/Operation.php
MIT
public function getContextParams() { return $this->contextParams; }
Gets definition of modeled dynamic values used for endpoint resolution @return array
getContextParams
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/Api/Operation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Api/Operation.php
MIT
public function getCustomizedLabel() { if (array_key_exists("customizedLabel", $this->_propDict)) { return $this->_propDict["customizedLabel"]; } else { return null; } }
Gets the customizedLabel Title/label override for customization. @return string|null The customizedLabel
getCustomizedLabel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function setCustomizedLabel($val) { $this->_propDict["customizedLabel"] = $val; return $this; }
Sets the customizedLabel Title/label override for customization. @param string $val The value of the customizedLabel @return PasswordSingleSignOnField
setCustomizedLabel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function getDefaultLabel() { if (array_key_exists("defaultLabel", $this->_propDict)) { return $this->_propDict["defaultLabel"]; } else { return null; } }
Gets the defaultLabel Label that would be used if no customizedLabel is provided. Read only. @return string|null The defaultLabel
getDefaultLabel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function setDefaultLabel($val) { $this->_propDict["defaultLabel"] = $val; return $this; }
Sets the defaultLabel Label that would be used if no customizedLabel is provided. Read only. @param string $val The value of the defaultLabel @return PasswordSingleSignOnField
setDefaultLabel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function getFieldId() { if (array_key_exists("fieldId", $this->_propDict)) { return $this->_propDict["fieldId"]; } else { return null; } }
Gets the fieldId Id used to identity the field type. This is an internal id and possible values are param_1, param_2, param_userName, param_password. @return string|null The fieldId
getFieldId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function setFieldId($val) { $this->_propDict["fieldId"] = $val; return $this; }
Sets the fieldId Id used to identity the field type. This is an internal id and possible values are param_1, param_2, param_userName, param_password. @param string $val The value of the fieldId @return PasswordSingleSignOnField
setFieldId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } }
Gets the type Type of the credential. The values can be text, password. @return string|null The type
getType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function setType($val) { $this->_propDict["type"] = $val; return $this; }
Sets the type Type of the credential. The values can be text, password. @param string $val The value of the type @return PasswordSingleSignOnField
setType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PasswordSingleSignOnField.php
MIT
public function getInviteUri() { if (array_key_exists("inviteUri", $this->_propDict)) { return $this->_propDict["inviteUri"]; } else { return null; } }
Gets the inviteUri URI to receive new incoming call notification. @return string|null The inviteUri
getInviteUri
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/InviteNewBotResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/InviteNewBotResponse.php
MIT
public function setInviteUri($val) { $this->_propDict["inviteUri"] = $val; return $this; }
Sets the inviteUri URI to receive new incoming call notification. @param string $val The value of the inviteUri @return InviteNewBotResponse
setInviteUri
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/InviteNewBotResponse.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/InviteNewBotResponse.php
MIT
public function getClassification() { if (array_key_exists("classification", $this->_propDict)) { if (is_a($this->_propDict["classification"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\HostReputationClassification") || is_null($this->_propDict["classification"])) { return $this->_propDict["classification"]; } else { $this->_propDict["classification"] = new HostReputationClassification($this->_propDict["classification"]); return $this->_propDict["classification"]; } } return null; }
Gets the classification The calculated reputation of the host. The possible values are: unknown, neutral, suspicious, malicious, unknownFutureValue. @return HostReputationClassification|null The classification
getClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
MIT
public function setClassification($val) { $this->_propDict["classification"] = $val; return $this; }
Sets the classification The calculated reputation of the host. The possible values are: unknown, neutral, suspicious, malicious, unknownFutureValue. @param HostReputationClassification $val The classification @return HostReputation
setClassification
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
MIT
public function getRules() { if (array_key_exists("rules", $this->_propDict)) { return $this->_propDict["rules"]; } else { return null; } }
Gets the rules A collection of rules that have been used to calculate the classification and score. @return array|null The rules
getRules
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
MIT
public function setRules($val) { $this->_propDict["rules"] = $val; return $this; }
Sets the rules A collection of rules that have been used to calculate the classification and score. @param HostReputationRule[] $val The rules @return HostReputation
setRules
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
MIT
public function getScore() { if (array_key_exists("score", $this->_propDict)) { return $this->_propDict["score"]; } else { return null; } }
Gets the score The calculated score (0-100) of the requested host. A higher value indicates that this host is more likely to be suspicious or malicious. @return int|null The score
getScore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
MIT
public function setScore($val) { $this->_propDict["score"] = intval($val); return $this; }
Sets the score The calculated score (0-100) of the requested host. A higher value indicates that this host is more likely to be suspicious or malicious. @param int $val The score @return HostReputation
setScore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/HostReputation.php
MIT
public function getEnableAccessTokenIssuance() { if (array_key_exists("enableAccessTokenIssuance", $this->_propDict)) { return $this->_propDict["enableAccessTokenIssuance"]; } else { return null; } }
Gets the enableAccessTokenIssuance Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. @return bool|null The enableAccessTokenIssuance
getEnableAccessTokenIssuance
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
MIT
public function setEnableAccessTokenIssuance($val) { $this->_propDict["enableAccessTokenIssuance"] = $val; return $this; }
Sets the enableAccessTokenIssuance Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. @param bool $val The value of the enableAccessTokenIssuance @return ImplicitGrantSettings
setEnableAccessTokenIssuance
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
MIT
public function getEnableIdTokenIssuance() { if (array_key_exists("enableIdTokenIssuance", $this->_propDict)) { return $this->_propDict["enableIdTokenIssuance"]; } else { return null; } }
Gets the enableIdTokenIssuance Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. @return bool|null The enableIdTokenIssuance
getEnableIdTokenIssuance
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
MIT
public function setEnableIdTokenIssuance($val) { $this->_propDict["enableIdTokenIssuance"] = $val; return $this; }
Sets the enableIdTokenIssuance Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. @param bool $val The value of the enableIdTokenIssuance @return ImplicitGrantSettings
setEnableIdTokenIssuance
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImplicitGrantSettings.php
MIT
public function getMessage() { if (array_key_exists("message", $this->_propDict)) { return $this->_propDict["message"]; } else { return null; } }
Gets the message The error message. @return string|null The message
getMessage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookOperationError.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookOperationError.php
MIT
public function setMessage($val) { $this->_propDict["message"] = $val; return $this; }
Sets the message The error message. @param string $val The value of the message @return WorkbookOperationError
setMessage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookOperationError.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookOperationError.php
MIT
public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } }
Gets the name Name of the PivotTable. @return string|null The name
getName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
MIT
public function setName($val) { $this->_propDict["name"] = $val; return $this; }
Sets the name Name of the PivotTable. @param string $val The name @return WorkbookPivotTable
setName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
MIT
public function getWorksheet() { if (array_key_exists("worksheet", $this->_propDict)) { if (is_a($this->_propDict["worksheet"], "\Microsoft\Graph\Model\WorkbookWorksheet") || is_null($this->_propDict["worksheet"])) { return $this->_propDict["worksheet"]; } else { $this->_propDict["worksheet"] = new WorkbookWorksheet($this->_propDict["worksheet"]); return $this->_propDict["worksheet"]; } } return null; }
Gets the worksheet The worksheet containing the current PivotTable. Read-only. @return WorkbookWorksheet|null The worksheet
getWorksheet
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
MIT
public function setWorksheet($val) { $this->_propDict["worksheet"] = $val; return $this; }
Sets the worksheet The worksheet containing the current PivotTable. Read-only. @param WorkbookWorksheet $val The worksheet @return WorkbookPivotTable
setWorksheet
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookPivotTable.php
MIT
public function getCidrAddress() { if (array_key_exists("cidrAddress", $this->_propDict)) { return $this->_propDict["cidrAddress"]; } else { return null; } }
Gets the cidrAddress IPv6 address in CIDR notation. Not nullable. @return string|null The cidrAddress
getCidrAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/IPv6CidrRange.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IPv6CidrRange.php
MIT
public function setCidrAddress($val) { $this->_propDict["cidrAddress"] = $val; return $this; }
Sets the cidrAddress IPv6 address in CIDR notation. Not nullable. @param string $val The value of the cidrAddress @return IPv6CidrRange
setCidrAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/IPv6CidrRange.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IPv6CidrRange.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName If present, the value of this field is used by the profile card as the default property label in the experience (for example, 'Cost Center'). @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName If present, the value of this field is used by the profile card as the default property label in the experience (for example, 'Cost Center'). @param string $val The value of the displayName @return ProfileCardAnnotation
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
MIT
public function getLocalizations() { if (array_key_exists("localizations", $this->_propDict)) { if (is_a($this->_propDict["localizations"], "\Beta\Microsoft\Graph\Model\DisplayNameLocalization") || is_null($this->_propDict["localizations"])) { return $this->_propDict["localizations"]; } else { $this->_propDict["localizations"] = new DisplayNameLocalization($this->_propDict["localizations"]); return $this->_propDict["localizations"]; } } return null; }
Gets the localizations Each resource in this collection represents the localized value of the attribute name for a given language, used as the default label for that locale. For example, a user with a no-NB client gets 'Kostnads Senter' as the attribute label, rather than 'Cost Center.' @return DisplayNameLocalization|null The localizations
getLocalizations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
MIT
public function setLocalizations($val) { $this->_propDict["localizations"] = $val; return $this; }
Sets the localizations Each resource in this collection represents the localized value of the attribute name for a given language, used as the default label for that locale. For example, a user with a no-NB client gets 'Kostnads Senter' as the attribute label, rather than 'Cost Center.' @param DisplayNameLocalization $val The value to assign to the localizations @return ProfileCardAnnotation The ProfileCardAnnotation
setLocalizations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProfileCardAnnotation.php
MIT
public function getIpRanges() { if (array_key_exists("ipRanges", $this->_propDict)) { return $this->_propDict["ipRanges"]; } else { return null; } }
Gets the ipRanges List of IP address ranges in IPv4 CIDR format (e.g. 1.2.3.4/32) or any allowable IPv6 format from IETF RFC5969. Required. @return array|null The ipRanges
getIpRanges
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
MIT
public function setIpRanges($val) { $this->_propDict["ipRanges"] = $val; return $this; }
Sets the ipRanges List of IP address ranges in IPv4 CIDR format (e.g. 1.2.3.4/32) or any allowable IPv6 format from IETF RFC5969. Required. @param IpRange[] $val The ipRanges @return IpNamedLocation
setIpRanges
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
MIT
public function getIsTrusted() { if (array_key_exists("isTrusted", $this->_propDict)) { return $this->_propDict["isTrusted"]; } else { return null; } }
Gets the isTrusted true if this location is explicitly trusted. Optional. Default value is false. @return bool|null The isTrusted
getIsTrusted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
MIT
public function setIsTrusted($val) { $this->_propDict["isTrusted"] = boolval($val); return $this; }
Sets the isTrusted true if this location is explicitly trusted. Optional. Default value is false. @param bool $val The isTrusted @return IpNamedLocation
setIsTrusted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IpNamedLocation.php
MIT
public function getRecipientShiftId() { if (array_key_exists("recipientShiftId", $this->_propDict)) { return $this->_propDict["recipientShiftId"]; } else { return null; } }
Gets the recipientShiftId ShiftId for the recipient user with whom the request is to swap. @return string|null The recipientShiftId
getRecipientShiftId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/SwapShiftsChangeRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SwapShiftsChangeRequest.php
MIT
public function setRecipientShiftId($val) { $this->_propDict["recipientShiftId"] = $val; return $this; }
Sets the recipientShiftId ShiftId for the recipient user with whom the request is to swap. @param string $val The recipientShiftId @return SwapShiftsChangeRequest
setRecipientShiftId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/SwapShiftsChangeRequest.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/SwapShiftsChangeRequest.php
MIT
function getPluginName() { return 'notifications'; }
Returns a plugin name. Using this name other plugins will be able to access other plugins using \Sabre\DAV\Server::getPlugin @return string
getPluginName
php
xiebruce/PicUploader
vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
MIT
function initialize(Server $server) { $this->server = $server; $server->on('method:GET', [$this, 'httpGet'], 90); $server->on('propFind', [$this, 'propFind']); $server->xml->namespaceMap[self::NS_CALENDARSERVER] = 'cs'; $server->resourceTypeMapping['\\Sabre\\CalDAV\\Notifications\\ICollection'] = '{' . self::NS_CALENDARSERVER . '}notification'; array_push($server->protectedProperties, '{' . self::NS_CALENDARSERVER . '}notification-URL', '{' . self::NS_CALENDARSERVER . '}notificationtype' ); }
This initializes the plugin. This function is called by Sabre\DAV\Server, after addPlugin is called. This method should set up the required event subscriptions. @param Server $server @return void
initialize
php
xiebruce/PicUploader
vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
MIT
function httpGet(RequestInterface $request, ResponseInterface $response) { $path = $request->getPath(); try { $node = $this->server->tree->getNodeForPath($path); } catch (DAV\Exception\NotFound $e) { return; } if (!$node instanceof INode) return; $writer = $this->server->xml->getWriter(); $writer->contextUri = $this->server->getBaseUri(); $writer->openMemory(); $writer->startDocument('1.0', 'UTF-8'); $writer->startElement('{http://calendarserver.org/ns/}notification'); $node->getNotificationType()->xmlSerializeFull($writer); $writer->endElement(); $response->setHeader('Content-Type', 'application/xml'); $response->setHeader('ETag', $node->getETag()); $response->setStatus(200); $response->setBody($writer->outputMemory()); // Return false to break the event chain. return false; }
This event is triggered before the usual GET request handler. We use this to intercept GET calls to notification nodes, and return the proper response. @param RequestInterface $request @param ResponseInterface $response @return void
httpGet
php
xiebruce/PicUploader
vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
MIT
function getPluginInfo() { return [ 'name' => $this->getPluginName(), 'description' => 'Adds support for caldav-notifications, which is required to enable caldav-sharing.', 'link' => 'http://sabre.io/dav/caldav-sharing/', ]; }
Returns a bunch of meta-data about the plugin. Providing this information is optional, and is mainly displayed by the Browser plugin. The description key in the returned array may contain html and will not be sanitized. @return array
getPluginInfo
php
xiebruce/PicUploader
vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Notifications/Plugin.php
MIT
public function getCertificateStore() { if (array_key_exists("certificateStore", $this->_propDict)) { if (is_a($this->_propDict["certificateStore"], "\Beta\Microsoft\Graph\Model\CertificateStore") || is_null($this->_propDict["certificateStore"])) { return $this->_propDict["certificateStore"]; } else { $this->_propDict["certificateStore"] = new CertificateStore($this->_propDict["certificateStore"]); return $this->_propDict["certificateStore"]; } } return null; }
Gets the certificateStore Target store certificate. Possible values are: user, machine. @return CertificateStore|null The certificateStore
getCertificateStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php
MIT
public function setCertificateStore($val) { $this->_propDict["certificateStore"] = $val; return $this; }
Sets the certificateStore Target store certificate. Possible values are: user, machine. @param CertificateStore $val The certificateStore @return AndroidWorkProfileScepCertificateProfile
setCertificateStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php
MIT
public function getCustomSubjectAlternativeNames() { if (array_key_exists("customSubjectAlternativeNames", $this->_propDict)) { return $this->_propDict["customSubjectAlternativeNames"]; } else { return null; } }
Gets the customSubjectAlternativeNames Custom Subject Alternative Name Settings. This collection can contain a maximum of 500 elements. @return array|null The customSubjectAlternativeNames
getCustomSubjectAlternativeNames
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php
MIT