Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1012 Bytes

File metadata and controls

29 lines (21 loc) · 1012 Bytes

CreateTagRequestDto

The request parameters for creating a tag.

Properties

Name Type Description Notes
name str The tag name.

Example

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)

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