Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

File metadata and controls

34 lines (25 loc) · 1.12 KB

ServerIp

Server IP Addresses

Properties

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.

Example

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)

[Back to Model list] [Back to API list] [Back to README]