thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/DynamicEndpointTestWebex.md
Miguel Pragosa 23bfb1d946
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#158)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-06-23 11:11:56 +01:00

1.5 KiB

DynamicEndpointTestWebex

Contains object with webex information. Only returned for webex applications.

Properties

Name Type Description Notes
conference_id str Webex conference ID. [optional] [readonly]
correlation_id str Webex conference correlation ID. [optional] [readonly]
local_sip_session_id str Webex calling local sip session ID. [optional] [readonly]
meeting_app str RoomOS meeting app. [optional] [readonly]
remote_sip_session_id str Webex calling remote sip session ID. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.dynamic_endpoint_test_webex import DynamicEndpointTestWebex

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

# convert the object into a dict
dynamic_endpoint_test_webex_dict = dynamic_endpoint_test_webex_instance.to_dict()
# create an instance of DynamicEndpointTestWebex from a dict
dynamic_endpoint_test_webex_from_dict = DynamicEndpointTestWebex.from_dict(dynamic_endpoint_test_webex_dict)

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