videosphere
    Preparing search index...

    Interface PlatformUploadDocument

    Raw MongoDB document shape for the platform_uploads collection.

    document is intentionally stored as a JSON string to preserve the existing payload format used by repository mapping and API contracts.

    interface PlatformUploadDocument {
        _id: string;
        uploadJobId: string;
        platform: ConnectedAccountPlatform;
        status: PlatformUploadStatus;
        platformVideoId: string;
        platformUrl: string;
        document: string;
        scheduledAt: string;
        errorMessage: string;
        resumableUploadUrl?: string;
        resumableBytesConfirmed?: number;
        resumableUpdatedAt?: string;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    _id: string
    uploadJobId: string
    platformVideoId: string
    platformUrl: string
    document: string
    scheduledAt: string
    errorMessage: string
    resumableUploadUrl?: string
    resumableBytesConfirmed?: number
    resumableUpdatedAt?: string
    createdAt: Date
    updatedAt: Date