Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

PublicNetworkIpBlockCreate

Details of IP block to be assigned to Public Network.

Properties

Name Type Description Notes
id str The IP Block identifier.

Example

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)

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