Class CustomerGroupAssignmentBuilder

java.lang.Object
com.commercetools.api.models.customer.CustomerGroupAssignmentBuilder
All Implemented Interfaces:
Builder<CustomerGroupAssignment>

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

     CustomerGroupAssignment customerGroupAssignment = CustomerGroupAssignment.builder()
             .customerGroup(customerGroupBuilder -> customerGroupBuilder)
             .build()