mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
* CP-2189 Update SDK names for admin and monitors modules * CP-2189 Move client to core * CP-2189 Change client to core
970 B
970 B
EthernetProfile
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| link_speed | int | Ethernet profile link speed | [optional] [readonly] |
Example
from thousandeyes_sdk.endpoint_test_results.models.ethernet_profile import EthernetProfile
# TODO update the JSON string below
json = "{}"
# create an instance of EthernetProfile from a JSON string
ethernet_profile_instance = EthernetProfile.from_json(json)
# print the JSON string representation of the object
print(EthernetProfile.to_json())
# convert the object into a dict
ethernet_profile_dict = ethernet_profile_instance.to_dict()
# create an instance of EthernetProfile from a dict
ethernet_profile_from_dict = EthernetProfile.from_dict(ethernet_profile_dict)