Interface QuoteRenegotiationRequestedMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after a successful Request Quote Renegotiation update action.
Example to create an instance using the builder pattern
QuoteRenegotiationRequestedMessagePayload quoteRenegotiationRequestedMessagePayload = QuoteRenegotiationRequestedMessagePayload.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for QuoteRenegotiationRequestedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for QuoteRenegotiationRequestedMessagePayloadcreate builder for QuoteRenegotiationRequestedMessagePayload instancefactory method to create a deep copy of QuoteRenegotiationRequestedMessagePayloadMessage from the Buyer regarding the Quote renegotiation request.of()
factory methodof
(QuoteRenegotiationRequestedMessagePayload template) factory method to create a shallow copy QuoteRenegotiationRequestedMessagePayloadvoid
setBuyerComment
(String buyerComment) Message from the Buyer regarding the Quote renegotiation request.static com.fasterxml.jackson.core.type.TypeReference<QuoteRenegotiationRequestedMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withQuoteRenegotiationRequestedMessagePayload
(Function<QuoteRenegotiationRequestedMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayload
Methods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
QUOTE_RENEGOTIATION_REQUESTED
discriminator value for QuoteRenegotiationRequestedMessagePayload- See Also:
-
-
Method Details
-
getBuyerComment
String getBuyerComment()Message from the Buyer regarding the Quote renegotiation request.
- Returns:
- buyerComment
-
setBuyerComment
Message from the Buyer regarding the Quote renegotiation request.
- Parameters:
buyerComment
- value to be set
-
of
factory method- Returns:
- instance of QuoteRenegotiationRequestedMessagePayload
-
of
static QuoteRenegotiationRequestedMessagePayload of(QuoteRenegotiationRequestedMessagePayload template) factory method to create a shallow copy QuoteRenegotiationRequestedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static QuoteRenegotiationRequestedMessagePayload deepCopy(@Nullable QuoteRenegotiationRequestedMessagePayload template) factory method to create a deep copy of QuoteRenegotiationRequestedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for QuoteRenegotiationRequestedMessagePayload- Returns:
- builder
-
builder
static QuoteRenegotiationRequestedMessagePayloadBuilder builder(QuoteRenegotiationRequestedMessagePayload template) create builder for QuoteRenegotiationRequestedMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withQuoteRenegotiationRequestedMessagePayload
default <T> T withQuoteRenegotiationRequestedMessagePayload(Function<QuoteRenegotiationRequestedMessagePayload, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<QuoteRenegotiationRequestedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-