Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 962 Bytes

File metadata and controls

29 lines (20 loc) · 962 Bytes

ClientIpRangeData

Properties

Name Type Description Notes
data ClientIpRange

Example

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)

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