Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IReceivedMessage

Message data received from the server\n * @category Interface

Hierarchy

  • IReceivedMessage

Index

Properties

channelId?: string

The business identifier of the conversation

conversationType: ConversationType

Conversation type

targetId: string

Conversation target ID

senderUserId: string

The user ID of the message sender

content: any

Message content

messageType: string

Message structure name, i.e., message type

example

RC:TxtMsg

messageUId: string

Message ID stored on the server

messageDirection: MessageDirection

The message direction is either sent or received.

isOffLineMessage: boolean

Indicates whether the message is an offline message. This does not apply to ultra groups.

sentTime: number

Indicates the message's server-side sending timestamp.

receivedTime: number

Message reception time, which is calculated locally based on the message's sentTime value. Not recommended for use.

description

This value is invalid when isOffLineMessage is true.

isPersited: boolean

Whether to store\n * @defaultValue true

isCounted: boolean

Whether to count

defaultvalue

true

isMentioned: boolean

Indicates whether it is a mention message

disableNotification: boolean

Whether the message is silent

description

Silent messages do not trigger push notifications or local notification alerts.

isStatusMessage: boolean

Indicates whether it is a status message

canIncludeExpansion: boolean

Supports message extension storage

expansion: null | {}

Extended storage for message-bearing notifications

receivedStatus: number

Message Receipt Status Represents a single status only. It is recommended to use receivedStatusInfo to determine the message receipt status.

deprecated
receivedStatusInfo?: IReceivedStatusInfo

Message receipt status details Recommended for use. The receivedStatusInfo value provides more detailed information and can represent multiple receipt statuses simultaneously.

messageId?: number

Message local ID, generated by the lib on the web side, and auto-incremented ID generated by the protocol stack database on the PC side.

sentStatus?: SentStatus

Message sending status: On the web side, the value is set by the lib based on the message status as 'Sending', 'Sent', or 'Failed to send'. On the PC side, it is automatically maintained by the protocol stack or manually set by the user.

Group read receipt information (When the navigation configuration grpRRVer = 0, it is IReadReceiptResponseInfo; when grpRRVer >= 1, it is IReadReceiptInfo).

pushConfig?: IPushConfig

Push notification extensions

isInterrupt?: boolean

Ultra group-specific field indicating whether there is a gap in message continuity. When the server receives a large volume of messages, gaps may occur. This flag is used to indicate such gaps, and clients need to manually pull historical messages to fill them.

isModifyMessage?: boolean

Indicates whether the message has been modified when pulling historical messages (valid only for ultra groups).

channelType?: UltraGroupChannelType

Indicates whether the message is of an ultra group channel type when pulling historical messages (only valid for ultra groups).

hasMore?: boolean

Whether there is a gap

directedUserIds?: string[]

Target user list (supported only for group chat and ultra group)

disableUpdateLastMessage?: boolean

Prohibits updating to the latest message in the conversation. Default is false: updates, true: does not update.