1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedMobileApp.php

90 lines
2.4 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ManagedMobileApp 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 Beta\Microsoft\Graph\Model;
/**
* ManagedMobileApp 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 ManagedMobileApp extends Entity
{
/**
* Gets the mobileAppIdentifier
* The identifier for an app with it's operating system type.
*
* @return MobileAppIdentifier|null The mobileAppIdentifier
*/
public function getMobileAppIdentifier()
{
if (array_key_exists("mobileAppIdentifier", $this->_propDict)) {
if (is_a($this->_propDict["mobileAppIdentifier"], "\Beta\Microsoft\Graph\Model\MobileAppIdentifier") || is_null($this->_propDict["mobileAppIdentifier"])) {
return $this->_propDict["mobileAppIdentifier"];
} else {
$this->_propDict["mobileAppIdentifier"] = new MobileAppIdentifier($this->_propDict["mobileAppIdentifier"]);
return $this->_propDict["mobileAppIdentifier"];
}
}
return null;
}
/**
* Sets the mobileAppIdentifier
* The identifier for an app with it's operating system type.
*
* @param MobileAppIdentifier $val The mobileAppIdentifier
*
* @return ManagedMobileApp
*/
public function setMobileAppIdentifier($val)
{
$this->_propDict["mobileAppIdentifier"] = $val;
return $this;
}
/**
* Gets the version
* Version of the entity.
*
* @return string|null The version
*/
public function getVersion()
{
if (array_key_exists("version", $this->_propDict)) {
return $this->_propDict["version"];
} else {
return null;
}
}
/**
* Sets the version
* Version of the entity.
*
* @param string $val The version
*
* @return ManagedMobileApp
*/
public function setVersion($val)
{
$this->_propDict["version"] = $val;
return $this;
}
}