| Name | Type | Description | Notes |
|---|---|---|---|
| client_http_profile | HTTPProfile | The client HTTP profile used in the Scenario. | [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_tls_profile | TLSProfile | [optional] | |
| server_tcp_profile | TcpProfile | [optional] | |
| udp_profile | UdpProfile | [optional] | |
| vlan_prio | int | [optional] | |
| links | List[APILink] | [optional] |
from cyperf.models.transport_profile_base import TransportProfileBase
# TODO update the JSON string below
json = "{}"
# create an instance of TransportProfileBase from a JSON string
transport_profile_base_instance = TransportProfileBase.from_json(json)
# print the JSON string representation of the object
print(TransportProfileBase.to_json())
# convert the object into a dict
transport_profile_base_dict = transport_profile_base_instance.to_dict()
# create an instance of TransportProfileBase from a dict
transport_profile_base_from_dict = TransportProfileBase.from_dict(transport_profile_base_dict)