Interface ObjectInfo

interface ObjectInfo {
    bucket: string;
    chunks: number;
    deleted: boolean;
    description?: string;
    digest: string;
    headers?: MsgHdrs;
    metadata?: Record<string, string>;
    mtime: string;
    name: string;
    nuid: string;
    options?: ObjectStoreMetaOptions;
    revision: number;
    size: number;
}

Hierarchy (view full)

Properties

bucket: string

The name of the bucket where the object is stored.

chunks: number

The number of entries storing the object.

deleted: boolean

True if the object was deleted.

description?: string
digest: string

A cryptographic checksum of the data as a whole.

headers?: MsgHdrs
metadata?: Record<string, string>
mtime: string

An UTC timestamp

name: string
nuid: string

The current ID of the entries holding the data for the object.

revision: number

The revision number for the entry

size: number

The size in bytes of the object.