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
CreateTagInfo Object ### Description The CreateTagInfo object is used to represent configuration for a new tag. ### Usage Example Use in the POST Tag endpoint.
Properties
Name
Type
Description
Notes
tag_key
str
The key of the tag to create.
tag_value
str
The value of the tag to create.
[optional]
Example
fromopal_security.models.create_tag_infoimportCreateTagInfo# TODO update the JSON string belowjson="{}"# create an instance of CreateTagInfo from a JSON stringcreate_tag_info_instance=CreateTagInfo.from_json(json)
# print the JSON string representation of the objectprint(CreateTagInfo.to_json())
# convert the object into a dictcreate_tag_info_dict=create_tag_info_instance.to_dict()
# create an instance of CreateTagInfo from a dictcreate_tag_info_from_dict=CreateTagInfo.from_dict(create_tag_info_dict)