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/DocumentSetVersion.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DocumentSetVersion 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; /** * DocumentSetVersion 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 DocumentSetVersion extends ListItemVersion { /** * Gets the comment * Comment about the captured version. * * @return string|null The comment */ public function getComment() { if (array_key_exists("comment", $this->_propDict)) { return $this->_propDict["comment"]; } else { return null; } } /** * Sets the comment * Comment about the captured version. * * @param string $val The comment * * @return DocumentSetVersion */ public function setComment($val) { $this->_propDict["comment"] = $val; return $this; } /** * Gets the createdBy * User who captured the version. * * @return IdentitySet|null The createdBy */ public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["createdBy"])) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new IdentitySet($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; } /** * Sets the createdBy * User who captured the version. * * @param IdentitySet $val The createdBy * * @return DocumentSetVersion */ public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; } /** * Gets the createdDateTime * Date and time when this version was created. * * @return \DateTime|null The createdDateTime */ public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; } /** * Sets the createdDateTime * Date and time when this version was created. * * @param \DateTime $val The createdDateTime * * @return DocumentSetVersion */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the items * Items within the document set that are captured as part of this version. * * @return array|null The items */ public function getItems() { if (array_key_exists("items", $this->_propDict)) { return $this->_propDict["items"]; } else { return null; } } /** * Sets the items * Items within the document set that are captured as part of this version. * * @param DocumentSetVersionItem[] $val The items * * @return DocumentSetVersion */ public function setItems($val) { $this->_propDict["items"] = $val; return $this; } /** * Gets the shouldCaptureMinorVersion * If true, minor versions of items are also captured; otherwise, only major versions will be captured. Default value is false. * * @return bool|null The shouldCaptureMinorVersion */ public function getShouldCaptureMinorVersion() { if (array_key_exists("shouldCaptureMinorVersion", $this->_propDict)) { return $this->_propDict["shouldCaptureMinorVersion"]; } else { return null; } } /** * Sets the shouldCaptureMinorVersion * If true, minor versions of items are also captured; otherwise, only major versions will be captured. Default value is false. * * @param bool $val The shouldCaptureMinorVersion * * @return DocumentSetVersion */ public function setShouldCaptureMinorVersion($val) { $this->_propDict["shouldCaptureMinorVersion"] = boolval($val); return $this; } }
Copyright ©2021 || Defacer Indonesia