Details of IP block to be assigned to Public Network.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The IP Block identifier. |
from pnap_network_api.models.public_network_ip_block_create import PublicNetworkIpBlockCreate
# TODO update the JSON string below
json = "{}"
# create an instance of PublicNetworkIpBlockCreate from a JSON string
public_network_ip_block_create_instance = PublicNetworkIpBlockCreate.from_json(json)
# print the JSON string representation of the object
print(PublicNetworkIpBlockCreate.to_json())
# convert the object into a dict
public_network_ip_block_create_dict = public_network_ip_block_create_instance.to_dict()
# create an instance of PublicNetworkIpBlockCreate from a dict
public_network_ip_block_create_from_dict = PublicNetworkIpBlockCreate.from_dict(public_network_ip_block_create_dict)