Type Alias ObjectInfo

ObjectInfo: ObjectStoreMeta & {
    bucket: string;
    chunks: number;
    deleted: boolean;
    digest: string;
    mtime: string;
    nuid: string;
    revision: number;
    size: number;
}

Type declaration

  • 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.

  • digest: string

    A cryptographic checksum of the data as a whole.

  • mtime: string

    An UTC timestamp

  • 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.