public InteropIdentifierEntity()

in service/src/main/java/org/apache/fineract/cn/interoperation/service/internal/repository/InteropIdentifierEntity.java [70:78]


    public InteropIdentifierEntity(@NotNull String customerAccountIdentifier, @NotNull InteropIdentifierType type, @NotNull String value,
                                   String subValueOrType, @NotNull String createdBy, @NotNull LocalDateTime createdOn) {
        this.customerAccountIdentifier = customerAccountIdentifier;
        this.type = type;
        this.value = value;
        this.subValueOrType = subValueOrType;
        this.createdBy = createdBy;
        this.createdOn = createdOn;
    }