Request to create a new tag.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Tag name | |
| color | str | Tag color as 6-character hex string (e.g. 'FF5733') | [optional] [default to '000000'] |
| description | str | Optional tag description | [optional] |
from ksapi.models.create_tag_request import CreateTagRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateTagRequest from a JSON string
create_tag_request_instance = CreateTagRequest.from_json(json)
# print the JSON string representation of the object
print(CreateTagRequest.to_json())
# convert the object into a dict
create_tag_request_dict = create_tag_request_instance.to_dict()
# create an instance of CreateTagRequest from a dict
create_tag_request_from_dict = CreateTagRequest.from_dict(create_tag_request_dict)