| 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] | |
| applications | List[Application] | [optional] | |
| default_network_mapping | NetworkMapping | [optional] | |
| name | str | ||
| objectives_and_timeline | ObjectivesAndTimeline | [optional] | |
| add_applications | List[ExternalResourceInfo] | [optional] | |
| modify_excluded_dut_recursively | List[UpdateNetworkMapping] | [optional] | |
| modify_tags_recursively | List[UpdateNetworkMapping] | [optional] | |
| reset_tags_to_default | List[bytearray] | [optional] |
from cyperf.models.application_profile import ApplicationProfile
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationProfile from a JSON string
application_profile_instance = ApplicationProfile.from_json(json)
# print the JSON string representation of the object
print(ApplicationProfile.to_json())
# convert the object into a dict
application_profile_dict = application_profile_instance.to_dict()
# create an instance of ApplicationProfile from a dict
application_profile_from_dict = ApplicationProfile.from_dict(application_profile_dict)