# `Twilio.Resources.Conversations.V1.Conversation.Message.Receipt`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/resources/conversations/v1/conversation/message/receipt.ex#L2)

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

SID prefix: `DY`

Parent: `/Conversations/{ConversationSid}/Messages/{Sid}`

## Properties

| Field | Description |
|-------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `account_sid` | The unique ID of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this participant. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `channel_message_sid` | A messaging channel-specific identifier for the message delivered to participant e.g. `SMxx` for SMS, `WAxx` for Whatsapp etc.  |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `conversation_sid` | The unique ID of the [Conversation](https://www.twilio.com/docs/conversations/api/conversation-resource) for this message. |
| `date_created` | The date that this resource was created.. Format: date-time |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `date_updated` | The date that this resource was last updated. `null` if the delivery receipt has not been updated.. Format: date-time |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `error_code` | The message [delivery error code](https://www.twilio.com/docs/sms/api/message-resource#delivery-related-errors) for a `failed` status,  |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `message_sid` | The SID of the message within a [Conversation](https://www.twilio.com/docs/conversations/api/conversation-resource) the delivery receipt belongs to |
| `participant_sid` | The unique ID of the participant the delivery receipt belongs to. |
| `sid` | A 34 character string that uniquely identifies this resource. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `status` | The message delivery status, can be `read`, `failed`, `delivered`, `undelivered`, `sent` or null.. Values: `read`, `failed`, `delivered`, `undelivered`, `sent` |
| `url` | An absolute API resource URL for this delivery receipt.. Format: uri |

# `t`

```elixir
@type t() :: %Twilio.Resources.Conversations.V1.Conversation.Message.Receipt{
  account_sid: String.t() | nil,
  channel_message_sid: String.t() | nil,
  conversation_sid: String.t() | nil,
  date_created: String.t() | nil,
  date_updated: String.t() | nil,
  error_code: integer(),
  message_sid: String.t() | nil,
  participant_sid: String.t() | nil,
  sid: String.t() | nil,
  status: String.t(),
  url: String.t() | nil
}
```

# `object_name`

# `sid_prefix`

---

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