Fixed that receiverName and iban are mandatory values

This commit is contained in:
dankito 2024-10-16 00:45:13 +02:00
parent 2845900731
commit 423887cf53
1 changed files with 2 additions and 2 deletions

View File

@ -7,13 +7,13 @@ open class EpcQrCodeConfig(
* Name of the Receiver. Mandatory.
* Max. 70 characters
*/
open val receiverName: String = "",
open val receiverName: String,
/**
* Receiver's IBAN. Mandatory.
* Max. 34 bytes.
*/
open val iban: String = "",
open val iban: String,
open val bic: String? = null,