CategoriesProperty
This class represents the "CATEGORIES" property
This class should be called with two arguments, the first an array of the parameters, and the second the value of the property
The only acceptable parameters of
CategoriesPropertyareValueParameter,PIDParameter,PrefParameter,IndexParameter,TypeParameter,AltidParameterandAnyParameterIf you do not wish that the property have any parameters, leave the first argument array empty
The value of
CategoriesPropertyshould be of typeTextTypeorTextListType
new CategoriesProperty([], new TextType("TRAVEL AGENT"));
new CategoriesProperty(
  [],
  new TextListType([
    new TextType("INTERNET"),
    new TextType("IETF"),
    new TextType("INDUSTRY"),
  ]),
);