DeliveryStatus

enum DeliveryStatus

Delivery status of a message.

Entries

QUEUED
Link copied to clipboard

Message considered as queued, if it is waiting in a queue to be sent to an upstream carrier.

SENT
Link copied to clipboard

Message considered as sent to a participant, if the nearest upstream carrier accepted the message.

FAILED
Link copied to clipboard

Message considered as failed to be delivered to a participant if the message could not be sent. This can happen for various reasons including queue overflows, account suspensions and media errors (in the case of MMS for instance).

DELIVERED
Link copied to clipboard

Message considered as delivered to a participant, if Twilio has received confirmation of message delivery from the upstream carrier, and, where available, the destination handset.

UNDELIVERED
Link copied to clipboard

Message considered as undelivered to a participant, if Twilio has received a delivery receipt indicating that the message was not delivered. This can happen for many reasons including carrier content filtering and the availability of the destination handset.

READ
Link copied to clipboard

Message considered as read by a participant, if the message has been delivered and opened by the recipient in the conversation. The recipient must have enabled read receipts.

Functions

fromInt
Link copied to clipboard
open fun fromInt(value: Int): DetailedDeliveryReceipt.DeliveryStatus
getValue
Link copied to clipboard
open fun getValue(): Int
valueOf
Link copied to clipboard
open fun valueOf(name: String): DetailedDeliveryReceipt.DeliveryStatus
values
Link copied to clipboard
open fun values(): Array<DetailedDeliveryReceipt.DeliveryStatus>