D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
rest-api
/
v2
/
externals
/
Entity
/
Filename :
ServerMeta.php
back
Copy
<?php // Copyright 1999-2024. WebPros International GmbH. All rights reserved. namespace PleskExt\RestApi\v2\Entity; use PleskRestApi\JMS\Serializer\Annotation\Type; class ServerMeta { /** * Server platform type. * * @Type("string") * @var string */ public $platform; /** * Server hostname. * * @Type("string") * @var string */ public $hostname; /** * Server GUID. * * @Type("string") * @var string */ public $guid; /** * Product version. * * @Type("string") * @var string */ public $panel_version; /** * Product build revision. * * @Type("string") * @var string */ public $panel_revision; /** * Product build date. * * @Type("string") * @var string */ public $panel_build_date; /** * Product installed update version. * * @Type("string") * @var string */ public $panel_update_version; /** * REST API extension version. * * @Type("string") * @var string */ public $extension_version; /** * REST API extension release number. * * @Type("string") * @var string */ public $extension_release; }