removeTag abstract method

BatchUserDataEditor removeTag(
  1. String collection,
  2. String tag
)

Delete a tag from a collection.

If the collection is empty, it will be deleted.

The tag collection name must be a string of letters, numbers or underscores ([a-z0-9_]) and can't be longer than 30 characters.

If the tag doesn't exist, this method will silently do nothing.

Implementation

BatchUserDataEditor removeTag(String collection, String tag);