Class QuoteChangeCustomerActionBuilder

java.lang.Object
com.commercetools.api.models.quote.QuoteChangeCustomerActionBuilder
All Implemented Interfaces:
Builder<QuoteChangeCustomerAction>

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

     QuoteChangeCustomerAction quoteChangeCustomerAction = QuoteChangeCustomerAction.builder()
             .customer(customerBuilder -> customerBuilder)
             .build()