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\Statistics;
class Memory extends \PleskX\Api\Struct
{
/** @var int */
public $total;
public $used;
public $free;
public $shared;
public $buffer;
public $cached;
public function __construct($apiResponse)
$this->_initScalarProperties($apiResponse, [
'total',
'used',
'free',
'shared',
'buffer',
'cached',
]);
}