The assigned IP block to the Public Network.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The IP Block identifier. | |
| cidr | str | The CIDR notation of the IP block. | |
| used_ips_count | str | The number of IPs used in the IP block. |
from pnap_network_api.models.public_network_ip_block import PublicNetworkIpBlock
# TODO update the JSON string below
json = "{}"
# create an instance of PublicNetworkIpBlock from a JSON string
public_network_ip_block_instance = PublicNetworkIpBlock.from_json(json)
# print the JSON string representation of the object
print(PublicNetworkIpBlock.to_json())
# convert the object into a dict
public_network_ip_block_dict = public_network_ip_block_instance.to_dict()
# create an instance of PublicNetworkIpBlock from a dict
public_network_ip_block_from_dict = PublicNetworkIpBlock.from_dict(public_network_ip_block_dict)