Class CustomerGroupAssignmentDraftBuilder

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

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

     CustomerGroupAssignmentDraft customerGroupAssignmentDraft = CustomerGroupAssignmentDraft.builder()
             .customerGroup(customerGroupBuilder -> customerGroupBuilder)
             .build()