Specifies tags for the product.
var newTags = { "product": "postcard", "design": "flowers", "colorTheme": "red" }; editor.getProduct() .then(function (product) { product.setTags(newTags) .catch(function (error) { console.error("Setting tags failed with exception: ", error); }); })
The tags that you want to specify for the product.