@squidcloud/client
    Preparing search index...

    Interface BaseCreatePdfRequest

    Base request for creating a PDF document.

    interface BaseCreatePdfRequest {
        outputOptions?: CreatePdfOutputOptions;
        title?: string;
        type: CreatePdfType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    outputOptions?: CreatePdfOutputOptions

    The formatting options for the PDF document. Can be either a predefined format (like 'letter') or custom dimensions.

    title?: string

    Optional title for the PDF document.

    The type of PDF creation to perform, either from HTML or a URL.