1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectio...

148 lines
3.5 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* WindowsInformationProtectionAppLockerFile File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\Model;
/**
* WindowsInformationProtectionAppLockerFile class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class WindowsInformationProtectionAppLockerFile extends Entity
{
/**
* Gets the displayName
* The friendly name
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* The friendly name
*
* @param string $val The displayName
*
* @return WindowsInformationProtectionAppLockerFile
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the file
* File as a byte array
*
* @return \GuzzleHttp\Psr7\Stream|null The file
*/
public function getFile()
{
if (array_key_exists("file", $this->_propDict)) {
if (is_a($this->_propDict["file"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["file"])) {
return $this->_propDict["file"];
} else {
$this->_propDict["file"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["file"]);
return $this->_propDict["file"];
}
}
return null;
}
/**
* Sets the file
* File as a byte array
*
* @param \GuzzleHttp\Psr7\Stream $val The file
*
* @return WindowsInformationProtectionAppLockerFile
*/
public function setFile($val)
{
$this->_propDict["file"] = $val;
return $this;
}
/**
* Gets the fileHash
* SHA256 hash of the file
*
* @return string|null The fileHash
*/
public function getFileHash()
{
if (array_key_exists("fileHash", $this->_propDict)) {
return $this->_propDict["fileHash"];
} else {
return null;
}
}
/**
* Sets the fileHash
* SHA256 hash of the file
*
* @param string $val The fileHash
*
* @return WindowsInformationProtectionAppLockerFile
*/
public function setFileHash($val)
{
$this->_propDict["fileHash"] = $val;
return $this;
}
/**
* Gets the version
* Version of the entity.
*
* @return string|null The version
*/
public function getVersion()
{
if (array_key_exists("version", $this->_propDict)) {
return $this->_propDict["version"];
} else {
return null;
}
}
/**
* Sets the version
* Version of the entity.
*
* @param string $val The version
*
* @return WindowsInformationProtectionAppLockerFile
*/
public function setVersion($val)
{
$this->_propDict["version"] = $val;
return $this;
}
}