Interface: ITagsDictionary
A structure holding the product tags.
Example
const newTags = {
"product": "postcard",
"design": "flowers",
"colorTheme": "red"
};
let product = await editor.getProduct();
await product.setTags(newTags)
.catch(error => console.error("Setting tags failed with exception: ", error));
Indexable
[
key:string]:any
The array of product tags.