Made bankCode and customerId settable

This commit is contained in:
dankito 2020-08-05 14:31:36 +02:00
parent c49ed6a6ff
commit 374818f748
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ import net.dankito.utils.multiplatform.UUID
//@JsonIdentityInfo(property = "technicalId", generator = ObjectIdGenerators.PropertyGenerator::class) // to avoid stack overflow due to circular references //@JsonIdentityInfo(property = "technicalId", generator = ObjectIdGenerators.PropertyGenerator::class) // to avoid stack overflow due to circular references
open class Customer( open class Customer(
open val bankCode: String, open var bankCode: String,
open val customerId: String, open var customerId: String,
open var password: String, open var password: String,
open var finTsServerAddress: String, open var finTsServerAddress: String,
open var bankName: String, open var bankName: String,