Interface ApprovalFlowRejectedMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,Versioned<Message>
Generated after an Approval Flow is rejected.
Example to create an instance using the builder pattern
ApprovalFlowRejectedMessage approvalFlowRejectedMessage = ApprovalFlowRejectedMessage.builder()
.id("{id}")
.version(0.3)
.createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.sequenceNumber(0.3)
.resource(resourceBuilder -> resourceBuilder)
.resourceVersion(0.3)
.associate(associateBuilder -> associateBuilder)
.order(orderBuilder -> orderBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ApprovalFlowRejectedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ApprovalFlowRejectedMessagebuilder
(ApprovalFlowRejectedMessage template) create builder for ApprovalFlowRejectedMessage instancestatic ApprovalFlowRejectedMessage
deepCopy
(ApprovalFlowRejectedMessage template) factory method to create a deep copy of ApprovalFlowRejectedMessage@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.static ApprovalFlowRejectedMessage
of()
factory methodstatic ApprovalFlowRejectedMessage
of
(ApprovalFlowRejectedMessage template) factory method to create a shallow copy ApprovalFlowRejectedMessagevoid
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<ApprovalFlowRejectedMessage>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.common.BaseResource
withBaseResource
Methods inherited from interface com.commercetools.api.models.DomainResource
get
Methods inherited from interface com.commercetools.api.models.message.Message
getCreatedAt, getCreatedBy, getId, getLastModifiedAt, getLastModifiedBy, getResource, getResourceUserProvidedIdentifiers, getResourceVersion, getSequenceNumber, getType, getVersion, setCreatedAt, setCreatedBy, setId, setLastModifiedAt, setLastModifiedBy, setResource, setResourceUserProvidedIdentifiers, setResourceVersion, setSequenceNumber, setVersion, withMessage
-
Field Details
-
APPROVAL_FLOW_REJECTED
discriminator value for ApprovalFlowRejectedMessage- 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 ApprovalFlowRejectedMessage
-
of
factory method to create a shallow copy ApprovalFlowRejectedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ApprovalFlowRejectedMessage deepCopy(@Nullable ApprovalFlowRejectedMessage template) factory method to create a deep copy of ApprovalFlowRejectedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ApprovalFlowRejectedMessage- Returns:
- builder
-
builder
create builder for ApprovalFlowRejectedMessage instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withApprovalFlowRejectedMessage
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-