| Name | Type | Description | Notes |
|---|---|---|---|
| tls_client_profile | TLSProfile | [optional] | |
| udp_profile | UdpProfile | [optional] | |
| links | List[APILink] | [optional] |
from cyperf.models.dtls_settings import DTLSSettings
# TODO update the JSON string below
json = "{}"
# create an instance of DTLSSettings from a JSON string
dtls_settings_instance = DTLSSettings.from_json(json)
# print the JSON string representation of the object
print(DTLSSettings.to_json())
# convert the object into a dict
dtls_settings_dict = dtls_settings_instance.to_dict()
# create an instance of DTLSSettings from a dict
dtls_settings_from_dict = DTLSSettings.from_dict(dtls_settings_dict)