MessageStatus

public enum MessageStatus

Representation of the delivery and read status of a chat message

This enum is designed for categorizing the status of chat messages, providing information about whether a message has been sent, delivered, or seen by the recipient. It is valuable for tracking and displaying the communication status in messaging and chat applications.

  • Indicates that the message has been sent but not yet delivered.

    Declaration

    Swift

    case sent
  • Indicates that the message has been delivered to the recipient.

    Declaration

    Swift

    case delivered
  • Indicates that the message has been seen or read by the recipient.

    Declaration

    Swift

    case seen