Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 898 Bytes

File metadata and controls

31 lines (22 loc) · 898 Bytes

TagSelector

Properties

Name Type Description Notes
key str
value str
connection_id UUID

Example

from opal_security.models.tag_selector import TagSelector

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

# convert the object into a dict
tag_selector_dict = tag_selector_instance.to_dict()
# create an instance of TagSelector from a dict
tag_selector_from_dict = TagSelector.from_dict(tag_selector_dict)

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