FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: AgreementFile.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * AgreementFile 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; /** * AgreementFile 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 AgreementFile extends AgreementFileProperties { /** * Gets the localizations * The localized version of the terms of use agreement files attached to the agreement. * * @return array|null The localizations */ public function getLocalizations() { if (array_key_exists("localizations", $this->_propDict)) { return $this->_propDict["localizations"]; } else { return null; } } /** * Sets the localizations * The localized version of the terms of use agreement files attached to the agreement. * * @param AgreementFileLocalization[] $val The localizations * * @return AgreementFile */ public function setLocalizations($val) { $this->_propDict["localizations"] = $val; return $this; } }
Save
Back