Interface MyQuoteChangeMyQuoteStateAction

All Superinterfaces:
MyQuoteUpdateAction, ResourceUpdateAction<MyQuoteUpdateAction>

public interface MyQuoteChangeMyQuoteStateAction extends MyQuoteUpdateAction

When accepting, declining, or renegotiating B2B Quotes, the Customer must have the AcceptMyQuotes, DeclineMyQuotes, or RenegotiateMyQuotes Permission, respectively. If the required Permission is missing, an AssociateMissingPermission error is returned.


Example to create an instance using the builder pattern

     MyQuoteChangeMyQuoteStateAction myQuoteChangeMyQuoteStateAction = MyQuoteChangeMyQuoteStateAction.builder()
             .quoteState(MyQuoteState.DECLINED)
             .build()