The request parameters for creating a tag.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The tag name. |
from docspace_api_sdk.models.create_tag_request_dto import CreateTagRequestDto
# TODO update the JSON string below
json = "{}"
# create an instance of CreateTagRequestDto from a JSON string
create_tag_request_dto_instance = CreateTagRequestDto.from_json(json)
# print the JSON string representation of the object
print(CreateTagRequestDto.to_json())
# convert the object into a dict
create_tag_request_dto_dict = create_tag_request_dto_instance.to_dict()
# create an instance of CreateTagRequestDto from a dict
create_tag_request_dto_from_dict = CreateTagRequestDto.from_dict(create_tag_request_dto_dict)