FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: PrintTaskTrigger.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * PrintTaskTrigger 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; /** * PrintTaskTrigger 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 PrintTaskTrigger extends Entity { /** * Gets the event * The Universal Print event that will cause a new printTask to be triggered. Valid values are described in the following table. * * @return PrintEvent|null The event */ public function getEvent() { if (array_key_exists("event", $this->_propDict)) { if (is_a($this->_propDict["event"], "\Microsoft\Graph\Model\PrintEvent") || is_null($this->_propDict["event"])) { return $this->_propDict["event"]; } else { $this->_propDict["event"] = new PrintEvent($this->_propDict["event"]); return $this->_propDict["event"]; } } return null; } /** * Sets the event * The Universal Print event that will cause a new printTask to be triggered. Valid values are described in the following table. * * @param PrintEvent $val The event * * @return PrintTaskTrigger */ public function setEvent($val) { $this->_propDict["event"] = $val; return $this; } /** * Gets the definition * An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. * * @return PrintTaskDefinition|null The definition */ public function getDefinition() { if (array_key_exists("definition", $this->_propDict)) { if (is_a($this->_propDict["definition"], "\Microsoft\Graph\Model\PrintTaskDefinition") || is_null($this->_propDict["definition"])) { return $this->_propDict["definition"]; } else { $this->_propDict["definition"] = new PrintTaskDefinition($this->_propDict["definition"]); return $this->_propDict["definition"]; } } return null; } /** * Sets the definition * An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. * * @param PrintTaskDefinition $val The definition * * @return PrintTaskTrigger */ public function setDefinition($val) { $this->_propDict["definition"] = $val; return $this; } }
Save
Back