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
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ApprovalFlowRejectedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ApprovalFlowRejectedMessagePayloadbuilder
(ApprovalFlowRejectedMessagePayload template) create builder for ApprovalFlowRejectedMessagePayload instancedeepCopy
(ApprovalFlowRejectedMessagePayload template) factory method to create a deep copy of ApprovalFlowRejectedMessagePayload@NotNull @Valid CustomerReference
Reference to the Customer who rejected the Approval Flow.@NotNull @Valid OrderReference
getOrder()
Reference to the Order that received the rejection.Description of the reason why the Approval Flow was rejected.of()
factory methodof
(ApprovalFlowRejectedMessagePayload template) factory method to create a shallow copy ApprovalFlowRejectedMessagePayloadvoid
setAssociate
(CustomerReference associate) Reference to the Customer who rejected the Approval Flow.void
setOrder
(OrderReference order) Reference to the Order that received the rejection.void
setRejectionReason
(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> T
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
-
APPROVAL_FLOW_REJECTED
discriminator value for ApprovalFlowRejectedMessagePayload- See Also:
-
-
Method Details
-
getAssociate
Reference to the Customer who rejected the Approval Flow.
- Returns:
- associate
-
getRejectionReason
String getRejectionReason()Description of the reason why the Approval Flow was rejected.
- Returns:
- rejectionReason
-
getOrder
Reference to the Order that received the rejection.
- Returns:
- order
-
setAssociate
Reference to the Customer who rejected the Approval Flow.
- Parameters:
associate
- value to be set
-
setRejectionReason
Description of the reason why the Approval Flow was rejected.
- Parameters:
rejectionReason
- value to be set
-
setOrder
Reference to the Order that received the rejection.
- 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
-
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
-