The networks assigned to the current test configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| dut_network_segment | List[DUTNetwork] | [optional] | |
| ip_network_segment | List[IPNetwork] | [optional] | |
| id | str | ||
| links | List[APILink] | [optional] |
from cyperf.models.network_profile import NetworkProfile
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkProfile from a JSON string
network_profile_instance = NetworkProfile.from_json(json)
# print the JSON string representation of the object
print(NetworkProfile.to_json())
# convert the object into a dict
network_profile_dict = network_profile_instance.to_dict()
# create an instance of NetworkProfile from a dict
network_profile_from_dict = NetworkProfile.from_dict(network_profile_dict)