thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/NetworkWirelessProfile.md
Miguel Pragosa 7e7c1c4c0a
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#164)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-07-23 12:14:38 +01:00

1.7 KiB

NetworkWirelessProfile

Properties

Name Type Description Notes
ssid str Wireless network SSID. [optional] [readonly]
bssid str Wireless network BSSID. [optional] [readonly]
channel int Wireless network channel. [optional] [readonly]
phy_mode str Wireless network PHY mode. [optional] [readonly]
rssi int Wireless network RSSI. [optional] [readonly]
noise int Wireless network noise. [optional] [readonly]
snr int Wireless network signal-to-noise ratio (SNR), in dB. [optional] [readonly]
quality int Wireless network quality. [optional] [readonly]
tx_rate int Wireless network transmitted rate. [optional] [readonly]
vendor str Wireless network device vendor. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.network_wireless_profile import NetworkWirelessProfile

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

# convert the object into a dict
network_wireless_profile_dict = network_wireless_profile_instance.to_dict()
# create an instance of NetworkWirelessProfile from a dict
network_wireless_profile_from_dict = NetworkWirelessProfile.from_dict(network_wireless_profile_dict)

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