mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
30 lines
1013 B
Markdown
30 lines
1013 B
Markdown
# StreamResponseLinksSelf
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**href** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from streaming.models.stream_response_links_self import StreamResponseLinksSelf
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of StreamResponseLinksSelf from a JSON string
|
|
stream_response_links_self_instance = StreamResponseLinksSelf.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(StreamResponseLinksSelf.to_json())
|
|
|
|
# convert the object into a dict
|
|
stream_response_links_self_dict = stream_response_links_self_instance.to_dict()
|
|
# create an instance of StreamResponseLinksSelf from a dict
|
|
stream_response_links_self_from_dict = StreamResponseLinksSelf.from_dict(stream_response_links_self_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|