for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// Copyright 1999-2021. Plesk International GmbH.
namespace PleskX\Api\Struct\Server;
class UpdatesInfo extends \PleskX\Api\Struct
{
/** @var string */
public $lastInstalledUpdate;
/** @var bool */
public $installUpdatesAutomatically;
public function __construct($apiResponse)
$this->_initScalarProperties($apiResponse, [
'last_installed_update',
'install_updates_automatically',
]);
}