Unity User Events
User Events
Record an Event
// record basic event with no properties
CleverTapBinding.RecordEvent("testEvent");
Record Charged event
// record event with properties
Dictionary<string, object> Props = new Dictionary<string, object>();
Props.Add("testKey", "testValue");
CleverTapBinding.RecordChargedEvent("testEventWithProps", Props);
Updated 11 months ago