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

Relativity.Services.Interfaces.Document.Models.DocumentFile

public class DocumentFile
A file associated with a Document
public string Filename { get; set; }

Name of the file

public DocumentFileType FileType { get; set; }

The type of the file

public Guid Guid { get; set; }

Unique universal identifier for the file

public string Identifier { get; set; }

Unique string identifier for the file

public int Order { get; set; }

Order of the file within the set of files of that type. This property will only have a non-zero value for OriginalImage and ProducedImage files

public DocumentFileRotation Rotation { get; set; }

The orientation to display the file. This property is only set for OriginalImage and ProducedImage files

public long Size { get; set; }

The size of the file in bytes

public DocumentFile()