Interface ApprovalFlowCreatedMessage

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

public interface ApprovalFlowCreatedMessage extends Message

Generated after an Approval Flow is created.


Example to create an instance using the builder pattern

     ApprovalFlowCreatedMessage approvalFlowCreatedMessage = ApprovalFlowCreatedMessage.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)
             .approvalFlow(approvalFlowBuilder -> approvalFlowBuilder)
             .build()
 
  • Field Details

    • APPROVAL_FLOW_CREATED

      static final String APPROVAL_FLOW_CREATED
      discriminator value for ApprovalFlowCreatedMessage
      See Also:
  • Method Details

    • getApprovalFlow

      @NotNull @Valid @NotNull @Valid ApprovalFlow getApprovalFlow()

      The Approval Flow that was created.

      Returns:
      approvalFlow
    • setApprovalFlow

      void setApprovalFlow(ApprovalFlow approvalFlow)

      The Approval Flow that was created.

      Parameters:
      approvalFlow - value to be set
    • of

      factory method
      Returns:
      instance of ApprovalFlowCreatedMessage
    • of

      factory method to create a shallow copy ApprovalFlowCreatedMessage
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ApprovalFlowCreatedMessage
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ApprovalFlowCreatedMessage
      Returns:
      builder
    • builder

      create builder for ApprovalFlowCreatedMessage instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withApprovalFlowCreatedMessage

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