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

    Interface UploadPartResponse

    Response from the b2_upload_part API call.

    interface UploadPartResponse {
        contentLength: number;
        contentSha1: string;
        fileId: LargeFileId;
        partNumber: number;
        serverSideEncryption: EncryptionSetting;
        uploadTimestamp: number;
    }
    Index

    Properties

    contentLength: number

    Size of the uploaded part in bytes.

    contentSha1: string

    SHA-1 checksum of the uploaded part content.

    fileId: LargeFileId

    ID of the large file this part belongs to.

    partNumber: number

    Part number within the large file.

    serverSideEncryption: EncryptionSetting

    Server-side encryption applied to this part.

    uploadTimestamp: number

    UTC timestamp (milliseconds) when this part was uploaded.