Interface ApprovalFlowRejectedMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
Generated after an Approval Flow is rejected.
Example to create an instance using the builder pattern
ApprovalFlowRejectedMessagePayload approvalFlowRejectedMessagePayload = ApprovalFlowRejectedMessagePayload.builder()
.associate(associateBuilder -> associateBuilder)
.order(orderBuilder -> orderBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ApprovalFlowRejectedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ApprovalFlowRejectedMessagePayloadbuilder(ApprovalFlowRejectedMessagePayload template) create builder for ApprovalFlowRejectedMessagePayload instancecopyDeep()deepCopy(ApprovalFlowRejectedMessagePayload template) factory method to create a deep copy of ApprovalFlowRejectedMessagePayload@NotNull @Valid CustomerReference@NotNull @Valid OrderReferencegetOrder()Description of the reason why the Approval Flow was rejected.of()factory methodof(ApprovalFlowRejectedMessagePayload template) factory method to create a shallow copy ApprovalFlowRejectedMessagePayloadvoidsetAssociate(CustomerReference associate) voidsetOrder(OrderReference order) voidsetRejectionReason(String rejectionReason) Description of the reason why the Approval Flow was rejected.static com.fasterxml.jackson.core.type.TypeReference<ApprovalFlowRejectedMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
APPROVAL_FLOW_REJECTED
discriminator value for ApprovalFlowRejectedMessagePayload- See Also:
-
-
Method Details
-
getAssociate
- Returns:
- associate
-
getRejectionReason
String getRejectionReason()Description of the reason why the Approval Flow was rejected.
- Returns:
- rejectionReason
-
getOrder
- Returns:
- order
-
setAssociate
- Parameters:
associate- value to be set
-
setRejectionReason
Description of the reason why the Approval Flow was rejected.
- Parameters:
rejectionReason- value to be set
-
setOrder
- Parameters:
order- value to be set
-
of
factory method- Returns:
- instance of ApprovalFlowRejectedMessagePayload
-
of
factory method to create a shallow copy ApprovalFlowRejectedMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ApprovalFlowRejectedMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload
-
deepCopy
@Nullable static ApprovalFlowRejectedMessagePayload deepCopy(@Nullable ApprovalFlowRejectedMessagePayload template) factory method to create a deep copy of ApprovalFlowRejectedMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ApprovalFlowRejectedMessagePayload- Returns:
- builder
-
builder
static ApprovalFlowRejectedMessagePayloadBuilder builder(ApprovalFlowRejectedMessagePayload template) create builder for ApprovalFlowRejectedMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withApprovalFlowRejectedMessagePayload
default <T> T withApprovalFlowRejectedMessagePayload(Function<ApprovalFlowRejectedMessagePayload, 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<ApprovalFlowRejectedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-