FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: PrintDocument.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * PrintDocument 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; /** * PrintDocument 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 PrintDocument extends Entity { /** * Gets the contentType * The document's content (MIME) type. Read-only. * * @return string|null The contentType */ public function getContentType() { if (array_key_exists("contentType", $this->_propDict)) { return $this->_propDict["contentType"]; } else { return null; } } /** * Sets the contentType * The document's content (MIME) type. Read-only. * * @param string $val The contentType * * @return PrintDocument */ public function setContentType($val) { $this->_propDict["contentType"] = $val; return $this; } /** * Gets the displayName * The document's name. Read-only. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The document's name. Read-only. * * @param string $val The displayName * * @return PrintDocument */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the size * The document's size in bytes. Read-only. * * @return int|null The size */ public function getSize() { if (array_key_exists("size", $this->_propDict)) { return $this->_propDict["size"]; } else { return null; } } /** * Sets the size * The document's size in bytes. Read-only. * * @param int $val The size * * @return PrintDocument */ public function setSize($val) { $this->_propDict["size"] = intval($val); return $this; } }
Save
Back