<PackageReference Include="Relativity.Transfer.Client" Version="7.2.7" />

JobTransferPath

public class JobTransferPath
using System; namespace Relativity.Transfer { public class JobTransferPath { public long BytesTransferred { get; set; } public string Checksum { get; set; } public DateTime? EndTime { get; set; } public int Index { get; set; } public TransferPath Path { get; set; } public int RetryCount { get; set; } public DateTime? StartTime { get; set; } public TransferPathStatus Status { get; set; } public JobTransferPath() { BytesTransferred = 0; Checksum = null; EndTime = null; Index = 0; Path = null; RetryCount = 0; StartTime = null; Status = TransferPathStatus.None; } } }