# `Ory.Model.IntrospectedOAuth2Token`

Introspection contains an access token's session data as specified by [IETF RFC 7662](https://tools.ietf.org/html/rfc7662)

# `t`

```elixir
@type t() :: %Ory.Model.IntrospectedOAuth2Token{
  active: boolean(),
  aud: [String.t()] | nil,
  client_id: String.t() | nil,
  exp: integer() | nil,
  ext: %{optional(String.t()) =&gt; any()} | 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
}
```

# `decode`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
