thousandeyes-sdk-python/test_results/docs/RtpStreamTestResults.md

1.1 KiB

RtpStreamTestResults

Properties

Name Type Description Notes
results **List[RtpStreamTestResult]** [optional]
test SimpleTest [optional]

Example

from test_results.models.rtp_stream_test_results import RtpStreamTestResults

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

# convert the object into a dict
rtp_stream_test_results_dict = rtp_stream_test_results_instance.to_dict()
# create an instance of RtpStreamTestResults from a dict
rtp_stream_test_results_from_dict = RtpStreamTestResults.from_dict(rtp_stream_test_results_dict)

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