View Source PrimaAuth0Ex.TokenProvider.TokenInfo (prima_auth0_ex v0.4.6)

Information related to a JWT, including the JWT itself and additional metadata

Link to this section Summary

Link to this section Types

@type t() :: %PrimaAuth0Ex.TokenProvider.TokenInfo{
  expires_at: non_neg_integer(),
  issued_at: non_neg_integer(),
  jwt: String.t(),
  kid: String.t() | nil
}

Link to this section Functions

@spec from_jwt(String.t()) :: t()