thousandeyes-sdk-python/endpoint_test_results/docs/DynamicBaseTestResultWebex.md

1.4 KiB

DynamicBaseTestResultWebex

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]
remote_sip_session_id str Webex calling remote sip session ID. [optional] [readonly]

Example

from endpoint_test_results.models.dynamic_base_test_result_webex import DynamicBaseTestResultWebex

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

# convert the object into a dict
dynamic_base_test_result_webex_dict = dynamic_base_test_result_webex_instance.to_dict()
# create an instance of DynamicBaseTestResultWebex from a dict
dynamic_base_test_result_webex_from_dict = DynamicBaseTestResultWebex.from_dict(dynamic_base_test_result_webex_dict)

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