AuthnRequestSingleClaim

@Serializable
data class AuthnRequestSingleClaim(val essential: Boolean? = null, val value: String? = null, val values: Array<String>? = null)(source)

Constructors

Link copied to clipboard
constructor(essential: Boolean? = null, value: String? = null, values: Array<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
@SerialName(value = "essential")
val essential: Boolean? = null

OIDC: OPTIONAL. Indicates whether the Claim being requested is an Essential Claim. If the value is true, this indicates that the Claim is an Essential Claim.

Link copied to clipboard
@SerialName(value = "value")
val value: String? = null

OIDC: OPTIONAL. Requests that the Claim be returned with a particular value.

Link copied to clipboard
@SerialName(value = "values")
val values: Array<String>? = null

OIDC: OPTIONAL. Requests that the Claim be returned with one of a set of values, with the values appearing in order of preference.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard