Class AttributeGroupUpdateBuilder

java.lang.Object
com.commercetools.api.models.attribute_group.AttributeGroupUpdateBuilder
All Implemented Interfaces:
Builder<AttributeGroupUpdate>

public class AttributeGroupUpdateBuilder extends Object implements Builder<AttributeGroupUpdate>
AttributeGroupUpdateBuilder
Example to create an instance using the builder pattern

     AttributeGroupUpdate attributeGroupUpdate = AttributeGroupUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()