Added isNumericTan
This commit is contained in:
parent
4acb58b571
commit
4298fc9e40
|
@ -10,5 +10,9 @@ open class TanMethod(
|
||||||
open val maxTanInputLength: Int? = null,
|
open val maxTanInputLength: Int? = null,
|
||||||
open val allowedTanFormat: AllowedTanFormat = AllowedTanFormat.Alphanumeric
|
open val allowedTanFormat: AllowedTanFormat = AllowedTanFormat.Alphanumeric
|
||||||
) {
|
) {
|
||||||
|
|
||||||
|
open val isNumericTan: Boolean
|
||||||
|
get() = allowedTanFormat == AllowedTanFormat.Numeric
|
||||||
|
|
||||||
override fun toString() = "$displayName ($type, ${identifier})"
|
override fun toString() = "$displayName ($type, ${identifier})"
|
||||||
}
|
}
|
Loading…
Reference in New Issue