Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1012 Bytes

TrafficSettings.md

File metadata and controls

30 lines (21 loc) · 1012 Bytes

TrafficSettings

Properties

Name Type Description Notes
default_transport_profile TransportProfile [optional]
links List[APILink] [optional]

Example

from cyperf.models.traffic_settings import TrafficSettings

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

# convert the object into a dict
traffic_settings_dict = traffic_settings_instance.to_dict()
# create an instance of TrafficSettings from a dict
traffic_settings_from_dict = TrafficSettings.from_dict(traffic_settings_dict)

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