# `Twilio.Resources.Frontline.V1.User`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/resources/frontline/v1/user.ex#L2)

A User resource represents a frontline user.

SID prefix: `US`

## Properties

| Field | Description |
|-------|-------------|
| `avatar` | The avatar URL which will be shown in Frontline application. |
| `friendly_name` | The string that you assigned to describe the User.. PII: standard |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `identity` | The application-defined string that uniquely identifies the resource's User. This value is often a username or an email address, and is case-sensitive.. PII: standard |
| `is_available` | Whether the User is available for new conversations. Defaults to `false` for new users. |
| `sid` | The unique string that we created to identify the User resource. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `state` | Current state of this user. Can be either `active` or `deactivated` and defaults to `active`. Values: `active`, `deactivated` |
| `url` | An absolute API resource URL for this user.. Format: uri |

# `t`

```elixir
@type t() :: %Twilio.Resources.Frontline.V1.User{
  avatar: String.t() | nil,
  friendly_name: String.t() | nil,
  identity: String.t() | nil,
  is_available: boolean() | nil,
  sid: String.t() | nil,
  state: String.t(),
  url: String.t() | nil
}
```

# `object_name`

# `sid_prefix`

---

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