Fixed that receiverName and iban are mandatory values
This commit is contained in:
parent
2845900731
commit
423887cf53
|
@ -7,13 +7,13 @@ open class EpcQrCodeConfig(
|
||||||
* Name of the Receiver. Mandatory.
|
* Name of the Receiver. Mandatory.
|
||||||
* Max. 70 characters
|
* Max. 70 characters
|
||||||
*/
|
*/
|
||||||
open val receiverName: String = "",
|
open val receiverName: String,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Receiver's IBAN. Mandatory.
|
* Receiver's IBAN. Mandatory.
|
||||||
* Max. 34 bytes.
|
* Max. 34 bytes.
|
||||||
*/
|
*/
|
||||||
open val iban: String = "",
|
open val iban: String,
|
||||||
|
|
||||||
open val bic: String? = null,
|
open val bic: String? = null,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue