SecretCodeRequest

data class SecretCodeRequest(val description: String, val isNumeric: Boolean, val length: Int?)

Describes secret text that user needs to enter.

Designed to be aligned with tx_code credential offer parameter in OpenID4VCI specification.

Constructors

Link copied to clipboard
constructor(description: String, isNumeric: Boolean, length: Int?)

Properties

Link copied to clipboard

Description for the requested secret text.

Link copied to clipboard

True if required text must only contain ASCII decimal digit characters.

Link copied to clipboard
val length: Int?

Number of required characters that must be entered.