Interface QuoteUpdateAction

All Superinterfaces:
ResourceUpdateAction<QuoteUpdateAction>
All Known Subinterfaces:
QuoteChangeCustomerAction, QuoteChangeQuoteStateAction, QuoteRequestQuoteRenegotiationAction, QuoteSetCustomFieldAction, QuoteSetCustomTypeAction, QuoteTransitionStateAction

public interface QuoteUpdateAction extends ResourceUpdateAction<QuoteUpdateAction>
QuoteUpdateAction
Example to create a subtype instance using the builder pattern

     QuoteUpdateAction quoteUpdateAction = QuoteUpdateAction.changeCustomerBuilder()
             customer(customerBuilder -> customerBuilder)
             .build()