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 : /var/www/hopeinstoughton_www/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.
*
* DataPolicyOperation 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;
/**
* DataPolicyOperation 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 DataPolicyOperation extends Entity
{
/**
* Gets the completedDateTime
* Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Null until the operation completes.
*
* @return \DateTime|null The completedDateTime
*/
public function getCompletedDateTime()
{
if (array_key_exists("completedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["completedDateTime"], "\DateTime") || is_null($this->_propDict["completedDateTime"])) {
return $this->_propDict["completedDateTime"];
} else {
$this->_propDict["completedDateTime"] = new \DateTime($this->_propDict["completedDateTime"]);
return $this->_propDict["completedDateTime"];
}
}
return null;
}
/**
* Sets the completedDateTime
* Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Null until the operation completes.
*
* @param \DateTime $val The completedDateTime
*
* @return DataPolicyOperation
*/
public function setCompletedDateTime($val)
{
$this->_propDict["completedDateTime"] = $val;
return $this;
}
/**
* Gets the progress
* Specifies the progress of an operation.
*
* @return float|null The progress
*/
public function getProgress()
{
if (array_key_exists("progress", $this->_propDict)) {
return $this->_propDict["progress"];
} else {
return null;
}
}
/**
* Sets the progress
* Specifies the progress of an operation.
*
* @param float $val The progress
*
* @return DataPolicyOperation
*/
public function setProgress($val)
{
$this->_propDict["progress"] = floatval($val);
return $this;
}
/**
* Gets the status
* Possible values are: notStarted, running, complete, failed, unknownFutureValue.
*
* @return DataPolicyOperationStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\DataPolicyOperationStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new DataPolicyOperationStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
}
/**
* Sets the status
* Possible values are: notStarted, running, complete, failed, unknownFutureValue.
*
* @param DataPolicyOperationStatus $val The status
*
* @return DataPolicyOperation
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the storageLocation
* The URL location to where data is being exported for export requests.
*
* @return string|null The storageLocation
*/
public function getStorageLocation()
{
if (array_key_exists("storageLocation", $this->_propDict)) {
return $this->_propDict["storageLocation"];
} else {
return null;
}
}
/**
* Sets the storageLocation
* The URL location to where data is being exported for export requests.
*
* @param string $val The storageLocation
*
* @return DataPolicyOperation
*/
public function setStorageLocation($val)
{
$this->_propDict["storageLocation"] = $val;
return $this;
}
/**
* Gets the submittedDateTime
* Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
*
* @return \DateTime|null The submittedDateTime
*/
public function getSubmittedDateTime()
{
if (array_key_exists("submittedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["submittedDateTime"], "\DateTime") || is_null($this->_propDict["submittedDateTime"])) {
return $this->_propDict["submittedDateTime"];
} else {
$this->_propDict["submittedDateTime"] = new \DateTime($this->_propDict["submittedDateTime"]);
return $this->_propDict["submittedDateTime"];
}
}
return null;
}
/**
* Sets the submittedDateTime
* Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
*
* @param \DateTime $val The submittedDateTime
*
* @return DataPolicyOperation
*/
public function setSubmittedDateTime($val)
{
$this->_propDict["submittedDateTime"] = $val;
return $this;
}
/**
* Gets the userId
* The id for the user on whom the operation is performed.
*
* @return string|null The userId
*/
public function getUserId()
{
if (array_key_exists("userId", $this->_propDict)) {
return $this->_propDict["userId"];
} else {
return null;
}
}
/**
* Sets the userId
* The id for the user on whom the operation is performed.
*
* @param string $val The userId
*
* @return DataPolicyOperation
*/
public function setUserId($val)
{
$this->_propDict["userId"] = $val;
return $this;
}
}