Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

CreateTagRequest

Request to create a new tag.

Properties

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]

Example

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)

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