# `Twilio.Conversations.V1.Service.Conversation.Message.ReceiptService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/conversations/v1/service/conversation/message/receipt_service.ex#L2)

A Service Message Receipt resource represents a delivery/read receipt of a message in a conversation.

Operations: `list`, `fetch`

# `fetch`

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

Fetch the delivery and read receipts of the conversation message

Operation: `FetchServiceConversationMessageReceipt` | Tags: ConversationsV1DeliveryReceipt

# `list`

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

Retrieve a list of all delivery and read receipts of the conversation message

Operation: `ListServiceConversationMessageReceipt` | Tags: ConversationsV1DeliveryReceipt

# `stream`

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

Stream: Retrieve a list of all delivery and read receipts of the conversation message (lazy auto-pagination).

---

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