<PackageReference Include="Relativity.MassOperations.SDK" Version="2.0.0" />

Relativity.MassOperations.V2.DTOs.MassOperationProcessState

DTO representing the current process state of a mass operation.
public string ExceptionMessage { get; set; }

Exception message if the mass operation is in an errored state.

public bool IsCanceled { get; set; }

If true, the mass operation has been flagged for cancel.

public string Name { get; set; }

The name of the specific type of mass operation.

public int OperationsCompleted { get; set; }

Count of the current number of operations completed.

public Guid ProcessIdentifier { get; set; }

The unique process identifier of this mass operation.

public MassProcessState State { get; set; }

The current state of the mass operation. Based off of - http://services.kcura.com/Relativity.SDK/03/2012 We can discuss if we want it like this enum or roll our own.

public string Status { get; set; }

The current status of the mass operation.

public int TotalOperations { get; set; }

Count of the total number of operations in the mass operation.