Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 967 Bytes

File metadata and controls

30 lines (21 loc) · 967 Bytes

BulkTagRequest

Request to bulk add or remove tags from a path part.

Properties

Name Type Description Notes
tag_ids List[UUID] List of tag IDs to add/remove

Example

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)

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