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