Interface ChangeTransactionTimestampChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeTransactionTimestampChangeImpl

public interface ChangeTransactionTimestampChange extends Change

Change triggered by the Change TransactionTimestamp update action.


Example to create an instance using the builder pattern

     ChangeTransactionTimestampChange changeTransactionTimestampChange = ChangeTransactionTimestampChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .transaction(transactionBuilder -> transactionBuilder)
             .build()