Package-level declarations

Types

Link copied to clipboard
data class AccessTokenClaims(val expiresAt: Instant, val accountExternalId: String, val email: String?, val entitlements: List<Entitlement>)
Link copied to clipboard

This class provides methods for checking the validity of JWTs obtained from Auth API V2 and parsing claims included in those tokens.

Link copied to clipboard
data class Entitlement(val product: String, val name: String)
Link copied to clipboard
data class RefreshTokenClaims(val expiresAt: Instant, val accountExternalId: String)