Interface QuoteChangeCustomerAction

All Superinterfaces:
QuoteUpdateAction, ResourceUpdateAction<QuoteUpdateAction>

public interface QuoteChangeCustomerAction extends QuoteUpdateAction

Changes the owner of a Quote to a different Customer. Customer Group is not updated. This update action produces the Quote Customer Changed Message.


Example to create an instance using the builder pattern

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