1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ImageInfo.php

137 lines
3.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?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 Beta\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;
}
}