Alokai

CCPGroup

Representation of a group in the context of the product configuration. CCPGroup

interface CCPGroup {
	'attributes'?: Array<CCPAttribute>;
	'complete'?: boolean;
	'configurable'?: boolean;
	'consistent'?: boolean;
	'description'?: string;
	'groupType'?: string;
	'id'?: string;
	'name'?: string;
	'subGroups'?: Array<CCPGroup>;
}

Properties

NameRequiredTypeDescription
attributesOptionalArray<CCPAttribute>List of attributes. {Array<CCPAttribute>} CCPGroup
completeOptionalbooleanGroup is complete, meaning each mandatory attribute has been specified. {boolean} CCPGroup
configurableOptionalbooleanGroup contains attributes. False if the group represents a non-configurable leaf in the configuration hierarchy. {boolean} CCPGroup
consistentOptionalbooleanGroup is consistent, meaning it contains no conflicts. {boolean} CCPGroup
descriptionOptionalstringLanguage dependent group description. {string} CCPGroup
groupTypeOptionalstringINSTANCE. {string} CCPGroup
idOptionalstringGroup Identifier. {string} CCPGroup
nameOptionalstringLanguage independent group name. {string} CCPGroup
subGroupsOptionalArray<CCPGroup>List of subordinate groups. {Array<CCPGroup>} CCPGroup

Referenced Types

On this page