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

105 lines
2.3 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* MarkContent 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;
/**
* MarkContent 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 MarkContent extends LabelActionBase
{
/**
* Gets the fontColor
*
* @return string|null The fontColor
*/
public function getFontColor()
{
if (array_key_exists("fontColor", $this->_propDict)) {
return $this->_propDict["fontColor"];
} else {
return null;
}
}
/**
* Sets the fontColor
*
* @param string $val The value of the fontColor
*
* @return MarkContent
*/
public function setFontColor($val)
{
$this->_propDict["fontColor"] = $val;
return $this;
}
/**
* Gets the fontSize
*
* @return int|null The fontSize
*/
public function getFontSize()
{
if (array_key_exists("fontSize", $this->_propDict)) {
return $this->_propDict["fontSize"];
} else {
return null;
}
}
/**
* Sets the fontSize
*
* @param int $val The value of the fontSize
*
* @return MarkContent
*/
public function setFontSize($val)
{
$this->_propDict["fontSize"] = $val;
return $this;
}
/**
* Gets the text
*
* @return string|null The text
*/
public function getText()
{
if (array_key_exists("text", $this->_propDict)) {
return $this->_propDict["text"];
} else {
return null;
}
}
/**
* Sets the text
*
* @param string $val The value of the text
*
* @return MarkContent
*/
public function setText($val)
{
$this->_propDict["text"] = $val;
return $this;
}
}