Interface ApprovalFlowRejectedMessage

All Superinterfaces:
BaseResource, DomainResource<Message>, Identifiable<Message>, Message, Versioned<Message>

public interface ApprovalFlowRejectedMessage extends 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 Details

    • APPROVAL_FLOW_REJECTED

      static final String APPROVAL_FLOW_REJECTED
      discriminator value for ApprovalFlowRejectedMessage
      See Also:
  • Method Details

    • getAssociate

      @NotNull @Valid @NotNull @Valid CustomerReference 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

      @NotNull @Valid @NotNull @Valid OrderReference getOrder()

      Reference to the Order that received the rejection.

      Returns:
      order
    • setAssociate

      void setAssociate(CustomerReference associate)

      Reference to the Customer who rejected the Approval Flow.

      Parameters:
      associate - value to be set
    • setRejectionReason

      void setRejectionReason(String rejectionReason)

      Description of the reason why the Approval Flow was rejected.

      Parameters:
      rejectionReason - value to be set
    • setOrder

      void setOrder(OrderReference order)

      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

      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

      default <T> T withApprovalFlowRejectedMessage(Function<ApprovalFlowRejectedMessage,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<ApprovalFlowRejectedMessage> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference