commonMain.at.asitplus.wallet.eprescription.EPrescriptionDataElements.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eprescription-jvm Show documentation
Show all versions of eprescription-jvm Show documentation
Use data representing OTT for ePrescription as a SD JWT Credential
The newest version!
package at.asitplus.wallet.eprescription
object EPrescriptionDataElements {
const val OTT = "one_time_token"
const val COUNTRY_CODE = "country_code"
const val VALID_UNTIL = "valid_until"
val MANDATORY_ELEMENTS = listOf(
OTT,
COUNTRY_CODE,
VALID_UNTIL,
)
val ALL_ELEMENTS = listOf(
OTT,
COUNTRY_CODE,
VALID_UNTIL,
)
}