<PackageReference Include="Relativity.Productions.SDK" Version="12.6.1" />

MassCancelResult

public class MassCancelResult
Represents the results of a cancel operation on multiple production jobs, including the total number of jobs requested and successfully canceled.
public List<CancelJobResult> CancelJobResults { get; set; }

Gets or sets a list of results for each job in the cancel request.

public List<string> Errors { get; set; }

Gets or sets a list of errors that occurred during the mass cancel operation.

Gets or sets the total number of cancel jobs successfully requested.

public int NumberOfJobsRequestedForCancel { get; set; }

Gets or sets the total number of cancel jobs requested.

Initializes an instance of the MassCancelResult class.