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/Beta/Microsoft/Graph/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/erp/htdocs/includes/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Media.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* Media 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 Beta\Microsoft\Graph\Model;
/**
* Media 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 Media extends Entity
{
    /**
    * Gets the isTranscriptionShown
    * If a file has a transcript, this setting controls if the closed captions / transcription for the media file should be shown to people during viewing. Read-Write.
    *
    * @return bool|null The isTranscriptionShown
    */
    public function getIsTranscriptionShown()
    {
        if (array_key_exists("isTranscriptionShown", $this->_propDict)) {
            return $this->_propDict["isTranscriptionShown"];
        } else {
            return null;
        }
    }

    /**
    * Sets the isTranscriptionShown
    * If a file has a transcript, this setting controls if the closed captions / transcription for the media file should be shown to people during viewing. Read-Write.
    *
    * @param bool $val The value of the isTranscriptionShown
    *
    * @return Media
    */
    public function setIsTranscriptionShown($val)
    {
        $this->_propDict["isTranscriptionShown"] = $val;
        return $this;
    }

    /**
    * Gets the mediaSource
    * Information about the source of media. Read-only.
    *
    * @return MediaSource|null The mediaSource
    */
    public function getMediaSource()
    {
        if (array_key_exists("mediaSource", $this->_propDict)) {
            if (is_a($this->_propDict["mediaSource"], "\Beta\Microsoft\Graph\Model\MediaSource") || is_null($this->_propDict["mediaSource"])) {
                return $this->_propDict["mediaSource"];
            } else {
                $this->_propDict["mediaSource"] = new MediaSource($this->_propDict["mediaSource"]);
                return $this->_propDict["mediaSource"];
            }
        }
        return null;
    }

    /**
    * Sets the mediaSource
    * Information about the source of media. Read-only.
    *
    * @param MediaSource $val The value to assign to the mediaSource
    *
    * @return Media The Media
    */
    public function setMediaSource($val)
    {
        $this->_propDict["mediaSource"] = $val;
         return $this;
    }
}

Hry