thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/TagMatch.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1003 B

TagMatch

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 thousandeyes_sdk.streaming.models.tag_match import TagMatch

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

# convert the object into a dict
tag_match_dict = tag_match_instance.to_dict()
# create an instance of TagMatch from a dict
tag_match_from_dict = TagMatch.from_dict(tag_match_dict)

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