FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: PrintUsage.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * PrintUsage 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; /** * PrintUsage 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 PrintUsage extends Entity { /** * Gets the completedBlackAndWhiteJobCount * * @return int|null The completedBlackAndWhiteJobCount */ public function getCompletedBlackAndWhiteJobCount() { if (array_key_exists("completedBlackAndWhiteJobCount", $this->_propDict)) { return $this->_propDict["completedBlackAndWhiteJobCount"]; } else { return null; } } /** * Sets the completedBlackAndWhiteJobCount * * @param int $val The completedBlackAndWhiteJobCount * * @return PrintUsage */ public function setCompletedBlackAndWhiteJobCount($val) { $this->_propDict["completedBlackAndWhiteJobCount"] = intval($val); return $this; } /** * Gets the completedColorJobCount * * @return int|null The completedColorJobCount */ public function getCompletedColorJobCount() { if (array_key_exists("completedColorJobCount", $this->_propDict)) { return $this->_propDict["completedColorJobCount"]; } else { return null; } } /** * Sets the completedColorJobCount * * @param int $val The completedColorJobCount * * @return PrintUsage */ public function setCompletedColorJobCount($val) { $this->_propDict["completedColorJobCount"] = intval($val); return $this; } /** * Gets the incompleteJobCount * * @return int|null The incompleteJobCount */ public function getIncompleteJobCount() { if (array_key_exists("incompleteJobCount", $this->_propDict)) { return $this->_propDict["incompleteJobCount"]; } else { return null; } } /** * Sets the incompleteJobCount * * @param int $val The incompleteJobCount * * @return PrintUsage */ public function setIncompleteJobCount($val) { $this->_propDict["incompleteJobCount"] = intval($val); return $this; } /** * Gets the usageDate * * @return \DateTime|null The usageDate */ public function getUsageDate() { if (array_key_exists("usageDate", $this->_propDict)) { if (is_a($this->_propDict["usageDate"], "\DateTime") || is_null($this->_propDict["usageDate"])) { return $this->_propDict["usageDate"]; } else { $this->_propDict["usageDate"] = new \DateTime($this->_propDict["usageDate"]); return $this->_propDict["usageDate"]; } } return null; } /** * Sets the usageDate * * @param \DateTime $val The usageDate * * @return PrintUsage */ public function setUsageDate($val) { $this->_propDict["usageDate"] = $val; return $this; } }
Save
Back