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

150 lines
5.0 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* MacOsVppAppAssignmentSettings 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;
/**
* MacOsVppAppAssignmentSettings 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 MacOsVppAppAssignmentSettings extends MobileAppAssignmentSettings
{
/**
* Set the @odata.type since this type is immediately descended from an abstract
* type that is referenced as the type in an entity.
* @param array $propDict The property dictionary
*/
public function __construct($propDict = array())
{
parent::__construct($propDict);
$this->setODataType("#microsoft.graph.macOsVppAppAssignmentSettings");
}
/**
* Gets the preventAutoAppUpdate
* When TRUE, indicates that the app should not be automatically updated with the latest version from Apple app store. When FALSE, indicates that the app may be auto updated. By default, this property is set to null which internally is treated as FALSE.
*
* @return bool|null The preventAutoAppUpdate
*/
public function getPreventAutoAppUpdate()
{
if (array_key_exists("preventAutoAppUpdate", $this->_propDict)) {
return $this->_propDict["preventAutoAppUpdate"];
} else {
return null;
}
}
/**
* Sets the preventAutoAppUpdate
* When TRUE, indicates that the app should not be automatically updated with the latest version from Apple app store. When FALSE, indicates that the app may be auto updated. By default, this property is set to null which internally is treated as FALSE.
*
* @param bool $val The value of the preventAutoAppUpdate
*
* @return MacOsVppAppAssignmentSettings
*/
public function setPreventAutoAppUpdate($val)
{
$this->_propDict["preventAutoAppUpdate"] = $val;
return $this;
}
/**
* Gets the preventManagedAppBackup
* When TRUE, indicates that the app should not be backed up to iCloud. When FALSE, indicates that the app may be backed up to iCloud. By default, this property is set to null which internally is treated as FALSE.
*
* @return bool|null The preventManagedAppBackup
*/
public function getPreventManagedAppBackup()
{
if (array_key_exists("preventManagedAppBackup", $this->_propDict)) {
return $this->_propDict["preventManagedAppBackup"];
} else {
return null;
}
}
/**
* Sets the preventManagedAppBackup
* When TRUE, indicates that the app should not be backed up to iCloud. When FALSE, indicates that the app may be backed up to iCloud. By default, this property is set to null which internally is treated as FALSE.
*
* @param bool $val The value of the preventManagedAppBackup
*
* @return MacOsVppAppAssignmentSettings
*/
public function setPreventManagedAppBackup($val)
{
$this->_propDict["preventManagedAppBackup"] = $val;
return $this;
}
/**
* Gets the uninstallOnDeviceRemoval
* Whether or not to uninstall the app when device is removed from Intune.
*
* @return bool|null The uninstallOnDeviceRemoval
*/
public function getUninstallOnDeviceRemoval()
{
if (array_key_exists("uninstallOnDeviceRemoval", $this->_propDict)) {
return $this->_propDict["uninstallOnDeviceRemoval"];
} else {
return null;
}
}
/**
* Sets the uninstallOnDeviceRemoval
* Whether or not to uninstall the app when device is removed from Intune.
*
* @param bool $val The value of the uninstallOnDeviceRemoval
*
* @return MacOsVppAppAssignmentSettings
*/
public function setUninstallOnDeviceRemoval($val)
{
$this->_propDict["uninstallOnDeviceRemoval"] = $val;
return $this;
}
/**
* Gets the useDeviceLicensing
* Whether or not to use device licensing.
*
* @return bool|null The useDeviceLicensing
*/
public function getUseDeviceLicensing()
{
if (array_key_exists("useDeviceLicensing", $this->_propDict)) {
return $this->_propDict["useDeviceLicensing"];
} else {
return null;
}
}
/**
* Sets the useDeviceLicensing
* Whether or not to use device licensing.
*
* @param bool $val The value of the useDeviceLicensing
*
* @return MacOsVppAppAssignmentSettings
*/
public function setUseDeviceLicensing($val)
{
$this->_propDict["useDeviceLicensing"] = $val;
return $this;
}
}