Filters

Filters are very similar to a Project. Meanwhile a project always contains the same items, the Filter is calculated runtime, and depending on the Filter criteria it contains different items that matches the criteria. For example Today Filter contains the items due today, or in overdue. Currently new Filters cannot be created or edited. This will be implemented in the future.

Filters API Methods

Object Representation

FilterObject in C#

 public class FilterObject
    {
        public long Id;
        public string Content;
        public int ItemsCount;
        public int Icon;
        public int ItemType;
        public List<FilterObject> Children = new List<FilterObject>();
    }
Icon

Icons are described in Project Section.