Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Win32LobAppMsiInformation 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;
/**
* Win32LobAppMsiInformation 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 Win32LobAppMsiInformation extends Entity
{
/**
* Gets the packageType
* The MSI package type. Possible values are: perMachine, perUser, dualPurpose.
*
* @return Win32LobAppMsiPackageType|null The packageType
*/
public function getPackageType()
{
if (array_key_exists("packageType", $this->_propDict)) {
if (is_a($this->_propDict["packageType"], "\Microsoft\Graph\Model\Win32LobAppMsiPackageType") || is_null($this->_propDict["packageType"])) {
return $this->_propDict["packageType"];
} else {
$this->_propDict["packageType"] = new Win32LobAppMsiPackageType($this->_propDict["packageType"]);
return $this->_propDict["packageType"];
}
}
return null;
}
/**
* Sets the packageType
* The MSI package type. Possible values are: perMachine, perUser, dualPurpose.
*
* @param Win32LobAppMsiPackageType $val The value to assign to the packageType
*
* @return Win32LobAppMsiInformation The Win32LobAppMsiInformation
*/
public function setPackageType($val)
{
$this->_propDict["packageType"] = $val;
return $this;
}
/**
* Gets the productCode
* The MSI product code.
*
* @return string|null The productCode
*/
public function getProductCode()
{
if (array_key_exists("productCode", $this->_propDict)) {
return $this->_propDict["productCode"];
} else {
return null;
}
}
/**
* Sets the productCode
* The MSI product code.
*
* @param string $val The value of the productCode
*
* @return Win32LobAppMsiInformation
*/
public function setProductCode($val)
{
$this->_propDict["productCode"] = $val;
return $this;
}
/**
* Gets the productName
* The MSI product name.
*
* @return string|null The productName
*/
public function getProductName()
{
if (array_key_exists("productName", $this->_propDict)) {
return $this->_propDict["productName"];
} else {
return null;
}
}
/**
* Sets the productName
* The MSI product name.
*
* @param string $val The value of the productName
*
* @return Win32LobAppMsiInformation
*/
public function setProductName($val)
{
$this->_propDict["productName"] = $val;
return $this;
}
/**
* Gets the productVersion
* The MSI product version.
*
* @return string|null The productVersion
*/
public function getProductVersion()
{
if (array_key_exists("productVersion", $this->_propDict)) {
return $this->_propDict["productVersion"];
} else {
return null;
}
}
/**
* Sets the productVersion
* The MSI product version.
*
* @param string $val The value of the productVersion
*
* @return Win32LobAppMsiInformation
*/
public function setProductVersion($val)
{
$this->_propDict["productVersion"] = $val;
return $this;
}
/**
* Gets the publisher
* The MSI publisher.
*
* @return string|null The publisher
*/
public function getPublisher()
{
if (array_key_exists("publisher", $this->_propDict)) {
return $this->_propDict["publisher"];
} else {
return null;
}
}
/**
* Sets the publisher
* The MSI publisher.
*
* @param string $val The value of the publisher
*
* @return Win32LobAppMsiInformation
*/
public function setPublisher($val)
{
$this->_propDict["publisher"] = $val;
return $this;
}
/**
* Gets the requiresReboot
* Whether the MSI app requires the machine to reboot to complete installation.
*
* @return bool|null The requiresReboot
*/
public function getRequiresReboot()
{
if (array_key_exists("requiresReboot", $this->_propDict)) {
return $this->_propDict["requiresReboot"];
} else {
return null;
}
}
/**
* Sets the requiresReboot
* Whether the MSI app requires the machine to reboot to complete installation.
*
* @param bool $val The value of the requiresReboot
*
* @return Win32LobAppMsiInformation
*/
public function setRequiresReboot($val)
{
$this->_propDict["requiresReboot"] = $val;
return $this;
}
/**
* Gets the upgradeCode
* The MSI upgrade code.
*
* @return string|null The upgradeCode
*/
public function getUpgradeCode()
{
if (array_key_exists("upgradeCode", $this->_propDict)) {
return $this->_propDict["upgradeCode"];
} else {
return null;
}
}
/**
* Sets the upgradeCode
* The MSI upgrade code.
*
* @param string $val The value of the upgradeCode
*
* @return Win32LobAppMsiInformation
*/
public function setUpgradeCode($val)
{
$this->_propDict["upgradeCode"] = $val;
return $this;
}
}