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 :
ServerIp.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 ServerIp { /** * The IP address in Plesk database (IP v4). * * @Type("string") * @var string */ public $ipv4; /** * The IP address in Plesk database (IP v6). * * @Type("string") * @var string */ public $ipv6; /** * The netmask of the network. * * @Type("string") * @var string */ public $netmask; /** * The server network interface name. * * @Type("string") * @var string */ public $interface; /** * The type of IP address. Allowed values: shared | exclusive. * * @Type("string") * @var string */ public $type; }