Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

TunnelSettings

Properties

Name Type Description Notes
var_auth_settings AuthSettings [optional]
outer_tcp_profile TcpProfile [optional]
links List[APILink] [optional]

Example

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)

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