Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.19 KB

UpdateTagsRequestV2.md

File metadata and controls

29 lines (20 loc) · 1.19 KB

UpdateTagsRequestV2

Properties

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)

Example

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)

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