-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
I am trying to track mixpanel events using _mixpanelClient.TrackAsync("clicked", properties);
Here, properties object I am passing is as below:
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.
{
"event": "clicked",
"properties": {
"app": "payment tool",
"key": "payments",
"validations": []
}
}
How can we get correct validations object serialized?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels