| Name | Type | Description | Notes |
|---|---|---|---|
| var_auth_settings | AuthSettings | [optional] | |
| outer_tcp_profile | TcpProfile | [optional] | |
| links | List[APILink] | [optional] | |
| fortinet_encapsulation | FortinetEncapsulation | [optional] | |
| outer_tls_client_profile | TLSProfile | [optional] | |
| vpn_gateway | str | [optional] |
from cyperf.models.fortinet_settings import FortinetSettings
# TODO update the JSON string below
json = "{}"
# create an instance of FortinetSettings from a JSON string
fortinet_settings_instance = FortinetSettings.from_json(json)
# print the JSON string representation of the object
print(FortinetSettings.to_json())
# convert the object into a dict
fortinet_settings_dict = fortinet_settings_instance.to_dict()
# create an instance of FortinetSettings from a dict
fortinet_settings_from_dict = FortinetSettings.from_dict(fortinet_settings_dict)