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

    Interface StartLargeFileResponse

    Response from the b2_start_large_file API call.

    interface StartLargeFileResponse {
        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 assigned to this large file upload. Use this to upload parts and finish the file.

    fileInfo: Record<string, string>

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

    fileName: string

    Name of the file being uploaded.