Jwt Authentication Response
data class JwtAuthenticationResponse(val audiences: List<String>? = null, val claims: List<TokenClaimResponse>? = null, val issuers: List<String>? = null, val keys: List<Either<EccTokenKeyResponse, RsaTokenKeyResponse>>? = null, val type: String)
Properties for access validation based on JSON Web Tokens (JWT).
Constructors
Link copied to clipboard
fun JwtAuthenticationResponse(audiences: List<String>? = null, claims: List<TokenClaimResponse>? = null, issuers: List<String>? = null, keys: List<Either<EccTokenKeyResponse, RsaTokenKeyResponse>>? = null, type: String)