Alokai

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

NameRequiredTypeDescription
codeOptionalstringCode of the feature {string} Feature
comparableOptionalbooleanFlag defining it feature is comparable {boolean} Feature
descriptionOptionalstringDescription of the feature {string} Feature
featureUnitOptionalFeatureUnit{FeatureUnit} Feature
featureValuesOptionalArray<FeatureValue>List of feature values {Array<FeatureValue>} Feature
nameOptionalstringName of the feature {string} Feature
rangeOptionalbooleanRange number of the feature {boolean} Feature
typeOptionalstringType of the feature {string} Feature

Referenced Types

On this page