An interface for editing tags.
Example
const contact = await sdk.contact
const editor = await contact.editTags()
editor.add("my-group", ["tag1", "tag2"])
await editor.apply()
Members
add :void
Queue tag additions for a given tag group.
Type:
-
void
apply :Promise.<void>
Applies any previously queued changes.
Type:
-
Promise.<void>
remove :void
Queue tag removals for a given tag group.
Type:
-
void
set :void
Queue tag replacement for a given tag group.
Type:
-
void