for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// Copyright 1999-2016. Parallels IP Holdings GmbH.
namespace PleskX\Api\Struct\Database;
class Info extends \PleskX\Api\Struct
{
/** @var integer */
public $id;
/** @var string */
public $name;
public $type;
public $webspaceId;
public $dbServerId;
public $defaultUserId;
public function __construct($apiResponse)
$this->_initScalarProperties($apiResponse, [
'id',
'name',
'type',
'webspace-id',
'db-server-id',
'default-user-id',
]);
}