system.kanoa.event.updateCountEvent
Description
Updates a count value in the counterEvent table. If it can't find a value at the timestamp, it will add a count value.Syntax
updateCountEvent(counterId, deltaValue, tStamp, userId=None)Parameters:
Returns:
Code Examples
# Example Usage:
counterId = 123
deltaValue = 5.0
tStamp = timestamp
userId = 999
system.kanoa.event.updateCountEvent(counterId, deltaValue, tStamp, userId)