videosphere
    Preparing search index...

    Interface UploadJobDocument

    Raw MongoDB document shape for the upload_jobs collection.

    interface UploadJobDocument {
        _id: string;
        userId: string;
        draftId: string;
        r2Key: string;
        status: UploadJobStatus;
        errorMessage: string;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    _id: string
    userId: string
    draftId: string
    r2Key: string
    errorMessage: string
    createdAt: Date
    updatedAt: Date