# `Twilio.Conversations.V1.Service.User.ConversationService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/conversations/v1/service/user/conversation_service.ex#L2)

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
A Service User Conversation resource represents a conversation of the user belonging to a specific conversation service.

Operations: `list`, `fetch`, `update`, `delete`

# `delete`

```elixir
@spec delete(Twilio.Client.t(), String.t(), String.t(), String.t(), keyword()) ::
  {:ok, map()} | {:ok, map(), map()} | :ok | {:error, Twilio.Error.t()}
```

Delete a specific User Conversation.

Operation: `DeleteServiceUserConversation` | Tags: ConversationsV1UserConversation

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), String.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Conversations.V1.Service.User.Conversation.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch a specific User Conversation.

Operation: `FetchServiceUserConversation` | Tags: ConversationsV1UserConversation

# `list`

```elixir
@spec list(Twilio.Client.t(), String.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieve a list of all User Conversations for the User.

Operation: `ListServiceUserConversation` | Tags: ConversationsV1UserConversation

# `stream`

```elixir
@spec stream(Twilio.Client.t(), String.t(), String.t(), map(), keyword()) ::
  Enumerable.t()
```

Stream: Retrieve a list of all User Conversations for the User. (lazy auto-pagination).

# `update`

```elixir
@spec update(Twilio.Client.t(), String.t(), String.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Resources.Conversations.V1.Service.User.Conversation.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Update a specific User Conversation.

Operation: `UpdateServiceUserConversation` | Tags: ConversationsV1UserConversation

## Optional Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `LastReadMessageIndex` | integer | The index of the last Message in the Conversation that the Participant has read. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `LastReadTimestamp` | string (date-time) | The date of the last message read in conversation by the user, given in ISO 8601 format. |
| `NotificationLevel` | string |  Values: `default`, `muted` |

---

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