You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
Feature
Representation of a Feature Feature
export interface Feature {
'code'?: string;
'comparable'?: boolean;
'description'?: string;
'featureUnit'?: FeatureUnit;
'featureValues'?: Array<FeatureValue>;
'name'?: string;
'range'?: boolean;
'type'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
code | Optional | string | Code of the feature {string} Feature |
comparable | Optional | boolean | Flag defining it feature is comparable {boolean} Feature |
description | Optional | string | Description of the feature {string} Feature |
featureUnit | Optional | FeatureUnit | {FeatureUnit} Feature |
featureValues | Optional | Array<FeatureValue> | List of feature values {Array<FeatureValue>} Feature |
name | Optional | string | Name of the feature {string} Feature |
range | Optional | boolean | Range number of the feature {boolean} Feature |
type | Optional | string | Type of the feature {string} Feature |