mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.2 KiB
1.2 KiB
PutStreamTagMatchInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| object_type | TagMatchObjectType | [optional] | |
| key | str | The name of the tag key to match | [optional] |
| value | str | The value of the tag to match | [optional] |
Example
from streaming.models.put_stream_tag_match_inner import PutStreamTagMatchInner
# TODO update the JSON string below
json = "{}"
# create an instance of PutStreamTagMatchInner from a JSON string
put_stream_tag_match_inner_instance = PutStreamTagMatchInner.from_json(json)
# print the JSON string representation of the object
print(PutStreamTagMatchInner.to_json())
# convert the object into a dict
put_stream_tag_match_inner_dict = put_stream_tag_match_inner_instance.to_dict()
# create an instance of PutStreamTagMatchInner from a dict
put_stream_tag_match_inner_from_dict = PutStreamTagMatchInner.from_dict(put_stream_tag_match_inner_dict)