Public Network Modifiable Details.
| 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] |
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)