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

    Interface DownloadHeaders

    Parsed headers from a B2 file download response.

    interface DownloadHeaders {
        contentLength: number;
        contentSha1: string | null;
        contentType: string;
        fileId: FileId;
        fileInfo: Record<string, string>;
        fileName: string;
        uploadTimestamp: number;
    }
    Index

    Properties

    contentLength: number

    Size of the downloaded content in bytes.

    contentSha1: string | null

    SHA-1 checksum of the full file content, or null for large files.

    contentType: string

    MIME type of the downloaded file content.

    fileId: FileId

    ID of the downloaded file version.

    fileInfo: Record<string, string>

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

    fileName: string

    Full path and name of the downloaded file.

    uploadTimestamp: number

    UTC timestamp (milliseconds) when the file was uploaded.