You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tag Object ### Description The Tag object is used to represent a tag. ### Usage Example Get tags from the GET Tag endpoint.
Properties
Name
Type
Description
Notes
tag_id
str
The ID of the tag.
created_at
datetime
The date the tag was created.
[optional]
updated_at
datetime
The date the tag was last updated.
[optional]
user_creator_id
str
The ID of the user that created the tag.
[optional]
key
str
The key of the tag.
[optional]
value
str
The value of the tag.
[optional]
Example
fromopal_security.models.tagimportTag# TODO update the JSON string belowjson="{}"# create an instance of Tag from a JSON stringtag_instance=Tag.from_json(json)
# print the JSON string representation of the objectprint(Tag.to_json())
# convert the object into a dicttag_dict=tag_instance.to_dict()
# create an instance of Tag from a dicttag_from_dict=Tag.from_dict(tag_dict)