Skip to content

IPdfDocument

Overview

based on LocalDocumentModel

Definition

typescript
export interface IPdfDocument {
  id: string | null;
  originalFileName: string | null;
  /** RFC1123 formatted date */
  createdOnUtc: string | null;
  /** PDF version */
  version: string | null;
  /** Type of document: classic, staticxfa, dynamicxfa) */
  documentType: string | null;
  pageCount: number;
  hasFields: boolean;
  hasBookmarks: boolean;
  hasLayers: boolean;
  documentInfo: IPdfDocumentInfo | null;
}