Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

PrivateNetworkServer

Server details linked to the Private Network.

Properties

Name Type Description Notes
id str The server identifier.
ips List[str] List of private IPs associated to the server.

Example

from pnap_network_api.models.private_network_server import PrivateNetworkServer

# TODO update the JSON string below
json = "{}"
# create an instance of PrivateNetworkServer from a JSON string
private_network_server_instance = PrivateNetworkServer.from_json(json)
# print the JSON string representation of the object
print(PrivateNetworkServer.to_json())

# convert the object into a dict
private_network_server_dict = private_network_server_instance.to_dict()
# create an instance of PrivateNetworkServer from a dict
private_network_server_from_dict = PrivateNetworkServer.from_dict(private_network_server_dict)

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