@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface UnfinishedLargeFile

    Metadata for an in-progress large file upload that has not yet been finished or cancelled.

    interface UnfinishedLargeFile {
        accountId: string;
        bucketId: BucketId;
        contentType: string;
        fileId: LargeFileId;
        fileInfo: Record<string, string>;
        fileName: string;
    }
    Index

    Properties

    accountId: string

    Account that owns this file.

    bucketId: BucketId

    Bucket the file is being uploaded to.

    contentType: string

    MIME type of the file.

    fileId: LargeFileId

    ID of the large file.

    fileInfo: Record<string, string>

    User-defined key-value metadata stored with the file.

    fileName: string

    Name of the file.