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

Relativity.Services.DataContracts.DTOs.ProgressReport

public class ProgressReport
Represents a snap shot report of progress in a Kepler service
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)