thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/WirelessOnboarding.md
api-team-automation[bot] f9d21e46b5
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#188)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-27 14:20:49 +01:00

1.5 KiB

WirelessOnboarding

Wireless onboarding timing metrics for a Wi-Fi connection attempt.

Properties

Name Type Description Notes
dot11_auth_time_ms int Time spent in the initial 802.11 authentication phase, in milliseconds. [optional] [readonly]
dot11_assoc_time_ms int Time spent in the 802.11 association phase, in milliseconds. [optional] [readonly]
dot1x_auth_time_ms int Time spent in the 802.1X authentication phase, in milliseconds. [optional] [readonly]
eapol_key_time_ms int Time spent in the four-way EAPOL key handshake, in milliseconds. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.wireless_onboarding import WirelessOnboarding

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

# convert the object into a dict
wireless_onboarding_dict = wireless_onboarding_instance.to_dict()
# create an instance of WirelessOnboarding from a dict
wireless_onboarding_from_dict = WirelessOnboarding.from_dict(wireless_onboarding_dict)

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