API - AttributeGroup
The AttributeGroup class represents a group of related attributes.
Fields
| Field | Type | Description |
|---|---|---|
name | String | Group name |
active | Boolean | Whether group is active |
attributes | List<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();