code
stringlengths 17
247k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function setAccuracy($val)
{
$this->_propDict["accuracy"] = $val;
return $this;
} | Sets the accuracy
The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters.
@param float $val The value of the accuracy
@return OutlookGeoCoordinates | setAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function getAltitudeAccuracy()
{
if (array_key_exists("altitudeAccuracy", $this->_propDict)) {
return $this->_propDict["altitudeAccuracy"];
} else {
return null;
}
} | Gets the altitudeAccuracy
The accuracy of the altitude.
@return float|null The altitudeAccuracy | getAltitudeAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setAltitudeAccuracy($val)
{
$this->_propDict["altitudeAccuracy"] = $val;
return $this;
} | Sets the altitudeAccuracy
The accuracy of the altitude.
@param float $val The value of the altitudeAccuracy
@return OutlookGeoCoordinates | setAltitudeAccuracy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/OutlookGeoCoordinates.php | MIT |
public function setAssignedDateTime($val)
{
$this->_propDict["assignedDateTime"] = $val;
return $this;
} | Sets the assignedDateTime
The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
@param \DateTime $val The value to assign to the assignedDateTime
@return AssignedPlan The AssignedPlan | setAssignedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function getCapabilityStatus()
{
if (array_key_exists("capabilityStatus", $this->_propDict)) {
return $this->_propDict["capabilityStatus"];
} else {
return null;
}
} | Gets the capabilityStatus
Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.
@return string|null The capabilityStatus | getCapabilityStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function setCapabilityStatus($val)
{
$this->_propDict["capabilityStatus"] = $val;
return $this;
} | Sets the capabilityStatus
Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.
@param string $val The value of the capabilityStatus
@return AssignedPlan | setCapabilityStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignedPlan.php | MIT |
public function getActionDeliveryStatus()
{
if (array_key_exists("actionDeliveryStatus", $this->_propDict)) {
if (is_a($this->_propDict["actionDeliveryStatus"], "\Beta\Microsoft\Graph\Model\ConfigurationManagerActionDeliveryStatus") || is_null($this->_propDict["actionDeliveryStatus"])) {
return $this->_propDict["actionDeliveryStatus"];
} else {
$this->_propDict["actionDeliveryStatus"] = new ConfigurationManagerActionDeliveryStatus($this->_propDict["actionDeliveryStatus"]);
return $this->_propDict["actionDeliveryStatus"];
}
}
return null;
} | Gets the actionDeliveryStatus
State of the action being delivered to on-prem server. Possible values are: unknown, pendingDelivery, deliveredToConnectorService, failedToDeliverToConnectorService, deliveredToOnPremisesServer.
@return ConfigurationManagerActionDeliveryStatus|null The actionDeliveryStatus | getActionDeliveryStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | MIT |
public function setActionDeliveryStatus($val)
{
$this->_propDict["actionDeliveryStatus"] = $val;
return $this;
} | Sets the actionDeliveryStatus
State of the action being delivered to on-prem server. Possible values are: unknown, pendingDelivery, deliveredToConnectorService, failedToDeliverToConnectorService, deliveredToOnPremisesServer.
@param ConfigurationManagerActionDeliveryStatus $val The value to assign to the actionDeliveryStatus
@return ConfigurationManagerActionResult The ConfigurationManagerActionResult | setActionDeliveryStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConfigurationManagerActionResult.php | MIT |
public function getAudio()
{
if (array_key_exists("audio", $this->_propDict)) {
if (is_a($this->_propDict["audio"], "\Microsoft\Graph\Model\Audio") || is_null($this->_propDict["audio"])) {
return $this->_propDict["audio"];
} else {
$this->_propDict["audio"] = new Audio($this->_propDict["audio"]);
return $this->_propDict["audio"];
}
}
return null;
} | Gets the audio
Audio metadata, if the item is an audio file. Read-only. Read-only. Only on OneDrive Personal.
@return Audio|null The audio | getAudio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setAudio($val)
{
$this->_propDict["audio"] = $val;
return $this;
} | Sets the audio
Audio metadata, if the item is an audio file. Read-only. Read-only. Only on OneDrive Personal.
@param Audio $val The audio
@return DriveItem | setAudio | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getBundle()
{
if (array_key_exists("bundle", $this->_propDict)) {
if (is_a($this->_propDict["bundle"], "\Microsoft\Graph\Model\Bundle") || is_null($this->_propDict["bundle"])) {
return $this->_propDict["bundle"];
} else {
$this->_propDict["bundle"] = new Bundle($this->_propDict["bundle"]);
return $this->_propDict["bundle"];
}
}
return null;
} | Gets the bundle
Bundle metadata, if the item is a bundle. Read-only.
@return Bundle|null The bundle | getBundle | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setBundle($val)
{
$this->_propDict["bundle"] = $val;
return $this;
} | Sets the bundle
Bundle metadata, if the item is a bundle. Read-only.
@param Bundle $val The bundle
@return DriveItem | setBundle | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getCTag()
{
if (array_key_exists("cTag", $this->_propDict)) {
return $this->_propDict["cTag"];
} else {
return null;
}
} | Gets the cTag
An eTag for the content of the item. This eTag is not changed if only the metadata is changed. Note This property is not returned if the item is a folder. Read-only.
@return string|null The cTag | getCTag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setCTag($val)
{
$this->_propDict["cTag"] = $val;
return $this;
} | Sets the cTag
An eTag for the content of the item. This eTag is not changed if only the metadata is changed. Note This property is not returned if the item is a folder. Read-only.
@param string $val The cTag
@return DriveItem | setCTag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getDeleted()
{
if (array_key_exists("deleted", $this->_propDict)) {
if (is_a($this->_propDict["deleted"], "\Microsoft\Graph\Model\Deleted") || is_null($this->_propDict["deleted"])) {
return $this->_propDict["deleted"];
} else {
$this->_propDict["deleted"] = new Deleted($this->_propDict["deleted"]);
return $this->_propDict["deleted"];
}
}
return null;
} | Gets the deleted
Information about the deleted state of the item. Read-only.
@return Deleted|null The deleted | getDeleted | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setDeleted($val)
{
$this->_propDict["deleted"] = $val;
return $this;
} | Sets the deleted
Information about the deleted state of the item. Read-only.
@param Deleted $val The deleted
@return DriveItem | setDeleted | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getFile()
{
if (array_key_exists("file", $this->_propDict)) {
if (is_a($this->_propDict["file"], "\Microsoft\Graph\Model\File") || is_null($this->_propDict["file"])) {
return $this->_propDict["file"];
} else {
$this->_propDict["file"] = new File($this->_propDict["file"]);
return $this->_propDict["file"];
}
}
return null;
} | Gets the file
File metadata, if the item is a file. Read-only.
@return File|null The file | getFile | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setFile($val)
{
$this->_propDict["file"] = $val;
return $this;
} | Sets the file
File metadata, if the item is a file. Read-only.
@param File $val The file
@return DriveItem | setFile | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getFileSystemInfo()
{
if (array_key_exists("fileSystemInfo", $this->_propDict)) {
if (is_a($this->_propDict["fileSystemInfo"], "\Microsoft\Graph\Model\FileSystemInfo") || is_null($this->_propDict["fileSystemInfo"])) {
return $this->_propDict["fileSystemInfo"];
} else {
$this->_propDict["fileSystemInfo"] = new FileSystemInfo($this->_propDict["fileSystemInfo"]);
return $this->_propDict["fileSystemInfo"];
}
}
return null;
} | Gets the fileSystemInfo
File system information on client. Read-write.
@return FileSystemInfo|null The fileSystemInfo | getFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setFileSystemInfo($val)
{
$this->_propDict["fileSystemInfo"] = $val;
return $this;
} | Sets the fileSystemInfo
File system information on client. Read-write.
@param FileSystemInfo $val The fileSystemInfo
@return DriveItem | setFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getFolder()
{
if (array_key_exists("folder", $this->_propDict)) {
if (is_a($this->_propDict["folder"], "\Microsoft\Graph\Model\Folder") || is_null($this->_propDict["folder"])) {
return $this->_propDict["folder"];
} else {
$this->_propDict["folder"] = new Folder($this->_propDict["folder"]);
return $this->_propDict["folder"];
}
}
return null;
} | Gets the folder
Folder metadata, if the item is a folder. Read-only.
@return Folder|null The folder | getFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setFolder($val)
{
$this->_propDict["folder"] = $val;
return $this;
} | Sets the folder
Folder metadata, if the item is a folder. Read-only.
@param Folder $val The folder
@return DriveItem | setFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getImage()
{
if (array_key_exists("image", $this->_propDict)) {
if (is_a($this->_propDict["image"], "\Microsoft\Graph\Model\Image") || is_null($this->_propDict["image"])) {
return $this->_propDict["image"];
} else {
$this->_propDict["image"] = new Image($this->_propDict["image"]);
return $this->_propDict["image"];
}
}
return null;
} | Gets the image
Image metadata, if the item is an image. Read-only.
@return Image|null The image | getImage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setImage($val)
{
$this->_propDict["image"] = $val;
return $this;
} | Sets the image
Image metadata, if the item is an image. Read-only.
@param Image $val The image
@return DriveItem | setImage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getLocation()
{
if (array_key_exists("location", $this->_propDict)) {
if (is_a($this->_propDict["location"], "\Microsoft\Graph\Model\GeoCoordinates") || is_null($this->_propDict["location"])) {
return $this->_propDict["location"];
} else {
$this->_propDict["location"] = new GeoCoordinates($this->_propDict["location"]);
return $this->_propDict["location"];
}
}
return null;
} | Gets the location
Location metadata, if the item has location data. Read-only.
@return GeoCoordinates|null The location | getLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getMalware()
{
if (array_key_exists("malware", $this->_propDict)) {
if (is_a($this->_propDict["malware"], "\Microsoft\Graph\Model\Malware") || is_null($this->_propDict["malware"])) {
return $this->_propDict["malware"];
} else {
$this->_propDict["malware"] = new Malware($this->_propDict["malware"]);
return $this->_propDict["malware"];
}
}
return null;
} | Gets the malware
Malware metadata, if the item was detected to contain malware. Read-only.
@return Malware|null The malware | getMalware | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setMalware($val)
{
$this->_propDict["malware"] = $val;
return $this;
} | Sets the malware
Malware metadata, if the item was detected to contain malware. Read-only.
@param Malware $val The malware
@return DriveItem | setMalware | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPackage()
{
if (array_key_exists("package", $this->_propDict)) {
if (is_a($this->_propDict["package"], "\Microsoft\Graph\Model\Package") || is_null($this->_propDict["package"])) {
return $this->_propDict["package"];
} else {
$this->_propDict["package"] = new Package($this->_propDict["package"]);
return $this->_propDict["package"];
}
}
return null;
} | Gets the package
If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only.
@return Package|null The package | getPackage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPendingOperations()
{
if (array_key_exists("pendingOperations", $this->_propDict)) {
if (is_a($this->_propDict["pendingOperations"], "\Microsoft\Graph\Model\PendingOperations") || is_null($this->_propDict["pendingOperations"])) {
return $this->_propDict["pendingOperations"];
} else {
$this->_propDict["pendingOperations"] = new PendingOperations($this->_propDict["pendingOperations"]);
return $this->_propDict["pendingOperations"];
}
}
return null;
} | Gets the pendingOperations
If present, indicates that one or more operations that might affect the state of the driveItem are pending completion. Read-only.
@return PendingOperations|null The pendingOperations | getPendingOperations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setPendingOperations($val)
{
$this->_propDict["pendingOperations"] = $val;
return $this;
} | Sets the pendingOperations
If present, indicates that one or more operations that might affect the state of the driveItem are pending completion. Read-only.
@param PendingOperations $val The pendingOperations
@return DriveItem | setPendingOperations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPhoto()
{
if (array_key_exists("photo", $this->_propDict)) {
if (is_a($this->_propDict["photo"], "\Microsoft\Graph\Model\Photo") || is_null($this->_propDict["photo"])) {
return $this->_propDict["photo"];
} else {
$this->_propDict["photo"] = new Photo($this->_propDict["photo"]);
return $this->_propDict["photo"];
}
}
return null;
} | Gets the photo
Photo metadata, if the item is a photo. Read-only.
@return Photo|null The photo | getPhoto | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getRemoteItem()
{
if (array_key_exists("remoteItem", $this->_propDict)) {
if (is_a($this->_propDict["remoteItem"], "\Microsoft\Graph\Model\RemoteItem") || is_null($this->_propDict["remoteItem"])) {
return $this->_propDict["remoteItem"];
} else {
$this->_propDict["remoteItem"] = new RemoteItem($this->_propDict["remoteItem"]);
return $this->_propDict["remoteItem"];
}
}
return null;
} | Gets the remoteItem
Remote item data, if the item is shared from a drive other than the one being accessed. Read-only.
@return RemoteItem|null The remoteItem | getRemoteItem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setRemoteItem($val)
{
$this->_propDict["remoteItem"] = $val;
return $this;
} | Sets the remoteItem
Remote item data, if the item is shared from a drive other than the one being accessed. Read-only.
@param RemoteItem $val The remoteItem
@return DriveItem | setRemoteItem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getRoot()
{
if (array_key_exists("root", $this->_propDict)) {
if (is_a($this->_propDict["root"], "\Microsoft\Graph\Model\Root") || is_null($this->_propDict["root"])) {
return $this->_propDict["root"];
} else {
$this->_propDict["root"] = new Root($this->_propDict["root"]);
return $this->_propDict["root"];
}
}
return null;
} | Gets the root
If this property is non-null, it indicates that the driveItem is the top-most driveItem in the drive.
@return Root|null The root | getRoot | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSearchResult()
{
if (array_key_exists("searchResult", $this->_propDict)) {
if (is_a($this->_propDict["searchResult"], "\Microsoft\Graph\Model\SearchResult") || is_null($this->_propDict["searchResult"])) {
return $this->_propDict["searchResult"];
} else {
$this->_propDict["searchResult"] = new SearchResult($this->_propDict["searchResult"]);
return $this->_propDict["searchResult"];
}
}
return null;
} | Gets the searchResult
Search metadata, if the item is from a search result. Read-only.
@return SearchResult|null The searchResult | getSearchResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSearchResult($val)
{
$this->_propDict["searchResult"] = $val;
return $this;
} | Sets the searchResult
Search metadata, if the item is from a search result. Read-only.
@param SearchResult $val The searchResult
@return DriveItem | setSearchResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getShared()
{
if (array_key_exists("shared", $this->_propDict)) {
if (is_a($this->_propDict["shared"], "\Microsoft\Graph\Model\Shared") || is_null($this->_propDict["shared"])) {
return $this->_propDict["shared"];
} else {
$this->_propDict["shared"] = new Shared($this->_propDict["shared"]);
return $this->_propDict["shared"];
}
}
return null;
} | Gets the shared
Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only.
@return Shared|null The shared | getShared | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSpecialFolder()
{
if (array_key_exists("specialFolder", $this->_propDict)) {
if (is_a($this->_propDict["specialFolder"], "\Microsoft\Graph\Model\SpecialFolder") || is_null($this->_propDict["specialFolder"])) {
return $this->_propDict["specialFolder"];
} else {
$this->_propDict["specialFolder"] = new SpecialFolder($this->_propDict["specialFolder"]);
return $this->_propDict["specialFolder"];
}
}
return null;
} | Gets the specialFolder
If the current item is also available as a special folder, this facet is returned. Read-only.
@return SpecialFolder|null The specialFolder | getSpecialFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSpecialFolder($val)
{
$this->_propDict["specialFolder"] = $val;
return $this;
} | Sets the specialFolder
If the current item is also available as a special folder, this facet is returned. Read-only.
@param SpecialFolder $val The specialFolder
@return DriveItem | setSpecialFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getVideo()
{
if (array_key_exists("video", $this->_propDict)) {
if (is_a($this->_propDict["video"], "\Microsoft\Graph\Model\Video") || is_null($this->_propDict["video"])) {
return $this->_propDict["video"];
} else {
$this->_propDict["video"] = new Video($this->_propDict["video"]);
return $this->_propDict["video"];
}
}
return null;
} | Gets the video
Video metadata, if the item is a video. Read-only.
@return Video|null The video | getVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setVideo($val)
{
$this->_propDict["video"] = $val;
return $this;
} | Sets the video
Video metadata, if the item is a video. Read-only.
@param Video $val The video
@return DriveItem | setVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getWebDavUrl()
{
if (array_key_exists("webDavUrl", $this->_propDict)) {
return $this->_propDict["webDavUrl"];
} else {
return null;
}
} | Gets the webDavUrl
WebDAV compatible URL for the item.
@return string|null The webDavUrl | getWebDavUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setWebDavUrl($val)
{
$this->_propDict["webDavUrl"] = $val;
return $this;
} | Sets the webDavUrl
WebDAV compatible URL for the item.
@param string $val The webDavUrl
@return DriveItem | setWebDavUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getWorkbook()
{
if (array_key_exists("workbook", $this->_propDict)) {
if (is_a($this->_propDict["workbook"], "\Microsoft\Graph\Model\Workbook") || is_null($this->_propDict["workbook"])) {
return $this->_propDict["workbook"];
} else {
$this->_propDict["workbook"] = new Workbook($this->_propDict["workbook"]);
return $this->_propDict["workbook"];
}
}
return null;
} | Gets the workbook
For files that are Excel spreadsheets, accesses the workbook API to work with the spreadsheet's contents. Nullable.
@return Workbook|null The workbook | getWorkbook | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setWorkbook($val)
{
$this->_propDict["workbook"] = $val;
return $this;
} | Sets the workbook
For files that are Excel spreadsheets, accesses the workbook API to work with the spreadsheet's contents. Nullable.
@param Workbook $val The workbook
@return DriveItem | setWorkbook | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getAnalytics()
{
if (array_key_exists("analytics", $this->_propDict)) {
if (is_a($this->_propDict["analytics"], "\Microsoft\Graph\Model\ItemAnalytics") || is_null($this->_propDict["analytics"])) {
return $this->_propDict["analytics"];
} else {
$this->_propDict["analytics"] = new ItemAnalytics($this->_propDict["analytics"]);
return $this->_propDict["analytics"];
}
}
return null;
} | Gets the analytics
Analytics about the view activities that took place on this item.
@return ItemAnalytics|null The analytics | getAnalytics | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setAnalytics($val)
{
$this->_propDict["analytics"] = $val;
return $this;
} | Sets the analytics
Analytics about the view activities that took place on this item.
@param ItemAnalytics $val The analytics
@return DriveItem | setAnalytics | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getChildren()
{
if (array_key_exists("children", $this->_propDict)) {
return $this->_propDict["children"];
} else {
return null;
}
} | Gets the children
Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable.
@return array|null The children | getChildren | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setChildren($val)
{
$this->_propDict["children"] = $val;
return $this;
} | Sets the children
Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable.
@param DriveItem[] $val The children
@return DriveItem | setChildren | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getThumbnails()
{
if (array_key_exists("thumbnails", $this->_propDict)) {
return $this->_propDict["thumbnails"];
} else {
return null;
}
} | Gets the thumbnails
Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.
@return array|null The thumbnails | getThumbnails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setThumbnails($val)
{
$this->_propDict["thumbnails"] = $val;
return $this;
} | Sets the thumbnails
Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.
@param ThumbnailSet[] $val The thumbnails
@return DriveItem | setThumbnails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getAutomaticUserConsentSettings()
{
if (array_key_exists("automaticUserConsentSettings", $this->_propDict)) {
if (is_a($this->_propDict["automaticUserConsentSettings"], "\Microsoft\Graph\Model\InboundOutboundPolicyConfiguration") || is_null($this->_propDict["automaticUserConsentSettings"])) {
return $this->_propDict["automaticUserConsentSettings"];
} else {
$this->_propDict["automaticUserConsentSettings"] = new InboundOutboundPolicyConfiguration($this->_propDict["automaticUserConsentSettings"]);
return $this->_propDict["automaticUserConsentSettings"];
}
}
return null;
} | Gets the automaticUserConsentSettings
Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
@return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings | getAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setAutomaticUserConsentSettings($val)
{
$this->_propDict["automaticUserConsentSettings"] = $val;
return $this;
} | Sets the automaticUserConsentSettings
Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
@param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings
@return CrossTenantAccessPolicyConfigurationPartner | setAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bCollaborationInbound()
{
if (array_key_exists("b2bCollaborationInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationInbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationInbound"])) {
return $this->_propDict["b2bCollaborationInbound"];
} else {
$this->_propDict["b2bCollaborationInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationInbound"]);
return $this->_propDict["b2bCollaborationInbound"];
}
}
return null;
} | Gets the b2bCollaborationInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationInbound | getB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bCollaborationInbound($val)
{
$this->_propDict["b2bCollaborationInbound"] = $val;
return $this;
} | Sets the b2bCollaborationInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationInbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bCollaborationOutbound()
{
if (array_key_exists("b2bCollaborationOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationOutbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationOutbound"])) {
return $this->_propDict["b2bCollaborationOutbound"];
} else {
$this->_propDict["b2bCollaborationOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationOutbound"]);
return $this->_propDict["b2bCollaborationOutbound"];
}
}
return null;
} | Gets the b2bCollaborationOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationOutbound | getB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bCollaborationOutbound($val)
{
$this->_propDict["b2bCollaborationOutbound"] = $val;
return $this;
} | Sets the b2bCollaborationOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationOutbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bDirectConnectInbound()
{
if (array_key_exists("b2bDirectConnectInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectInbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectInbound"])) {
return $this->_propDict["b2bDirectConnectInbound"];
} else {
$this->_propDict["b2bDirectConnectInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectInbound"]);
return $this->_propDict["b2bDirectConnectInbound"];
}
}
return null;
} | Gets the b2bDirectConnectInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectInbound | getB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bDirectConnectInbound($val)
{
$this->_propDict["b2bDirectConnectInbound"] = $val;
return $this;
} | Sets the b2bDirectConnectInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectInbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bDirectConnectOutbound()
{
if (array_key_exists("b2bDirectConnectOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectOutbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectOutbound"])) {
return $this->_propDict["b2bDirectConnectOutbound"];
} else {
$this->_propDict["b2bDirectConnectOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectOutbound"]);
return $this->_propDict["b2bDirectConnectOutbound"];
}
}
return null;
} | Gets the b2bDirectConnectOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectOutbound | getB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bDirectConnectOutbound($val)
{
$this->_propDict["b2bDirectConnectOutbound"] = $val;
return $this;
} | Sets the b2bDirectConnectOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectOutbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getInboundTrust()
{
if (array_key_exists("inboundTrust", $this->_propDict)) {
if (is_a($this->_propDict["inboundTrust"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyInboundTrust") || is_null($this->_propDict["inboundTrust"])) {
return $this->_propDict["inboundTrust"];
} else {
$this->_propDict["inboundTrust"] = new CrossTenantAccessPolicyInboundTrust($this->_propDict["inboundTrust"]);
return $this->_propDict["inboundTrust"];
}
}
return null;
} | Gets the inboundTrust
Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations.
@return CrossTenantAccessPolicyInboundTrust|null The inboundTrust | getInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setInboundTrust($val)
{
$this->_propDict["inboundTrust"] = $val;
return $this;
} | Sets the inboundTrust
Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations.
@param CrossTenantAccessPolicyInboundTrust $val The inboundTrust
@return CrossTenantAccessPolicyConfigurationPartner | setInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getIsServiceProvider()
{
if (array_key_exists("isServiceProvider", $this->_propDict)) {
return $this->_propDict["isServiceProvider"];
} else {
return null;
}
} | Gets the isServiceProvider
Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
@return bool|null The isServiceProvider | getIsServiceProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setIsServiceProvider($val)
{
$this->_propDict["isServiceProvider"] = boolval($val);
return $this;
} | Sets the isServiceProvider
Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
@param bool $val The isServiceProvider
@return CrossTenantAccessPolicyConfigurationPartner | setIsServiceProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getIdentitySynchronization()
{
if (array_key_exists("identitySynchronization", $this->_propDict)) {
if (is_a($this->_propDict["identitySynchronization"], "\Microsoft\Graph\Model\CrossTenantIdentitySyncPolicyPartner") || is_null($this->_propDict["identitySynchronization"])) {
return $this->_propDict["identitySynchronization"];
} else {
$this->_propDict["identitySynchronization"] = new CrossTenantIdentitySyncPolicyPartner($this->_propDict["identitySynchronization"]);
return $this->_propDict["identitySynchronization"];
}
}
return null;
} | Gets the identitySynchronization
Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another.
@return CrossTenantIdentitySyncPolicyPartner|null The identitySynchronization | getIdentitySynchronization | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setIdentitySynchronization($val)
{
$this->_propDict["identitySynchronization"] = $val;
return $this;
} | Sets the identitySynchronization
Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another.
@param CrossTenantIdentitySyncPolicyPartner $val The identitySynchronization
@return CrossTenantAccessPolicyConfigurationPartner | setIdentitySynchronization | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getDefault()
{
if (array_key_exists("default", $this->_propDict)) {
return $this->_propDict["default"];
} else {
return null;
}
} | Gets the default
Whether this is the default Content Type
@return bool|null The default | getDefault | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | MIT |
public function getAuthenticationMethod()
{
if (array_key_exists("authenticationMethod", $this->_propDict)) {
if (is_a($this->_propDict["authenticationMethod"], "\Beta\Microsoft\Graph\Model\WiFiAuthenticationMethod") || is_null($this->_propDict["authenticationMethod"])) {
return $this->_propDict["authenticationMethod"];
} else {
$this->_propDict["authenticationMethod"] = new WiFiAuthenticationMethod($this->_propDict["authenticationMethod"]);
return $this->_propDict["authenticationMethod"];
}
}
return null;
} | Gets the authenticationMethod
Authentication Method when EAP Type is configured to PEAP or EAP-TTLS. Possible values are: certificate, usernameAndPassword, derivedCredential.
@return WiFiAuthenticationMethod|null The authenticationMethod | getAuthenticationMethod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getEapFastConfiguration()
{
if (array_key_exists("eapFastConfiguration", $this->_propDict)) {
if (is_a($this->_propDict["eapFastConfiguration"], "\Beta\Microsoft\Graph\Model\EapFastConfiguration") || is_null($this->_propDict["eapFastConfiguration"])) {
return $this->_propDict["eapFastConfiguration"];
} else {
$this->_propDict["eapFastConfiguration"] = new EapFastConfiguration($this->_propDict["eapFastConfiguration"]);
return $this->_propDict["eapFastConfiguration"];
}
}
return null;
} | Gets the eapFastConfiguration
EAP-FAST Configuration Option when EAP-FAST is the selected EAP Type. Possible values are: noProtectedAccessCredential, useProtectedAccessCredential, useProtectedAccessCredentialAndProvision, useProtectedAccessCredentialAndProvisionAnonymously.
@return EapFastConfiguration|null The eapFastConfiguration | getEapFastConfiguration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setEapFastConfiguration($val)
{
$this->_propDict["eapFastConfiguration"] = $val;
return $this;
} | Sets the eapFastConfiguration
EAP-FAST Configuration Option when EAP-FAST is the selected EAP Type. Possible values are: noProtectedAccessCredential, useProtectedAccessCredential, useProtectedAccessCredentialAndProvision, useProtectedAccessCredentialAndProvisionAnonymously.
@param EapFastConfiguration $val The eapFastConfiguration
@return MacOSWiredNetworkConfiguration | setEapFastConfiguration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getEapType()
{
if (array_key_exists("eapType", $this->_propDict)) {
if (is_a($this->_propDict["eapType"], "\Beta\Microsoft\Graph\Model\EapType") || is_null($this->_propDict["eapType"])) {
return $this->_propDict["eapType"];
} else {
$this->_propDict["eapType"] = new EapType($this->_propDict["eapType"]);
return $this->_propDict["eapType"];
}
}
return null;
} | Gets the eapType
Extensible Authentication Protocol (EAP). Indicates the type of EAP protocol set on the wired network. Possible values are: eapTls, leap, eapSim, eapTtls, peap, eapFast, teap.
@return EapType|null The eapType | getEapType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setEapType($val)
{
$this->_propDict["eapType"] = $val;
return $this;
} | Sets the eapType
Extensible Authentication Protocol (EAP). Indicates the type of EAP protocol set on the wired network. Possible values are: eapTls, leap, eapSim, eapTtls, peap, eapFast, teap.
@param EapType $val The eapType
@return MacOSWiredNetworkConfiguration | setEapType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getEnableOuterIdentityPrivacy()
{
if (array_key_exists("enableOuterIdentityPrivacy", $this->_propDict)) {
return $this->_propDict["enableOuterIdentityPrivacy"];
} else {
return null;
}
} | Gets the enableOuterIdentityPrivacy
Enable identity privacy (Outer Identity) when EAP Type is configured to EAP-TTLS, EAP-FAST or PEAP. This property masks usernames with the text you enter. For example, if you use 'anonymous', each user that authenticates with this wired network using their real username is displayed as 'anonymous'.
@return string|null The enableOuterIdentityPrivacy | getEnableOuterIdentityPrivacy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setEnableOuterIdentityPrivacy($val)
{
$this->_propDict["enableOuterIdentityPrivacy"] = $val;
return $this;
} | Sets the enableOuterIdentityPrivacy
Enable identity privacy (Outer Identity) when EAP Type is configured to EAP-TTLS, EAP-FAST or PEAP. This property masks usernames with the text you enter. For example, if you use 'anonymous', each user that authenticates with this wired network using their real username is displayed as 'anonymous'.
@param string $val The enableOuterIdentityPrivacy
@return MacOSWiredNetworkConfiguration | setEnableOuterIdentityPrivacy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getNetworkInterface()
{
if (array_key_exists("networkInterface", $this->_propDict)) {
if (is_a($this->_propDict["networkInterface"], "\Beta\Microsoft\Graph\Model\WiredNetworkInterface") || is_null($this->_propDict["networkInterface"])) {
return $this->_propDict["networkInterface"];
} else {
$this->_propDict["networkInterface"] = new WiredNetworkInterface($this->_propDict["networkInterface"]);
return $this->_propDict["networkInterface"];
}
}
return null;
} | Gets the networkInterface
Network interface. Possible values are: anyEthernet, firstActiveEthernet, secondActiveEthernet, thirdActiveEthernet, firstEthernet, secondEthernet, thirdEthernet.
@return WiredNetworkInterface|null The networkInterface | getNetworkInterface | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setNetworkInterface($val)
{
$this->_propDict["networkInterface"] = $val;
return $this;
} | Sets the networkInterface
Network interface. Possible values are: anyEthernet, firstActiveEthernet, secondActiveEthernet, thirdActiveEthernet, firstEthernet, secondEthernet, thirdEthernet.
@param WiredNetworkInterface $val The networkInterface
@return MacOSWiredNetworkConfiguration | setNetworkInterface | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getNonEapAuthenticationMethodForEapTtls()
{
if (array_key_exists("nonEapAuthenticationMethodForEapTtls", $this->_propDict)) {
if (is_a($this->_propDict["nonEapAuthenticationMethodForEapTtls"], "\Beta\Microsoft\Graph\Model\NonEapAuthenticationMethodForEapTtlsType") || is_null($this->_propDict["nonEapAuthenticationMethodForEapTtls"])) {
return $this->_propDict["nonEapAuthenticationMethodForEapTtls"];
} else {
$this->_propDict["nonEapAuthenticationMethodForEapTtls"] = new NonEapAuthenticationMethodForEapTtlsType($this->_propDict["nonEapAuthenticationMethodForEapTtls"]);
return $this->_propDict["nonEapAuthenticationMethodForEapTtls"];
}
}
return null;
} | Gets the nonEapAuthenticationMethodForEapTtls
Non-EAP Method for Authentication (Inner Identity) when EAP Type is EAP-TTLS and Authenticationmethod is Username and Password. Possible values are: unencryptedPassword, challengeHandshakeAuthenticationProtocol, microsoftChap, microsoftChapVersionTwo.
@return NonEapAuthenticationMethodForEapTtlsType|null The nonEapAuthenticationMethodForEapTtls | getNonEapAuthenticationMethodForEapTtls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setNonEapAuthenticationMethodForEapTtls($val)
{
$this->_propDict["nonEapAuthenticationMethodForEapTtls"] = $val;
return $this;
} | Sets the nonEapAuthenticationMethodForEapTtls
Non-EAP Method for Authentication (Inner Identity) when EAP Type is EAP-TTLS and Authenticationmethod is Username and Password. Possible values are: unencryptedPassword, challengeHandshakeAuthenticationProtocol, microsoftChap, microsoftChapVersionTwo.
@param NonEapAuthenticationMethodForEapTtlsType $val The nonEapAuthenticationMethodForEapTtls
@return MacOSWiredNetworkConfiguration | setNonEapAuthenticationMethodForEapTtls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getTrustedServerCertificateNames()
{
if (array_key_exists("trustedServerCertificateNames", $this->_propDict)) {
return $this->_propDict["trustedServerCertificateNames"];
} else {
return null;
}
} | Gets the trustedServerCertificateNames
Trusted server certificate names when EAP Type is configured to EAP-TLS/TTLS/FAST or PEAP. This is the common name used in the certificates issued by your trusted certificate authority (CA). If you provide this information, you can bypass the dynamic trust dialog that is displayed on end users devices when they connect to this wired network.
@return array|null The trustedServerCertificateNames | getTrustedServerCertificateNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setTrustedServerCertificateNames($val)
{
$this->_propDict["trustedServerCertificateNames"] = $val;
return $this;
} | Sets the trustedServerCertificateNames
Trusted server certificate names when EAP Type is configured to EAP-TLS/TTLS/FAST or PEAP. This is the common name used in the certificates issued by your trusted certificate authority (CA). If you provide this information, you can bypass the dynamic trust dialog that is displayed on end users devices when they connect to this wired network.
@param string[] $val The trustedServerCertificateNames
@return MacOSWiredNetworkConfiguration | setTrustedServerCertificateNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getIdentityCertificateForClientAuthentication()
{
if (array_key_exists("identityCertificateForClientAuthentication", $this->_propDict)) {
if (is_a($this->_propDict["identityCertificateForClientAuthentication"], "\Beta\Microsoft\Graph\Model\MacOSCertificateProfileBase") || is_null($this->_propDict["identityCertificateForClientAuthentication"])) {
return $this->_propDict["identityCertificateForClientAuthentication"];
} else {
$this->_propDict["identityCertificateForClientAuthentication"] = new MacOSCertificateProfileBase($this->_propDict["identityCertificateForClientAuthentication"]);
return $this->_propDict["identityCertificateForClientAuthentication"];
}
}
return null;
} | Gets the identityCertificateForClientAuthentication
Identity Certificate for client authentication when EAP Type is configured to EAP-TLS, EAP-TTLS (with Certificate Authentication), or PEAP (with Certificate Authentication).
@return MacOSCertificateProfileBase|null The identityCertificateForClientAuthentication | getIdentityCertificateForClientAuthentication | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setIdentityCertificateForClientAuthentication($val)
{
$this->_propDict["identityCertificateForClientAuthentication"] = $val;
return $this;
} | Sets the identityCertificateForClientAuthentication
Identity Certificate for client authentication when EAP Type is configured to EAP-TLS, EAP-TTLS (with Certificate Authentication), or PEAP (with Certificate Authentication).
@param MacOSCertificateProfileBase $val The identityCertificateForClientAuthentication
@return MacOSWiredNetworkConfiguration | setIdentityCertificateForClientAuthentication | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getRootCertificateForServerValidation()
{
if (array_key_exists("rootCertificateForServerValidation", $this->_propDict)) {
if (is_a($this->_propDict["rootCertificateForServerValidation"], "\Beta\Microsoft\Graph\Model\MacOSTrustedRootCertificate") || is_null($this->_propDict["rootCertificateForServerValidation"])) {
return $this->_propDict["rootCertificateForServerValidation"];
} else {
$this->_propDict["rootCertificateForServerValidation"] = new MacOSTrustedRootCertificate($this->_propDict["rootCertificateForServerValidation"]);
return $this->_propDict["rootCertificateForServerValidation"];
}
}
return null;
} | Gets the rootCertificateForServerValidation
Trusted Root Certificate for Server Validation when EAP Type is configured to EAP-TLS/TTLS/FAST or PEAP.
@return MacOSTrustedRootCertificate|null The rootCertificateForServerValidation | getRootCertificateForServerValidation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setRootCertificateForServerValidation($val)
{
$this->_propDict["rootCertificateForServerValidation"] = $val;
return $this;
} | Sets the rootCertificateForServerValidation
Trusted Root Certificate for Server Validation when EAP Type is configured to EAP-TLS/TTLS/FAST or PEAP.
@param MacOSTrustedRootCertificate $val The rootCertificateForServerValidation
@return MacOSWiredNetworkConfiguration | setRootCertificateForServerValidation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getApplications()
{
if (array_key_exists("applications", $this->_propDict)) {
if (is_a($this->_propDict["applications"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyTargetConfiguration") || is_null($this->_propDict["applications"])) {
return $this->_propDict["applications"];
} else {
$this->_propDict["applications"] = new CrossTenantAccessPolicyTargetConfiguration($this->_propDict["applications"]);
return $this->_propDict["applications"];
}
}
return null;
} | Gets the applications
The list of applications targeted with your cross-tenant access policy.
@return CrossTenantAccessPolicyTargetConfiguration|null The applications | getApplications | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | MIT |
public function setApplications($val)
{
$this->_propDict["applications"] = $val;
return $this;
} | Sets the applications
The list of applications targeted with your cross-tenant access policy.
@param CrossTenantAccessPolicyTargetConfiguration $val The value to assign to the applications
@return CrossTenantAccessPolicyB2BSetting The CrossTenantAccessPolicyB2BSetting | setApplications | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | MIT |
public function getUsersAndGroups()
{
if (array_key_exists("usersAndGroups", $this->_propDict)) {
if (is_a($this->_propDict["usersAndGroups"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyTargetConfiguration") || is_null($this->_propDict["usersAndGroups"])) {
return $this->_propDict["usersAndGroups"];
} else {
$this->_propDict["usersAndGroups"] = new CrossTenantAccessPolicyTargetConfiguration($this->_propDict["usersAndGroups"]);
return $this->_propDict["usersAndGroups"];
}
}
return null;
} | Gets the usersAndGroups
The list of users and groups targeted with your cross-tenant access policy.
@return CrossTenantAccessPolicyTargetConfiguration|null The usersAndGroups | getUsersAndGroups | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | MIT |
public function setUsersAndGroups($val)
{
$this->_propDict["usersAndGroups"] = $val;
return $this;
} | Sets the usersAndGroups
The list of users and groups targeted with your cross-tenant access policy.
@param CrossTenantAccessPolicyTargetConfiguration $val The value to assign to the usersAndGroups
@return CrossTenantAccessPolicyB2BSetting The CrossTenantAccessPolicyB2BSetting | setUsersAndGroups | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyB2BSetting.php | MIT |
public function getEnrollmentType()
{
if (array_key_exists("enrollmentType", $this->_propDict)) {
if (is_a($this->_propDict["enrollmentType"], "\Beta\Microsoft\Graph\Model\AppleUserInitiatedEnrollmentType") || is_null($this->_propDict["enrollmentType"])) {
return $this->_propDict["enrollmentType"];
} else {
$this->_propDict["enrollmentType"] = new AppleUserInitiatedEnrollmentType($this->_propDict["enrollmentType"]);
return $this->_propDict["enrollmentType"];
}
}
return null;
} | Gets the enrollmentType
The enrollment type. Possible values are: unknown, device, user, accountDrivenUserEnrollment, webDeviceEnrollment, unknownFutureValue.
@return AppleUserInitiatedEnrollmentType|null The enrollmentType | getEnrollmentType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | MIT |
public function setEnrollmentType($val)
{
$this->_propDict["enrollmentType"] = $val;
return $this;
} | Sets the enrollmentType
The enrollment type. Possible values are: unknown, device, user, accountDrivenUserEnrollment, webDeviceEnrollment, unknownFutureValue.
@param AppleUserInitiatedEnrollmentType $val The value to assign to the enrollmentType
@return AppleOwnerTypeEnrollmentType The AppleOwnerTypeEnrollmentType | setEnrollmentType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | MIT |
public function getOwnerType()
{
if (array_key_exists("ownerType", $this->_propDict)) {
if (is_a($this->_propDict["ownerType"], "\Beta\Microsoft\Graph\Model\ManagedDeviceOwnerType") || is_null($this->_propDict["ownerType"])) {
return $this->_propDict["ownerType"];
} else {
$this->_propDict["ownerType"] = new ManagedDeviceOwnerType($this->_propDict["ownerType"]);
return $this->_propDict["ownerType"];
}
}
return null;
} | Gets the ownerType
The owner type. Possible values are: unknown, company, personal.
@return ManagedDeviceOwnerType|null The ownerType | getOwnerType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | MIT |
public function setOwnerType($val)
{
$this->_propDict["ownerType"] = $val;
return $this;
} | Sets the ownerType
The owner type. Possible values are: unknown, company, personal.
@param ManagedDeviceOwnerType $val The value to assign to the ownerType
@return AppleOwnerTypeEnrollmentType The AppleOwnerTypeEnrollmentType | setOwnerType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppleOwnerTypeEnrollmentType.php | MIT |
public function getSite()
{
if (array_key_exists("site", $this->_propDict)) {
if (is_a($this->_propDict["site"], "\Beta\Microsoft\Graph\Model\Site") || is_null($this->_propDict["site"])) {
return $this->_propDict["site"];
} else {
$this->_propDict["site"] = new \Beta\Microsoft\Graph\Model\Site($this->_propDict["site"]);
return $this->_propDict["site"];
}
}
return null;
} | Gets the site
The SharePoint site associated with the siteSource.
@return \Beta\Microsoft\Graph\Model\Site|null The site | getSite | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/SiteSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/SiteSource.php | MIT |
function cloudinary_autoloader($class_name)
{
// Ignore non-cloudinary classes
if (strpos($class_name, CLOUDINARY_NAMESPACE) === false) {
return false;
}
$classes_dir = realpath(__DIR__ . DIRECTORY_SEPARATOR . 'src') . DIRECTORY_SEPARATOR;
$class_file = str_replace('_', DIRECTORY_SEPARATOR, $class_name) . '.php';
$ns_prefix = CLOUDINARY_NAMESPACE . '\\';
if (substr($class_file, 0, strlen($ns_prefix)) == $ns_prefix) {
$class_file = substr($class_file, strlen($ns_prefix));
}
$class_file = str_replace('\\', DIRECTORY_SEPARATOR, $class_file);
require_once $classes_dir . $class_file;
return true;
} | Callback function that searches for Cloudinary classes and autoloads them
@param string $class_name Class to load
@return bool true if class is loaded, false otherwise | cloudinary_autoloader | php | xiebruce/PicUploader | vendor/cloudinary/cloudinary_php/autoload.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/cloudinary/cloudinary_php/autoload.php | MIT |
public function getEventDetail()
{
if (array_key_exists("eventDetail", $this->_propDict)) {
if (is_a($this->_propDict["eventDetail"], "\Microsoft\Graph\Model\EventMessageDetail") || is_null($this->_propDict["eventDetail"])) {
return $this->_propDict["eventDetail"];
} else {
$this->_propDict["eventDetail"] = new EventMessageDetail($this->_propDict["eventDetail"]);
return $this->_propDict["eventDetail"];
}
}
return null;
} | Gets the eventDetail
Read-only. If present, represents details of an event that happened in a chat, a channel, or a team, for example, members were added, and so on. For event messages, the messageType property will be set to systemEventMessage.
@return EventMessageDetail|null The eventDetail | getEventDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | MIT |
public function setEventDetail($val)
{
$this->_propDict["eventDetail"] = $val;
return $this;
} | Sets the eventDetail
Read-only. If present, represents details of an event that happened in a chat, a channel, or a team, for example, members were added, and so on. For event messages, the messageType property will be set to systemEventMessage.
@param EventMessageDetail $val The eventDetail
@return ChatMessageInfo | setEventDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | MIT |
public function getFrom()
{
if (array_key_exists("from", $this->_propDict)) {
if (is_a($this->_propDict["from"], "\Microsoft\Graph\Model\ChatMessageFromIdentitySet") || is_null($this->_propDict["from"])) {
return $this->_propDict["from"];
} else {
$this->_propDict["from"] = new ChatMessageFromIdentitySet($this->_propDict["from"]);
return $this->_propDict["from"];
}
}
return null;
} | Gets the from
Information about the sender of the message.
@return ChatMessageFromIdentitySet|null The from | getFrom | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | MIT |
public function getMessageType()
{
if (array_key_exists("messageType", $this->_propDict)) {
if (is_a($this->_propDict["messageType"], "\Microsoft\Graph\Model\ChatMessageType") || is_null($this->_propDict["messageType"])) {
return $this->_propDict["messageType"];
} else {
$this->_propDict["messageType"] = new ChatMessageType($this->_propDict["messageType"]);
return $this->_propDict["messageType"];
}
}
return null;
} | Gets the messageType
The type of chat message. The possible values are: message, unknownFutureValue, systemEventMessage.
@return ChatMessageType|null The messageType | getMessageType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | MIT |
public function setMessageType($val)
{
$this->_propDict["messageType"] = $val;
return $this;
} | Sets the messageType
The type of chat message. The possible values are: message, unknownFutureValue, systemEventMessage.
@param ChatMessageType $val The messageType
@return ChatMessageInfo | setMessageType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ChatMessageInfo.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.