Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{
        public String report_id;
    	public List<ReportDataPojo> report;
}

ReportDataPojo
{
	public int index;    
    public String note;
    public Date created_date;
	public String event_id;
	public String event_title;
	public String item_id;
	public String item_type; //should be "summary","analysis","feed", to determine how exporter draws these items, will default to just rendering whatever is there if item is analysis/other or null
	public String item_title; //field for UM to use for displaying headers in report
	public int event_index;
	public String report_item_title;
	public List<ReportDataItemPojo> data;
}

ReportDataItemPojo
{
	public String type; //e.g. duration/title/url/piechart/etc
    public String text;
    public String img;    
}

...