Name | Type | Description | Notes |
---|---|---|---|
tags | List[TagOrTagReference] | During update, a (reference to a) tag - that does not yet exist, is created (using default attributes if not specified) - that does exist is not updated (even if tag attributes like `color` differ) |
from waylay.services.registry.models.update_tags_request_v2 import UpdateTagsRequestV2
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTagsRequestV2 from a JSON string
update_tags_request_v2_instance = UpdateTagsRequestV2.from_json(json)
# print the JSON string representation of the object
print UpdateTagsRequestV2.to_json()
# convert the object into a dict
update_tags_request_v2_dict = update_tags_request_v2_instance.to_dict()
# create an instance of UpdateTagsRequestV2 from a dict
update_tags_request_v2_form_dict = update_tags_request_v2.from_dict(update_tags_request_v2_dict)