Skip to main content
Version: latest 1.3.x

API - AttributeGroup

The AttributeGroup class represents a group of related attributes.

Fields

FieldTypeDescription
nameStringGroup name
activeBooleanWhether group is active
attributesList<Attribute>Attributes in the group

Getters

/**
* Get the name (former manual id) of the attribute group
*/
String getName();

/**
* Currently always true
*/
Boolean getActive();

/**
* Get the attributes in the group
List<Attribute> getAttributes();