Implemented toString()

This commit is contained in:
dankito 2020-04-30 02:26:49 +02:00
parent 6556f12f1e
commit 66496938d3
1 changed files with 7 additions and 1 deletions

View File

@ -26,4 +26,10 @@ open class TanProcedureParameters(
val nameOfTanMediaRequired: BezeichnungDesTanMediumsErforderlich,
val hhdUcResponseRequired: Boolean,
val countSupportedActiveTanMedia: Int?
)
) {
override fun toString(): String {
return "$procedureName $technicalTanProcedureIdentification"
}
}