You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
[optional]
Example
fromwaylay.services.registry.models.update_plug_metadata_request_v2importUpdatePlugMetadataRequestV2# TODO update the JSON string belowjson="{}"# create an instance of UpdatePlugMetadataRequestV2 from a JSON stringupdate_plug_metadata_request_v2_instance=UpdatePlugMetadataRequestV2.from_json(json)
# print the JSON string representation of the objectprintUpdatePlugMetadataRequestV2.to_json()
# convert the object into a dictupdate_plug_metadata_request_v2_dict=update_plug_metadata_request_v2_instance.to_dict()
# create an instance of UpdatePlugMetadataRequestV2 from a dictupdate_plug_metadata_request_v2_form_dict=update_plug_metadata_request_v2.from_dict(update_plug_metadata_request_v2_dict)