Interface PdfReferenceModel

Represents a reference to a part of a PDF document.

PdfReferenceModel

interface PdfReferenceModel {
    file: AssistantFileModel;
    pages: number[];
    type: string;
}

Properties

Properties

PdfReferenceModel

pages: number[]

PdfReferenceModel

type: string

The type of reference. Always "pdf".

PdfReferenceModel