IP Block patch.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | The description of the Ip Block. | [optional] |
from pnap_ip_api.models.ip_block_patch import IpBlockPatch
# TODO update the JSON string below
json = "{}"
# create an instance of IpBlockPatch from a JSON string
ip_block_patch_instance = IpBlockPatch.from_json(json)
# print the JSON string representation of the object
print(IpBlockPatch.to_json())
# convert the object into a dict
ip_block_patch_dict = ip_block_patch_instance.to_dict()
# create an instance of IpBlockPatch from a dict
ip_block_patch_from_dict = IpBlockPatch.from_dict(ip_block_patch_dict)