<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="10.3.0" />

CategoryElement

public class CategoryElement
Represents part of a category in a layout. The parent Category also contains information about the category itself.
public int CategoryID { get; set; }

Gets or sets the artifact id of the category.

public bool Collapsible { get; set; }

Gets or sets a value indicating whether the category is collapsible.

public bool DefaultCollapsed { get; set; }

Gets or sets a value indicating whether the category is collapsed by default.

public List<Element> Elements { get; set; }

Gets or sets the fields of the category.

public int Order { get; set; }

Gets or sets the order of the category.

public string Title { get; set; }

Gets or sets the title of the category.

public CategoryElement()