Interface Entry

interface Entry {
    behavior: Behavior;
    containerId: MuidTuple;
    deletion?: boolean;
    entryId: MuidTuple;
    expiry?: number;
    placementId: MuidTuple;
    pointeeList: MuidTuple[];
    purging?: boolean;
    sourceList: MuidTuple[];
    storageKey: StorageKey;
    targetList: MuidTuple[];
    value?: Value;
}

Properties

behavior: Behavior
containerId: MuidTuple
deletion?: boolean
entryId: MuidTuple
expiry?: number
placementId: MuidTuple
pointeeList: MuidTuple[]
purging?: boolean
sourceList: MuidTuple[]
storageKey: StorageKey

storageKey is a KeyType if the entry is for a Directory, a Timestamp if it's for a sequence, MuidTuple if it's for a property, and empty list for a box.

targetList: MuidTuple[]
value?: Value