@mendix/extensions-api - v0.3.0
    Preparing search index...

    Type Alias CustomBlobDocumentCreationOptions<TBlob>

    Options for creating a new custom blob document

    type CustomBlobDocumentCreationOptions<TBlob extends object = object> = {
        containerId: string;
        content?: TBlob;
        documentName: string;
        type: string;
    }

    Type Parameters

    • TBlob extends object = object
    Index

    Properties

    containerId: string

    The ID of the container where the document will be stored

    content?: TBlob

    Initial content of the document. If not provided, the default content for the document type will be used.

    documentName: string

    Name of the document, follows Studio Pro document naming rules.

    type: string

    User-defined type of the document, must be previously registered.