If a custom property exists and its value is an array, then this will remove the specified value from that array.
You can only use it on array properties that exist.
String key - property name for array property
String value - value to remove from array
Create array property, if property does not exist and add value to array
You can only use it on array properties or properties that do not exist yet
String key - property name for array property
String value - value to add to array
Create array property, if property does not exist and add value to array, only if value is not yet in the array
You can only use it on array properties or properties that do not exist yet
String key - property name for array property
String value - value to add to array
Set a single user property. It can be either a custom one or one of the predefined ones.
String key - the key for the user property
Object value - the value for the user property to be set. The value should be the allowed data type.
Provide a map of user properties to set.
Those can be either custom user properties or predefined user properties
Map<String, Object> properties - map of custom and predefined user propetries.