<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="13.6.1" />

Relativity.Services.Pivot.PivotResultSet

public class PivotResultSet
Represents the results of a Pivot query.
public string Message { get; set; }

Gets a message that indicates the status of a Pivot query, after the query stops running. If the query failed, the message contains information about the errors that occurred.

public string MessageType { get; set; }

Gets a message type that indicates the status of the Pivot error after the query stops.

public string[,] PivotIdToDisplayValueMap { get; set; }

N-by-2 2D array of strings where N is the distict list of pivot "column" values, each individual array[0] is the pivot "id" value and array[1] is the pivot "display" value

public string QueryToken { get; set; }

Reserved for internal use and not intended to be used.

public DataTable Results { get; set; }

Provides a collection of data that meets the criteria specified in a Pivot query.

public bool Success { get; set; }

Gets a value that indicates whether a Pivot query ran successfully.

public int TotalCount { get; set; }

Gets the total number of rows returned by a Pivot query.

public PivotResultSet()