| 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] |
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)