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.
*
* PrintJobConfiguration 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;
/**
* PrintJobConfiguration 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 PrintJobConfiguration extends Entity
{
/**
* Gets the collate
* Whether the printer should collate pages wehen printing multiple copies of a multi-page document.
*
* @return bool|null The collate
*/
public function getCollate()
{
if (array_key_exists("collate", $this->_propDict)) {
return $this->_propDict["collate"];
} else {
return null;
}
}
/**
* Sets the collate
* Whether the printer should collate pages wehen printing multiple copies of a multi-page document.
*
* @param bool $val The value of the collate
*
* @return PrintJobConfiguration
*/
public function setCollate($val)
{
$this->_propDict["collate"] = $val;
return $this;
}
/**
* Gets the colorMode
* The color mode the printer should use to print the job. Valid values are described in the table below. Read-only.
*
* @return PrintColorMode|null The colorMode
*/
public function getColorMode()
{
if (array_key_exists("colorMode", $this->_propDict)) {
if (is_a($this->_propDict["colorMode"], "\Microsoft\Graph\Model\PrintColorMode") || is_null($this->_propDict["colorMode"])) {
return $this->_propDict["colorMode"];
} else {
$this->_propDict["colorMode"] = new PrintColorMode($this->_propDict["colorMode"]);
return $this->_propDict["colorMode"];
}
}
return null;
}
/**
* Sets the colorMode
* The color mode the printer should use to print the job. Valid values are described in the table below. Read-only.
*
* @param PrintColorMode $val The value to assign to the colorMode
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setColorMode($val)
{
$this->_propDict["colorMode"] = $val;
return $this;
}
/**
* Gets the copies
* The number of copies that should be printed. Read-only.
*
* @return int|null The copies
*/
public function getCopies()
{
if (array_key_exists("copies", $this->_propDict)) {
return $this->_propDict["copies"];
} else {
return null;
}
}
/**
* Sets the copies
* The number of copies that should be printed. Read-only.
*
* @param int $val The value of the copies
*
* @return PrintJobConfiguration
*/
public function setCopies($val)
{
$this->_propDict["copies"] = $val;
return $this;
}
/**
* Gets the dpi
* The resolution to use when printing the job, expressed in dots per inch (DPI). Read-only.
*
* @return int|null The dpi
*/
public function getDpi()
{
if (array_key_exists("dpi", $this->_propDict)) {
return $this->_propDict["dpi"];
} else {
return null;
}
}
/**
* Sets the dpi
* The resolution to use when printing the job, expressed in dots per inch (DPI). Read-only.
*
* @param int $val The value of the dpi
*
* @return PrintJobConfiguration
*/
public function setDpi($val)
{
$this->_propDict["dpi"] = $val;
return $this;
}
/**
* Gets the duplexMode
* The duplex mode the printer should use when printing the job. Valid values are described in the table below. Read-only.
*
* @return PrintDuplexMode|null The duplexMode
*/
public function getDuplexMode()
{
if (array_key_exists("duplexMode", $this->_propDict)) {
if (is_a($this->_propDict["duplexMode"], "\Microsoft\Graph\Model\PrintDuplexMode") || is_null($this->_propDict["duplexMode"])) {
return $this->_propDict["duplexMode"];
} else {
$this->_propDict["duplexMode"] = new PrintDuplexMode($this->_propDict["duplexMode"]);
return $this->_propDict["duplexMode"];
}
}
return null;
}
/**
* Sets the duplexMode
* The duplex mode the printer should use when printing the job. Valid values are described in the table below. Read-only.
*
* @param PrintDuplexMode $val The value to assign to the duplexMode
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setDuplexMode($val)
{
$this->_propDict["duplexMode"] = $val;
return $this;
}
/**
* Gets the feedOrientation
* The orientation to use when feeding media into the printer. Valid values are described in the following table. Read-only.
*
* @return PrinterFeedOrientation|null The feedOrientation
*/
public function getFeedOrientation()
{
if (array_key_exists("feedOrientation", $this->_propDict)) {
if (is_a($this->_propDict["feedOrientation"], "\Microsoft\Graph\Model\PrinterFeedOrientation") || is_null($this->_propDict["feedOrientation"])) {
return $this->_propDict["feedOrientation"];
} else {
$this->_propDict["feedOrientation"] = new PrinterFeedOrientation($this->_propDict["feedOrientation"]);
return $this->_propDict["feedOrientation"];
}
}
return null;
}
/**
* Sets the feedOrientation
* The orientation to use when feeding media into the printer. Valid values are described in the following table. Read-only.
*
* @param PrinterFeedOrientation $val The value to assign to the feedOrientation
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setFeedOrientation($val)
{
$this->_propDict["feedOrientation"] = $val;
return $this;
}
/**
* Gets the finishings
* Finishing processes to use when printing.
*
* @return PrintFinishing|null The finishings
*/
public function getFinishings()
{
if (array_key_exists("finishings", $this->_propDict)) {
if (is_a($this->_propDict["finishings"], "\Microsoft\Graph\Model\PrintFinishing") || is_null($this->_propDict["finishings"])) {
return $this->_propDict["finishings"];
} else {
$this->_propDict["finishings"] = new PrintFinishing($this->_propDict["finishings"]);
return $this->_propDict["finishings"];
}
}
return null;
}
/**
* Sets the finishings
* Finishing processes to use when printing.
*
* @param PrintFinishing $val The value to assign to the finishings
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setFinishings($val)
{
$this->_propDict["finishings"] = $val;
return $this;
}
/**
* Gets the fitPdfToPage
*
* @return bool|null The fitPdfToPage
*/
public function getFitPdfToPage()
{
if (array_key_exists("fitPdfToPage", $this->_propDict)) {
return $this->_propDict["fitPdfToPage"];
} else {
return null;
}
}
/**
* Sets the fitPdfToPage
*
* @param bool $val The value of the fitPdfToPage
*
* @return PrintJobConfiguration
*/
public function setFitPdfToPage($val)
{
$this->_propDict["fitPdfToPage"] = $val;
return $this;
}
/**
* Gets the inputBin
* The input bin (tray) to use when printing. See the printer's capabilities for a list of supported input bins.
*
* @return string|null The inputBin
*/
public function getInputBin()
{
if (array_key_exists("inputBin", $this->_propDict)) {
return $this->_propDict["inputBin"];
} else {
return null;
}
}
/**
* Sets the inputBin
* The input bin (tray) to use when printing. See the printer's capabilities for a list of supported input bins.
*
* @param string $val The value of the inputBin
*
* @return PrintJobConfiguration
*/
public function setInputBin($val)
{
$this->_propDict["inputBin"] = $val;
return $this;
}
/**
* Gets the margin
* The margin settings to use when printing.
*
* @return PrintMargin|null The margin
*/
public function getMargin()
{
if (array_key_exists("margin", $this->_propDict)) {
if (is_a($this->_propDict["margin"], "\Microsoft\Graph\Model\PrintMargin") || is_null($this->_propDict["margin"])) {
return $this->_propDict["margin"];
} else {
$this->_propDict["margin"] = new PrintMargin($this->_propDict["margin"]);
return $this->_propDict["margin"];
}
}
return null;
}
/**
* Sets the margin
* The margin settings to use when printing.
*
* @param PrintMargin $val The value to assign to the margin
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setMargin($val)
{
$this->_propDict["margin"] = $val;
return $this;
}
/**
* Gets the mediaSize
* The media size to use when printing. Supports standard size names for ISO and ANSI media sizes.
*
* @return string|null The mediaSize
*/
public function getMediaSize()
{
if (array_key_exists("mediaSize", $this->_propDict)) {
return $this->_propDict["mediaSize"];
} else {
return null;
}
}
/**
* Sets the mediaSize
* The media size to use when printing. Supports standard size names for ISO and ANSI media sizes.
*
* @param string $val The value of the mediaSize
*
* @return PrintJobConfiguration
*/
public function setMediaSize($val)
{
$this->_propDict["mediaSize"] = $val;
return $this;
}
/**
* Gets the mediaType
*
* @return string|null The mediaType
*/
public function getMediaType()
{
if (array_key_exists("mediaType", $this->_propDict)) {
return $this->_propDict["mediaType"];
} else {
return null;
}
}
/**
* Sets the mediaType
*
* @param string $val The value of the mediaType
*
* @return PrintJobConfiguration
*/
public function setMediaType($val)
{
$this->_propDict["mediaType"] = $val;
return $this;
}
/**
* Gets the multipageLayout
*
* @return PrintMultipageLayout|null The multipageLayout
*/
public function getMultipageLayout()
{
if (array_key_exists("multipageLayout", $this->_propDict)) {
if (is_a($this->_propDict["multipageLayout"], "\Microsoft\Graph\Model\PrintMultipageLayout") || is_null($this->_propDict["multipageLayout"])) {
return $this->_propDict["multipageLayout"];
} else {
$this->_propDict["multipageLayout"] = new PrintMultipageLayout($this->_propDict["multipageLayout"]);
return $this->_propDict["multipageLayout"];
}
}
return null;
}
/**
* Sets the multipageLayout
*
* @param PrintMultipageLayout $val The value to assign to the multipageLayout
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setMultipageLayout($val)
{
$this->_propDict["multipageLayout"] = $val;
return $this;
}
/**
* Gets the orientation
*
* @return PrintOrientation|null The orientation
*/
public function getOrientation()
{
if (array_key_exists("orientation", $this->_propDict)) {
if (is_a($this->_propDict["orientation"], "\Microsoft\Graph\Model\PrintOrientation") || is_null($this->_propDict["orientation"])) {
return $this->_propDict["orientation"];
} else {
$this->_propDict["orientation"] = new PrintOrientation($this->_propDict["orientation"]);
return $this->_propDict["orientation"];
}
}
return null;
}
/**
* Sets the orientation
*
* @param PrintOrientation $val The value to assign to the orientation
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setOrientation($val)
{
$this->_propDict["orientation"] = $val;
return $this;
}
/**
* Gets the outputBin
*
* @return string|null The outputBin
*/
public function getOutputBin()
{
if (array_key_exists("outputBin", $this->_propDict)) {
return $this->_propDict["outputBin"];
} else {
return null;
}
}
/**
* Sets the outputBin
*
* @param string $val The value of the outputBin
*
* @return PrintJobConfiguration
*/
public function setOutputBin($val)
{
$this->_propDict["outputBin"] = $val;
return $this;
}
/**
* Gets the pageRanges
*
* @return IntegerRange|null The pageRanges
*/
public function getPageRanges()
{
if (array_key_exists("pageRanges", $this->_propDict)) {
if (is_a($this->_propDict["pageRanges"], "\Microsoft\Graph\Model\IntegerRange") || is_null($this->_propDict["pageRanges"])) {
return $this->_propDict["pageRanges"];
} else {
$this->_propDict["pageRanges"] = new IntegerRange($this->_propDict["pageRanges"]);
return $this->_propDict["pageRanges"];
}
}
return null;
}
/**
* Sets the pageRanges
*
* @param IntegerRange $val The value to assign to the pageRanges
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setPageRanges($val)
{
$this->_propDict["pageRanges"] = $val;
return $this;
}
/**
* Gets the pagesPerSheet
*
* @return int|null The pagesPerSheet
*/
public function getPagesPerSheet()
{
if (array_key_exists("pagesPerSheet", $this->_propDict)) {
return $this->_propDict["pagesPerSheet"];
} else {
return null;
}
}
/**
* Sets the pagesPerSheet
*
* @param int $val The value of the pagesPerSheet
*
* @return PrintJobConfiguration
*/
public function setPagesPerSheet($val)
{
$this->_propDict["pagesPerSheet"] = $val;
return $this;
}
/**
* Gets the quality
*
* @return PrintQuality|null The quality
*/
public function getQuality()
{
if (array_key_exists("quality", $this->_propDict)) {
if (is_a($this->_propDict["quality"], "\Microsoft\Graph\Model\PrintQuality") || is_null($this->_propDict["quality"])) {
return $this->_propDict["quality"];
} else {
$this->_propDict["quality"] = new PrintQuality($this->_propDict["quality"]);
return $this->_propDict["quality"];
}
}
return null;
}
/**
* Sets the quality
*
* @param PrintQuality $val The value to assign to the quality
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setQuality($val)
{
$this->_propDict["quality"] = $val;
return $this;
}
/**
* Gets the scaling
*
* @return PrintScaling|null The scaling
*/
public function getScaling()
{
if (array_key_exists("scaling", $this->_propDict)) {
if (is_a($this->_propDict["scaling"], "\Microsoft\Graph\Model\PrintScaling") || is_null($this->_propDict["scaling"])) {
return $this->_propDict["scaling"];
} else {
$this->_propDict["scaling"] = new PrintScaling($this->_propDict["scaling"]);
return $this->_propDict["scaling"];
}
}
return null;
}
/**
* Sets the scaling
*
* @param PrintScaling $val The value to assign to the scaling
*
* @return PrintJobConfiguration The PrintJobConfiguration
*/
public function setScaling($val)
{
$this->_propDict["scaling"] = $val;
return $this;
}
}