Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1021 Bytes

File metadata and controls

31 lines (22 loc) · 1021 Bytes

DTLSSettings

Properties

Name Type Description Notes
tls_client_profile TLSProfile [optional]
udp_profile UdpProfile [optional]
links List[APILink] [optional]

Example

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)

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