Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

DeleteIpBlockResult

Result of a successful delete action.

Properties

Name Type Description Notes
result str IP Block has been deleted. [optional]
ip_block_id str The unique identifier of the IP Block. [optional]

Example

from pnap_ip_api.models.delete_ip_block_result import DeleteIpBlockResult

# TODO update the JSON string below
json = "{}"
# create an instance of DeleteIpBlockResult from a JSON string
delete_ip_block_result_instance = DeleteIpBlockResult.from_json(json)
# print the JSON string representation of the object
print(DeleteIpBlockResult.to_json())

# convert the object into a dict
delete_ip_block_result_dict = delete_ip_block_result_instance.to_dict()
# create an instance of DeleteIpBlockResult from a dict
delete_ip_block_result_from_dict = DeleteIpBlockResult.from_dict(delete_ip_block_result_dict)

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