Interface DocxReferenceModel

Represents a reference to a part of a docx document.

DocxReferenceModel

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

Properties

Properties

DocxReferenceModel

pages: number[]

DocxReferenceModel

type: string

The type of reference. Always "doc_x".

DocxReferenceModel