Request to bulk add or remove tags from a path part.
| Name | Type | Description | Notes |
|---|---|---|---|
| tag_ids | List[UUID] | List of tag IDs to add/remove |
from ksapi.models.bulk_tag_request import BulkTagRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BulkTagRequest from a JSON string
bulk_tag_request_instance = BulkTagRequest.from_json(json)
# print the JSON string representation of the object
print(BulkTagRequest.to_json())
# convert the object into a dict
bulk_tag_request_dict = bulk_tag_request_instance.to_dict()
# create an instance of BulkTagRequest from a dict
bulk_tag_request_from_dict = BulkTagRequest.from_dict(bulk_tag_request_dict)