| Name | Type | Description | Notes |
|---|---|---|---|
| var_auth_settings | AuthSettings | [optional] | |
| outer_tcp_profile | TcpProfile | [optional] | |
| links | List[APILink] | [optional] |
from cyperf.models.tunnel_settings import TunnelSettings
# TODO update the JSON string below
json = "{}"
# create an instance of TunnelSettings from a JSON string
tunnel_settings_instance = TunnelSettings.from_json(json)
# print the JSON string representation of the object
print(TunnelSettings.to_json())
# convert the object into a dict
tunnel_settings_dict = tunnel_settings_instance.to_dict()
# create an instance of TunnelSettings from a dict
tunnel_settings_from_dict = TunnelSettings.from_dict(tunnel_settings_dict)