Ory.Model.IntrospectedOAuth2Token (ory_client v1.1.23)

Introspection contains an access token's session data as specified by IETF RFC 7662

Link to this section Summary

Link to this section Types

@type t() :: %Ory.Model.IntrospectedOAuth2Token{
  active: boolean(),
  aud: [String.t()] | nil,
  client_id: String.t() | nil,
  exp: integer() | nil,
  ext: %{optional(String.t()) => AnyType} | nil,
  iat: integer() | nil,
  iss: String.t() | nil,
  nbf: integer() | nil,
  obfuscated_subject: String.t() | nil,
  scope: String.t() | nil,
  sub: String.t() | nil,
  token_type: String.t() | nil,
  token_use: String.t() | nil,
  username: String.t() | nil
}