Properties that can be used to construct or update an instance of FeatureStream.

interface FeatureStreamProperties {
    features?: AsyncIterable<Feature, any, any> | Iterable<Feature, any, any>;
    id?: string;
    title?: string;
}

Hierarchy (view full)

Properties

Properties

features?: AsyncIterable<Feature, any, any> | Iterable<Feature, any, any>

The features in the feature stream.

id?: string

The unique ID to assign to the entity. If not specified, one will be generated.

title?: string

A human readable title describing the feature results.