FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: AccessReviewSet.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * AccessReviewSet 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; /** * AccessReviewSet 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 AccessReviewSet extends Entity { /** * Gets the definitions * Represents the template and scheduling for an access review. * * @return array|null The definitions */ public function getDefinitions() { if (array_key_exists("definitions", $this->_propDict)) { return $this->_propDict["definitions"]; } else { return null; } } /** * Sets the definitions * Represents the template and scheduling for an access review. * * @param AccessReviewScheduleDefinition[] $val The definitions * * @return AccessReviewSet */ public function setDefinitions($val) { $this->_propDict["definitions"] = $val; return $this; } /** * Gets the historyDefinitions * Represents a collection of access review history data and the scopes used to collect that data. * * @return array|null The historyDefinitions */ public function getHistoryDefinitions() { if (array_key_exists("historyDefinitions", $this->_propDict)) { return $this->_propDict["historyDefinitions"]; } else { return null; } } /** * Sets the historyDefinitions * Represents a collection of access review history data and the scopes used to collect that data. * * @param AccessReviewHistoryDefinition[] $val The historyDefinitions * * @return AccessReviewSet */ public function setHistoryDefinitions($val) { $this->_propDict["historyDefinitions"] = $val; return $this; } }
Save
Back