videosphere
    Preparing search index...

    Interface YoutubeImportJobDocument

    Raw MongoDB document shape for the youtube_import_jobs collection.

    interface YoutubeImportJobDocument {
        _id: string;
        userId: string;
        draftId: string;
        sourceUrl: string;
        youtubeVideoId: string;
        livestreamId: string;
        startSeconds: number;
        endSeconds: number;
        smartCut: boolean;
        status: YoutubeImportJobStatus;
        progressPercent: number;
        errorMessage: string;
        r2Key: string;
        uploadJobId: string;
        distributeQueued: boolean;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    _id: string
    userId: string
    draftId: string
    sourceUrl: string
    youtubeVideoId: string
    livestreamId: string
    startSeconds: number
    endSeconds: number
    smartCut: boolean
    progressPercent: number
    errorMessage: string
    r2Key: string
    uploadJobId: string
    distributeQueued: boolean
    createdAt: Date
    updatedAt: Date