Response containing the current tags for a path part.
| Name | Type | Description | Notes |
|---|---|---|---|
| tags | List[TagResponse] | Tags attached to the path part |
from ksapi.models.path_part_tags_response import PathPartTagsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PathPartTagsResponse from a JSON string
path_part_tags_response_instance = PathPartTagsResponse.from_json(json)
# print the JSON string representation of the object
print(PathPartTagsResponse.to_json())
# convert the object into a dict
path_part_tags_response_dict = path_part_tags_response_instance.to_dict()
# create an instance of PathPartTagsResponse from a dict
path_part_tags_response_from_dict = PathPartTagsResponse.from_dict(path_part_tags_response_dict)