Interface StagedQuoteSellerCommentSetMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after a successful Set Seller Comment update action.
Example to create an instance using the builder pattern
StagedQuoteSellerCommentSetMessagePayload stagedQuoteSellerCommentSetMessagePayload = StagedQuoteSellerCommentSetMessagePayload.builder()
.sellerComment("{sellerComment}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for StagedQuoteSellerCommentSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for StagedQuoteSellerCommentSetMessagePayloadcreate builder for StagedQuoteSellerCommentSetMessagePayload instancefactory method to create a deep copy of StagedQuoteSellerCommentSetMessagePayload@NotNull String
sellerComment
on the StagedQuote after a successful Set Seller Comment update action.of()
factory methodof
(StagedQuoteSellerCommentSetMessagePayload template) factory method to create a shallow copy StagedQuoteSellerCommentSetMessagePayloadvoid
setSellerComment
(String sellerComment) sellerComment
on the StagedQuote after a successful Set Seller Comment update action.static com.fasterxml.jackson.core.type.TypeReference<StagedQuoteSellerCommentSetMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withStagedQuoteSellerCommentSetMessagePayload
(Function<StagedQuoteSellerCommentSetMessagePayload, 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
-
STAGED_QUOTE_SELLER_COMMENT_SET
discriminator value for StagedQuoteSellerCommentSetMessagePayload- See Also:
-
-
Method Details
-
getSellerComment
sellerComment
on the StagedQuote after a successful Set Seller Comment update action.- Returns:
- sellerComment
-
setSellerComment
sellerComment
on the StagedQuote after a successful Set Seller Comment update action.- Parameters:
sellerComment
- value to be set
-
of
factory method- Returns:
- instance of StagedQuoteSellerCommentSetMessagePayload
-
of
static StagedQuoteSellerCommentSetMessagePayload of(StagedQuoteSellerCommentSetMessagePayload template) factory method to create a shallow copy StagedQuoteSellerCommentSetMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static StagedQuoteSellerCommentSetMessagePayload deepCopy(@Nullable StagedQuoteSellerCommentSetMessagePayload template) factory method to create a deep copy of StagedQuoteSellerCommentSetMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for StagedQuoteSellerCommentSetMessagePayload- Returns:
- builder
-
builder
static StagedQuoteSellerCommentSetMessagePayloadBuilder builder(StagedQuoteSellerCommentSetMessagePayload template) create builder for StagedQuoteSellerCommentSetMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withStagedQuoteSellerCommentSetMessagePayload
default <T> T withStagedQuoteSellerCommentSetMessagePayload(Function<StagedQuoteSellerCommentSetMessagePayload, 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<StagedQuoteSellerCommentSetMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-