# `Twilio.Resources.Iam.Organizations.Token`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/resources/iam/organizations/token.ex#L2)

Token resource.

## Properties

| Field | Description |
|-------|-------------|
| `access_token` | Token which carries the necessary information to access a Twilio resource directly. |
| `expires_in` | Format: int64 |
| `id_token` | Token which carries the information necessary of user profile. |
| `refresh_token` | Token which carries the information necessary to get a new access token. |
| `token_type` | Token type |

# `t`

```elixir
@type t() :: %Twilio.Resources.Iam.Organizations.Token{
  access_token: String.t() | nil,
  expires_in: integer() | nil,
  id_token: String.t() | nil,
  refresh_token: String.t() | nil,
  token_type: String.t() | nil
}
```

# `object_name`

---

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