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

83 lines
2.3 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* RevokeAppleVppLicensesActionResult 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;
/**
* RevokeAppleVppLicensesActionResult 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 RevokeAppleVppLicensesActionResult extends DeviceActionResult
{
/**
* Gets the failedLicensesCount
* Total number of Apple Vpp licenses that failed to revoke
*
* @return int|null The failedLicensesCount
*/
public function getFailedLicensesCount()
{
if (array_key_exists("failedLicensesCount", $this->_propDict)) {
return $this->_propDict["failedLicensesCount"];
} else {
return null;
}
}
/**
* Sets the failedLicensesCount
* Total number of Apple Vpp licenses that failed to revoke
*
* @param int $val The value of the failedLicensesCount
*
* @return RevokeAppleVppLicensesActionResult
*/
public function setFailedLicensesCount($val)
{
$this->_propDict["failedLicensesCount"] = $val;
return $this;
}
/**
* Gets the totalLicensesCount
* Total number of Apple Vpp licenses associated
*
* @return int|null The totalLicensesCount
*/
public function getTotalLicensesCount()
{
if (array_key_exists("totalLicensesCount", $this->_propDict)) {
return $this->_propDict["totalLicensesCount"];
} else {
return null;
}
}
/**
* Sets the totalLicensesCount
* Total number of Apple Vpp licenses associated
*
* @param int $val The value of the totalLicensesCount
*
* @return RevokeAppleVppLicensesActionResult
*/
public function setTotalLicensesCount($val)
{
$this->_propDict["totalLicensesCount"] = $val;
return $this;
}
}