Set default values for account transaction

This commit is contained in:
dankito 2020-10-28 15:39:52 +01:00
parent a0e9864a73
commit 518f8c848a
1 changed files with 24 additions and 24 deletions

View File

@ -26,33 +26,33 @@ interface IModelCreator {
otherPartyAccountId: String?, otherPartyAccountId: String?,
bookingText: String?, bookingText: String?,
valueDate: Date, valueDate: Date,
statementNumber: Int, statementNumber: Int = 1,
sequenceNumber: Int?, sequenceNumber: Int? = null,
openingBalance: BigDecimal?, openingBalance: BigDecimal? = null,
closingBalance: BigDecimal?, closingBalance: BigDecimal? = null,
endToEndReference: String?, endToEndReference: String? = null,
customerReference: String?, customerReference: String? = null,
mandateReference: String?, mandateReference: String? = null,
creditorIdentifier: String?, creditorIdentifier: String? = null,
originatorsIdentificationCode: String?, originatorsIdentificationCode: String? = null,
compensationAmount: String?, compensationAmount: String? = null,
originalAmount: String?, originalAmount: String? = null,
sepaReference: String?, sepaReference: String? = null,
deviantOriginator: String?, deviantOriginator: String? = null,
deviantRecipient: String?, deviantRecipient: String? = null,
referenceWithNoSpecialType: String?, referenceWithNoSpecialType: String? = null,
primaNotaNumber: String?, primaNotaNumber: String? = null,
textKeySupplement: String?, textKeySupplement: String? = null,
currencyType: String?, currencyType: String? = null,
bookingKey: String, bookingKey: String = "",
referenceForTheAccountOwner: String, referenceForTheAccountOwner: String = "",
referenceOfTheAccountServicingInstitution: String?, referenceOfTheAccountServicingInstitution: String? = null,
supplementaryDetails: String?, supplementaryDetails: String? = null,
transactionReferenceNumber: String, transactionReferenceNumber: String = "",
relatedReferenceNumber: String? relatedReferenceNumber: String? = null
) : IAccountTransaction ) : IAccountTransaction