| Name | Type | Description | Notes |
|---|---|---|---|
| automatic | bool | ||
| automatic_destination_port | bool | ||
| automatic_forward_proxy_port | bool | ||
| destination_port | int | ||
| effective_ports | EffectivePorts | [optional] | |
| forward_proxy_port | int | ||
| readonly | bool | If true, the port can't be selected by the user | [optional] |
| server_listen_port | int | ||
| links | List[APILink] | [optional] |
from cyperf.models.port_settings import PortSettings
# TODO update the JSON string below
json = "{}"
# create an instance of PortSettings from a JSON string
port_settings_instance = PortSettings.from_json(json)
# print the JSON string representation of the object
print(PortSettings.to_json())
# convert the object into a dict
port_settings_dict = port_settings_instance.to_dict()
# create an instance of PortSettings from a dict
port_settings_from_dict = PortSettings.from_dict(port_settings_dict)