How to Insert Time line card using In C#.Net Mirror API, which has bundle inside bundle?
In below code what I am doing is create a single bundle. What I want is item1 and item2 to be different bundles. Is is possible? Is there a solution?
TimelineItem item = new TimelineItem()
{
Text = controller.Request.Form.Get("message"),
BundleId = "112",
IsBundleCover=true,
Notification = new NotificationConfig() { Level = "DEFAULT" }
};
TimelineItem item1 = new TimelineItem()
{
Text = "Amalan",
BundleId = "112",
Notification = new NotificationConfig() { Level = "DEFAULT" }
};
TimelineItem item2 = new TimelineItem()
{
Text = "Sanath",
BundleId = "112",
Notification = new NotificationConfig() { Level = "DEFAULT" }
};