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

    Interface PartInfo

    Metadata for a single uploaded part of a large file.

    interface PartInfo {
        contentLength: number;
        contentSha1: string;
        fileId: LargeFileId;
        partNumber: number;
        uploadTimestamp: number;
    }
    Index

    Properties

    contentLength: number

    Size of this part in bytes.

    contentSha1: string

    SHA-1 checksum of this part's content.

    fileId: LargeFileId

    ID of the large file this part belongs to.

    partNumber: number

    Part number within the large file.

    uploadTimestamp: number

    UTC timestamp (milliseconds) when this part was uploaded.