<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="5000.1.0" />

FileFieldDTO

public class FileFieldDTO
Represents model for operations on File Field.
public FileField Field { get; set; }

Gets or sets field that is associated with the file. Should have ArtifactId or Name.

public string FileName { get; set; }

Gets or sets the name of the file.

public Stream FileStream { get; set; }

Gets or sets the filestream of the field file.

public Artifact ObjectRef { get; set; }

Gets or sets a reference to the object that contains or will contain the file. Should have ArtifactId set.

public Guid? UploadedFileGuid { get; set; }

Gets or sets the GUID used to identify the uploaded file in temprorary storage.

public FileFieldDTO()