mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1009 B
1009 B
StreamResponseLinks
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | StreamResponseLinksSelf | [optional] |
Example
from streaming.models.stream_response_links import StreamResponseLinks
# TODO update the JSON string below
json = "{}"
# create an instance of StreamResponseLinks from a JSON string
stream_response_links_instance = StreamResponseLinks.from_json(json)
# print the JSON string representation of the object
print(StreamResponseLinks.to_json())
# convert the object into a dict
stream_response_links_dict = stream_response_links_instance.to_dict()
# create an instance of StreamResponseLinks from a dict
stream_response_links_from_dict = StreamResponseLinks.from_dict(stream_response_links_dict)