Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

PublicNetworkModify

Public Network Modifiable Details.

Properties

Name Type Description Notes
name str A friendly name given to the network. This name should be unique. [optional]
description str The description of this public network [optional]
ra_enabled bool Boolean indicating whether Router Advertisement is enabled. Only applicable for Network with IPv6 Blocks. [optional]

Example

from pnap_network_api.models.public_network_modify import PublicNetworkModify

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

# convert the object into a dict
public_network_modify_dict = public_network_modify_instance.to_dict()
# create an instance of PublicNetworkModify from a dict
public_network_modify_from_dict = PublicNetworkModify.from_dict(public_network_modify_dict)

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