Server IP Addresses
| Name | Type | Description | Notes |
|---|---|---|---|
| ipv4 | str | The IP address in Plesk database (IPv4). | [optional] |
| ipv6 | str | The IP address in Plesk database (IPv6). | [optional] |
| netmask | str | The netmask of the network. | |
| interface | str | The server network interface name. | |
| type | str | The type of IP address. Allowed values: shared | exclusive. |
from plesk_client.models.server_ip import ServerIp
# TODO update the JSON string below
json = "{}"
# create an instance of ServerIp from a JSON string
server_ip_instance = ServerIp.from_json(json)
# print the JSON string representation of the object
print(ServerIp.to_json())
# convert the object into a dict
server_ip_dict = server_ip_instance.to_dict()
# create an instance of ServerIp from a dict
server_ip_from_dict = ServerIp.from_dict(server_ip_dict)