Readonly
namespaceCreates an item of this kind from its serialized representation.
The SDK uses this function to translate data that is returned by a PersistentDataStore. Store implementations do not normally need to call it, but there is a special case described in the documentation for PersistentDataStore, regarding updates.
The returned ItemDescriptor has two properties: ItemDescriptor#item, which
is the deserialized object or a null
value for a deleted item placeholder, and
ItemDescriptor#version, which provides the object's version number regardless of
whether it is deleted or not.
the serialized representation
an ItemDescriptor describing the deserialized object or null if the item could not be deserialized
Generated using TypeDoc
Represents a separately namespaced collection of storable data items. The SDK passes instances of this type to the persistent data store to specify whether it is referring to a feature flag, a user segment, etc. The data store implementation should not look for a specific data kind (such as feature flags), but should treat all data kinds generically.