Class AttributeGroupDraftBuilder

java.lang.Object
com.commercetools.api.models.attribute_group.AttributeGroupDraftBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<AttributeGroupDraft>

public class AttributeGroupDraftBuilder extends Object implements io.vrap.rmf.base.client.Builder<AttributeGroupDraft>
AttributeGroupDraftBuilder
Example to create an instance using the builder pattern

     AttributeGroupDraft attributeGroupDraft = AttributeGroupDraft.builder()
             .name(nameBuilder -> nameBuilder)
             .plusAttributes(attributesBuilder -> attributesBuilder)
             .build()