Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* FileDetails 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 Microsoft\Graph\SecurityNamespace\Model;
/**
* FileDetails 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 FileDetails extends \Microsoft\Graph\Model\Entity
{
/**
* Gets the fileName
* The name of the file.
*
* @return string|null The fileName
*/
public function getFileName()
{
if (array_key_exists("fileName", $this->_propDict)) {
return $this->_propDict["fileName"];
} else {
return null;
}
}
/**
* Sets the fileName
* The name of the file.
*
* @param string $val The value of the fileName
*
* @return FileDetails
*/
public function setFileName($val)
{
$this->_propDict["fileName"] = $val;
return $this;
}
/**
* Gets the filePath
* The file path (location) of the file instance.
*
* @return string|null The filePath
*/
public function getFilePath()
{
if (array_key_exists("filePath", $this->_propDict)) {
return $this->_propDict["filePath"];
} else {
return null;
}
}
/**
* Sets the filePath
* The file path (location) of the file instance.
*
* @param string $val The value of the filePath
*
* @return FileDetails
*/
public function setFilePath($val)
{
$this->_propDict["filePath"] = $val;
return $this;
}
/**
* Gets the filePublisher
* The publisher of the file.
*
* @return string|null The filePublisher
*/
public function getFilePublisher()
{
if (array_key_exists("filePublisher", $this->_propDict)) {
return $this->_propDict["filePublisher"];
} else {
return null;
}
}
/**
* Sets the filePublisher
* The publisher of the file.
*
* @param string $val The value of the filePublisher
*
* @return FileDetails
*/
public function setFilePublisher($val)
{
$this->_propDict["filePublisher"] = $val;
return $this;
}
/**
* Gets the fileSize
* The size of the file in bytes.
*
* @return int|null The fileSize
*/
public function getFileSize()
{
if (array_key_exists("fileSize", $this->_propDict)) {
return $this->_propDict["fileSize"];
} else {
return null;
}
}
/**
* Sets the fileSize
* The size of the file in bytes.
*
* @param int $val The value of the fileSize
*
* @return FileDetails
*/
public function setFileSize($val)
{
$this->_propDict["fileSize"] = $val;
return $this;
}
/**
* Gets the issuer
* The certificate authority (CA) that issued the certificate.
*
* @return string|null The issuer
*/
public function getIssuer()
{
if (array_key_exists("issuer", $this->_propDict)) {
return $this->_propDict["issuer"];
} else {
return null;
}
}
/**
* Sets the issuer
* The certificate authority (CA) that issued the certificate.
*
* @param string $val The value of the issuer
*
* @return FileDetails
*/
public function setIssuer($val)
{
$this->_propDict["issuer"] = $val;
return $this;
}
/**
* Gets the sha1
* The Sha1 cryptographic hash of the file content.
*
* @return string|null The sha1
*/
public function getSha1()
{
if (array_key_exists("sha1", $this->_propDict)) {
return $this->_propDict["sha1"];
} else {
return null;
}
}
/**
* Sets the sha1
* The Sha1 cryptographic hash of the file content.
*
* @param string $val The value of the sha1
*
* @return FileDetails
*/
public function setSha1($val)
{
$this->_propDict["sha1"] = $val;
return $this;
}
/**
* Gets the sha256
* The Sha256 cryptographic hash of the file content.
*
* @return string|null The sha256
*/
public function getSha256()
{
if (array_key_exists("sha256", $this->_propDict)) {
return $this->_propDict["sha256"];
} else {
return null;
}
}
/**
* Sets the sha256
* The Sha256 cryptographic hash of the file content.
*
* @param string $val The value of the sha256
*
* @return FileDetails
*/
public function setSha256($val)
{
$this->_propDict["sha256"] = $val;
return $this;
}
/**
* Gets the signer
* The signer of the signed file.
*
* @return string|null The signer
*/
public function getSigner()
{
if (array_key_exists("signer", $this->_propDict)) {
return $this->_propDict["signer"];
} else {
return null;
}
}
/**
* Sets the signer
* The signer of the signed file.
*
* @param string $val The value of the signer
*
* @return FileDetails
*/
public function setSigner($val)
{
$this->_propDict["signer"] = $val;
return $this;
}
}