| Name | Type | Description | Notes |
|---|---|---|---|
| data | ClientIpRange |
from watchtowr_api_sdk.models.client_ip_range_data import ClientIpRangeData
# TODO update the JSON string below
json = "{}"
# create an instance of ClientIpRangeData from a JSON string
client_ip_range_data_instance = ClientIpRangeData.from_json(json)
# print the JSON string representation of the object
print(ClientIpRangeData.to_json())
# convert the object into a dict
client_ip_range_data_dict = client_ip_range_data_instance.to_dict()
# create an instance of ClientIpRangeData from a dict
client_ip_range_data_from_dict = ClientIpRangeData.from_dict(client_ip_range_data_dict)