Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.2 KB

File metadata and controls

35 lines (26 loc) · 1.2 KB

QUICProfile

Properties

Name Type Description Notes
client_tls_profile TLSProfile [optional]
min_rto int [optional]
name str The name of the QUIC profile. [optional]
quic_version QUICVersion [optional]
rx_buffer int [optional]
server_tls_profile TLSProfile [optional]
links List[APILink] [optional]

Example

from cyperf.models.quic_profile import QUICProfile

# TODO update the JSON string below
json = "{}"
# create an instance of QUICProfile from a JSON string
quic_profile_instance = QUICProfile.from_json(json)
# print the JSON string representation of the object
print(QUICProfile.to_json())

# convert the object into a dict
quic_profile_dict = quic_profile_instance.to_dict()
# create an instance of QUICProfile from a dict
quic_profile_from_dict = QUICProfile.from_dict(quic_profile_dict)

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