public InteropActionEntity()

in service/src/main/java/org/apache/fineract/cn/interoperation/service/internal/repository/InteropActionEntity.java [97:105]


    public InteropActionEntity(@NotNull String identifier, @NotNull InteropTransactionEntity transaction, @NotNull InteropActionType actionType,
                               int seqNo, @NotNull String createdBy, @NotNull LocalDateTime createdOn) {
        this.identifier = identifier;
        this.transaction = transaction;
        this.actionType = actionType;
        this.seqNo = seqNo;
        this.createdBy = createdBy;
        this.createdOn = createdOn;
    }