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/dev/htdocs/includes/microsoft/microsoft-graph/src/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/dev/htdocs/includes/microsoft/microsoft-graph/src/Model/ImageInfo.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* ImageInfo 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;
/**
* ImageInfo 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 ImageInfo extends Entity
{
    /**
    * Gets the addImageQuery
    * Optional; parameter used to indicate the server is able to render image dynamically in response to parameterization. For example – a high contrast image
    *
    * @return bool|null The addImageQuery
    */
    public function getAddImageQuery()
    {
        if (array_key_exists("addImageQuery", $this->_propDict)) {
            return $this->_propDict["addImageQuery"];
        } else {
            return null;
        }
    }

    /**
    * Sets the addImageQuery
    * Optional; parameter used to indicate the server is able to render image dynamically in response to parameterization. For example – a high contrast image
    *
    * @param bool $val The value of the addImageQuery
    *
    * @return ImageInfo
    */
    public function setAddImageQuery($val)
    {
        $this->_propDict["addImageQuery"] = $val;
        return $this;
    }
    /**
    * Gets the alternateText
    * Optional; alt-text accessible content for the image
    *
    * @return string|null The alternateText
    */
    public function getAlternateText()
    {
        if (array_key_exists("alternateText", $this->_propDict)) {
            return $this->_propDict["alternateText"];
        } else {
            return null;
        }
    }

    /**
    * Sets the alternateText
    * Optional; alt-text accessible content for the image
    *
    * @param string $val The value of the alternateText
    *
    * @return ImageInfo
    */
    public function setAlternateText($val)
    {
        $this->_propDict["alternateText"] = $val;
        return $this;
    }
    /**
    * Gets the alternativeText
    *
    * @return string|null The alternativeText
    */
    public function getAlternativeText()
    {
        if (array_key_exists("alternativeText", $this->_propDict)) {
            return $this->_propDict["alternativeText"];
        } else {
            return null;
        }
    }

    /**
    * Sets the alternativeText
    *
    * @param string $val The value of the alternativeText
    *
    * @return ImageInfo
    */
    public function setAlternativeText($val)
    {
        $this->_propDict["alternativeText"] = $val;
        return $this;
    }
    /**
    * Gets the iconUrl
    * Optional; URI that points to an icon which represents the application used to generate the activity
    *
    * @return string|null The iconUrl
    */
    public function getIconUrl()
    {
        if (array_key_exists("iconUrl", $this->_propDict)) {
            return $this->_propDict["iconUrl"];
        } else {
            return null;
        }
    }

    /**
    * Sets the iconUrl
    * Optional; URI that points to an icon which represents the application used to generate the activity
    *
    * @param string $val The value of the iconUrl
    *
    * @return ImageInfo
    */
    public function setIconUrl($val)
    {
        $this->_propDict["iconUrl"] = $val;
        return $this;
    }
}

Hry