Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

TrafficProfileBase

Properties

Name Type Description Notes
active bool Indicates whether the profile is enabled or not. [optional]
traffic_settings TrafficSettings [optional]
id str [optional]
links List[APILink] [optional]

Example

from cyperf.models.traffic_profile_base import TrafficProfileBase

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

# convert the object into a dict
traffic_profile_base_dict = traffic_profile_base_instance.to_dict()
# create an instance of TrafficProfileBase from a dict
traffic_profile_base_from_dict = TrafficProfileBase.from_dict(traffic_profile_base_dict)

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