| Name | Type | Description | Notes |
|---|---|---|---|
| data | ClientPort |
from watchtowr_api_sdk.models.client_port_data import ClientPortData
# TODO update the JSON string below
json = "{}"
# create an instance of ClientPortData from a JSON string
client_port_data_instance = ClientPortData.from_json(json)
# print the JSON string representation of the object
print(ClientPortData.to_json())
# convert the object into a dict
client_port_data_dict = client_port_data_instance.to_dict()
# create an instance of ClientPortData from a dict
client_port_data_from_dict = ClientPortData.from_dict(client_port_data_dict)