AccessTokenEntity type

Tipo de cache de token de acesso

type AccessTokenEntity = CredentialEntity & {
  cachedAt: string
  expiresOn: string
  extendedExpiresOn?: string
  realm: string
  refreshOn?: string
  requestedClaims?: string
  requestedClaimsHash?: string
  target: string
  tokenType?: AuthenticationScheme
}