<PackageReference Include="Relativity.Server.ObjectManager.SDK" Version="1.1.2" />

ProgressReport

public class ProgressReport
Represents a progress update for an operation.
public int? CompletedSteps { get; }

Number of completed steps of the total service operation.

public string Message { get; }

Detailed message describing the current state of progress.

public int? TotalSteps { get; }

Number of total steps of the total service operation.

public ProgressReport(string message, int? completedSteps, int? totalSteps)

Initialized a new progress report object.