Interface QuoteUpdateAction

All Superinterfaces:
ResourceUpdateAction<QuoteUpdateAction>
All Known Subinterfaces:
QuoteChangeCustomerAction, QuoteChangeQuoteStateAction, QuoteRequestQuoteRenegotiationAction, QuoteSetCustomFieldAction, QuoteSetCustomTypeAction, QuoteTransitionStateAction
All Known Implementing Classes:
QuoteChangeCustomerActionImpl, QuoteChangeQuoteStateActionImpl, QuoteRequestQuoteRenegotiationActionImpl, QuoteSetCustomFieldActionImpl, QuoteSetCustomTypeActionImpl, QuoteTransitionStateActionImpl, QuoteUpdateActionImpl

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()