Category

Public channels are organized by category, similar to a folder concept. This structure is used when showing a list of categories. Public channel information required to display a list of channels.

Structure
{   
     unsigned int id; 
     unsigned int parent; 
     string name; 
     string description; 
};
Fields
  • id   Unique ID of this category.

  • parent   ID of the parent, if any.

  • name   Name of the category.

  • description   Description of the category.

Remarks

CategoryArray is an array of Category structures.