Open surajgotake opened 1 week ago
I am trying to track mixpanel events using _mixpanelClient.TrackAsync("clicked", properties); Here, properties object I am passing is as below:
_mixpanelClient.TrackAsync("clicked", properties);
properties
var properties = new Dictionary<string, object> { { "key", "payments"}, { "app", "payment tool" }, { "validations", new Dictionary<string, object> { { "enough_fund", true }, { "account_closed", false } } }, })
I see key & app properties serialized correctly. But, validations object is empty array.
key
app
validations
{ "event": "clicked", "properties": { "app": "payment tool", "key": "payments", "validations": [] } }
How can we get correct validations object serialized?
I am trying to track mixpanel events using
_mixpanelClient.TrackAsync("clicked", properties);
Here,properties
object I am passing is as below:I see
key
&app
properties serialized correctly. But,validations
object is empty array.How can we get correct validations object serialized?