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.
*
* SynchronizationJob 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;
/**
* SynchronizationJob 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 SynchronizationJob extends Entity
{
/**
* Gets the schedule
* Schedule used to run the job. Read-only.
*
* @return SynchronizationSchedule|null The schedule
*/
public function getSchedule()
{
if (array_key_exists("schedule", $this->_propDict)) {
if (is_a($this->_propDict["schedule"], "\Microsoft\Graph\Model\SynchronizationSchedule") || is_null($this->_propDict["schedule"])) {
return $this->_propDict["schedule"];
} else {
$this->_propDict["schedule"] = new SynchronizationSchedule($this->_propDict["schedule"]);
return $this->_propDict["schedule"];
}
}
return null;
}
/**
* Sets the schedule
* Schedule used to run the job. Read-only.
*
* @param SynchronizationSchedule $val The schedule
*
* @return SynchronizationJob
*/
public function setSchedule($val)
{
$this->_propDict["schedule"] = $val;
return $this;
}
/**
* Gets the status
* Status of the job, which includes when the job was last run, current job state, and errors.
*
* @return SynchronizationStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\SynchronizationStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new SynchronizationStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
}
/**
* Sets the status
* Status of the job, which includes when the job was last run, current job state, and errors.
*
* @param SynchronizationStatus $val The status
*
* @return SynchronizationJob
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the synchronizationJobSettings
* Settings associated with the job. Some settings are inherited from the template.
*
* @return array|null The synchronizationJobSettings
*/
public function getSynchronizationJobSettings()
{
if (array_key_exists("synchronizationJobSettings", $this->_propDict)) {
return $this->_propDict["synchronizationJobSettings"];
} else {
return null;
}
}
/**
* Sets the synchronizationJobSettings
* Settings associated with the job. Some settings are inherited from the template.
*
* @param KeyValuePair[] $val The synchronizationJobSettings
*
* @return SynchronizationJob
*/
public function setSynchronizationJobSettings($val)
{
$this->_propDict["synchronizationJobSettings"] = $val;
return $this;
}
/**
* Gets the templateId
* Identifier of the synchronization template this job is based on.
*
* @return string|null The templateId
*/
public function getTemplateId()
{
if (array_key_exists("templateId", $this->_propDict)) {
return $this->_propDict["templateId"];
} else {
return null;
}
}
/**
* Sets the templateId
* Identifier of the synchronization template this job is based on.
*
* @param string $val The templateId
*
* @return SynchronizationJob
*/
public function setTemplateId($val)
{
$this->_propDict["templateId"] = $val;
return $this;
}
/**
* Gets the schema
* The synchronization schema configured for the job.
*
* @return SynchronizationSchema|null The schema
*/
public function getSchema()
{
if (array_key_exists("schema", $this->_propDict)) {
if (is_a($this->_propDict["schema"], "\Microsoft\Graph\Model\SynchronizationSchema") || is_null($this->_propDict["schema"])) {
return $this->_propDict["schema"];
} else {
$this->_propDict["schema"] = new SynchronizationSchema($this->_propDict["schema"]);
return $this->_propDict["schema"];
}
}
return null;
}
/**
* Sets the schema
* The synchronization schema configured for the job.
*
* @param SynchronizationSchema $val The schema
*
* @return SynchronizationJob
*/
public function setSchema($val)
{
$this->_propDict["schema"] = $val;
return $this;
}
}