<PackageReference Include="Relativity.Server.DataVisualization.SDK" Version="5000.0.1" />

TabRequest

public class TabRequest : IHaveName
Represents a request to create or update a Tab.
public string IconIdentifier { get; set; }

Gets or sets the string identifier for the icon displayed when the Tab is shown in the sidebar.

public bool IsDefault { get; set; }

Gets or sets if the Tab should be the first Tab to navigate to when navigating to the Parent tab.

public bool IsShownInSidebar { get; set; }

Gets or sets if the Tab can be shown in the sidebar.

public bool IsVisible { get; set; }

Gets or sets if the Tab should be visible in the UI.

public string Link { get; set; }

Gets or sets the external URL to navigate to if the LinkType is Link.

public TabLinkTypeEnum LinkType { get; set; }

Gets or sets the link type of the Tab.

public string Name { get; set; }

Gets or sets the identifier for Object Type of the Tab.

public int Order { get; set; }

Gets or sets the order of the Tab which determines the position of the Tab relative to Tabs of the same hierarchal level.

public Securable<ObjectIdentifier> Parent { get; set; }

Gets or sets the identifier for parent of the Tab.

Gets or sets a list of identifiers of associated Relativity Applications for the Tab.

public TabRequest()

Initializes an instance of the TabRequest class with all properties set to their default values.

public TabRequest(TabResponse response)

Converts a TabResponse to a new instance of a TabRequest.

public static TabRequest op_Implicit(TabResponse response)

Implicitly converts a TabResponse to a new instance of a TabRequest.