| Name | Type | Description | Notes |
|---|---|---|---|
| client_http_profile | HTTPProfile | The client HTTP profile used in the Scenario. | [optional] |
| client_quic_profile | QUICProfile | [optional] | |
| client_tls_profile | TLSProfile | [optional] | |
| client_tcp_profile | TcpProfile | [optional] | |
| ip_tos | int | [optional] | |
| rtp_profile | RTPProfile | [optional] | |
| server_http_profile | HTTPProfile | The server HTTP profile used in the Scenario. | [optional] |
| server_quic_profile | QUICProfile | [optional] | |
| server_tls_profile | TLSProfile | [optional] | |
| server_tcp_profile | TcpProfile | [optional] | |
| udp_profile | UdpProfile | [optional] | |
| vlan_prio | int | [optional] | |
| links | List[APILink] | [optional] | |
| l4_profile_name | str |
from cyperf.models.transport_profile import TransportProfile
# TODO update the JSON string below
json = "{}"
# create an instance of TransportProfile from a JSON string
transport_profile_instance = TransportProfile.from_json(json)
# print the JSON string representation of the object
print(TransportProfile.to_json())
# convert the object into a dict
transport_profile_dict = transport_profile_instance.to_dict()
# create an instance of TransportProfile from a dict
transport_profile_from_dict = TransportProfile.from_dict(transport_profile_dict)