Interface ReviewStateTransitionMessagePayload

All Superinterfaces:
MessagePayload
All Known Implementing Classes:
ReviewStateTransitionMessagePayloadImpl

Generated after a successful Transition State update action.


Example to create an instance using the builder pattern

     ReviewStateTransitionMessagePayload reviewStateTransitionMessagePayload = ReviewStateTransitionMessagePayload.builder()
             .newState(newStateBuilder -> newStateBuilder)
             .oldIncludedInStatistics(true)
             .newIncludedInStatistics(true)
             .force(true)
             .build()