@webitel/api-services
    Preparing search index...

    Represents a persisted record of a PDF export.

    interface WebitelMediaExporterExportRecord {
        createdAt?: string;
        createdBy?: string;
        fileId?: string;
        id?: string;
        mimeType?: string;
        name?: string;
        status?: WebitelMediaExporterExportStatus;
        updatedAt?: string;
        updatedBy?: string;
    }
    Index

    Properties

    createdAt?: string

    Creation timestamp (Unix millis).

    createdBy?: string

    User ID who initiated the export.

    fileId?: string

    Reference to the file in the storage system.

    id?: string

    Internal database record ID.

    mimeType?: string

    MIME type of the generated file.

    name?: string

    Display name of the export.

    Final status of the export process.

    updatedAt?: string

    Last update timestamp (Unix millis).

    updatedBy?: string

    User ID who last modified the record.