IBatchSerializer public interface IBatchSerializer Documentation Code using System.Threading.Tasks; namespace Relativity.Transfer { public interface IBatchSerializer { void AddTransferPath(TransferPath path); Task<SerializedPathsResult> CreateBatchAsync(); } }