public void IncrementOrCreateKickUsersVarById(List<string> userIds, string varName, object value, bool persisted = true)
List of user IDs to increment the variable for. If a user ID does not exist, it will be ignored.
Example: ["123456789", "987654321"]
Name of the user variable
Value of how much the user variables should be incremented by
True
true - Persisted user variables will be affectedfalse - Non-persisted user variable will be affectedvoid
CPH.IncrementOrCreateKickUsersVarById(userIds, varName, value);
CPH.IncrementOrCreateKickUsersVarById(userIds, varName, value, persisted);