Deletes the setting at the given path. An up-to-date etag must be provided in order to prevent concurrency issues
The setting to delete
Looks for settings belonging to the current user, starting at path, and then recursively down the hierarchy.
Example: There are settings at a a/b a/b/c
path = 'a', maxLevels = 0 will return the setting at 'a' path = 'a', maxLevels = 1 will return the settings at 'a' and 'a/b' path = 'a', maxLevels = 2 will return the settings at 'a', 'a/b', 'a/b/c' path = 'a/b', maxLevels = 1 will return the settings at 'a/b' and 'a/b/c' path = 'b' will not return any setting
Slash separated path to setting
OptionalmaxLevels: numberMaximum recursion level when traversing the setting hierarchy. Default = 0 (current level)
Set the setting at the given path. If a setting already exists at the given path, an up-to-date etag must be provided in order to prevent concurrency issues
The setting to upsert
API for managing user specific settings