Skip to main content

Message Overview

Basic Message Structure

Property NameTypeDescription
conversationTypeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringBusiness identifier of the conversation, limited to 20 characters, effective only in ultra groups
messageTypeRCIMIWMessageTypeMessage type
messageIdintUnique value of the locally stored message (database index unique value)
messageUIdStringServer message unique ID (globally unique under the same Appkey)
directionRCIMIWMessageDirectionMessage direction
receivedTimeintMessage received time (Unix timestamp, milliseconds)
sentTimeintMessage sent time (Unix timestamp, milliseconds)
receivedStatusRCIMIWReceivedStatusMessage received status
sentStatusRCIMIWSentStatusMessage sent status
senderUserIdStringSender user ID
expansionMapMessage extension information list, determined at message send time and cannot be modified after sending.
Extensions are only supported in one-to-one and group chats, other conversation types cannot set extensions.
Default message extension key length does not exceed 32, value length does not exceed 4096, maximum number of extensions per set is 20, total message extensions cannot exceed 300
offLineboolWhether it is an offline message, only valid in the message received callback method. If the message is an offline message, it is YES, otherwise NO
groupReadReceiptInfoRCIMIWGroupReadReceiptInfoGroup read receipt status
userInfoRCIMIWUserInfoUser information carried by the message
mentionedInfoRCIMIWMentionedInfoMessage @ information
pushOptionsRCIMIWMessagePushOptionsMessage push configuration, can only be configured by the sender, receiver is empty
extraStringAdditional field of the message, set so that the receiver can also access the data after receiving the message.

Message Types and Construction Methods

The message type (RCIMIWMessageType) enumeration in IMLib provides predefined text, voice, image, and other message types, and supports custom messages through RCIMIWMessageType.custom.

All message types are stored locally on the client by default and counted as unread messages, except for the following:

  • Recall message type (RCIMIWMessageType.recall): Stored locally on the client but not counted as unread messages.
  • Command message type (RCIMIWMessageType.command): Not stored locally on the client and not counted as unread messages.
  • Command notification message type (RCIMIWMessageType.commandNotification): Stored locally on the client but not counted as unread messages.
  • Custom message type (RCIMIWMessageType.custom): Storage strategy controlled by the app (RCIMIWCustomMessagePolicy).

Text Message

Type: RCIMIWMessageType.text

Exclusive accessible properties:

Property NameTypeDescription
textStringText content

Construct Text Message

RCIMIWTextMessage? message = await engine.createTextMessage(
type,
targetId,
channelId,
text,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
textStringText content

Voice Message

Type: RCIMIWMessageType.voice

Exclusive accessible properties:

Property NameTypeDescription
durationintVoice duration in seconds

Construct Voice Message

RCIMIWVoiceMessage? message = await engine.createVoiceMessage(
type,
targetId,
channelId,
path,
duration,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
pathStringLocal path of the voice message, must be a valid path
durationintDuration of the voice message

Image Message

Type: RCIMIWMessageType.image

Exclusive accessible properties:

Property NameTypeDescription
thumbnailBase64StringStringThumbnail data of the image
originalboolWhether it is the original image

Construct Image Message

RCIMIWImageMessage? message = await engine.createImageMessage(
type,
targetId,
channelId,
path,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
pathStringLocal path of the image message, must be a valid path

File Message

Type: RCIMIWMessageType.file

Exclusive accessible properties:

Property NameTypeDescription
nameStringFile name
fileTypeStringFile type
sizeintFile size in bytes

Construct File Message

RCIMIWFileMessage? message = await engine.createFileMessage(
type,
targetId,
channelId,
path,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
pathStringLocal path of the file message, must be a valid path

Short Video Message

Type: RCIMIWMessageType.sight

Exclusive accessible properties:

Property NameTypeDescription
durationintVideo duration
sizeintVideo size
nameStringVideo name
thumbnailBase64StringStringThumbnail data

Construct Short Video Message

RCIMIWSightMessage? message = await engine.createSightMessage(
type,
targetId,
channelId,
path,
duration,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
pathStringLocal path of the short video message, must be a valid path
durationintDuration of the short video message, note that the default server-side video duration limit is 2 minutes. Contact business for adjustments.

GIF Message

Type: RCIMIWMessageType.gif

Exclusive accessible properties:

Property NameTypeDescription
dataSizeintGIF size in bytes
widthintGIF width
heightintGIF height

Construct GIF Message

RCIMIWGIFMessage? message = await engine.createGIFMessage(
type,
targetId,
channelId,
path
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
pathStringLocal path of the GIF message

Recall Message

Recall messages cannot be actively constructed and sent. To recall a message, call the recall message interface.

Type: RCIMIWMessageType.recall

Exclusive accessible properties:

Property NameTypeDescription
adminboolWhether it is an admin operation
deletedboolWhether it is deleted
recallTimeintSent time of the original message being recalled (milliseconds)
recallActionTimeintTime of the recall action (milliseconds)
originalMessageRCIMIWMessageOriginal message being recalled

Reference Message

Type: RCIMIWMessageType.reference

Exclusive accessible properties:

Property NameTypeDescription
textStringReference text
referenceMessageRCIMIWMessageReferenced message

Construct Reference Message

RCIMIWReferenceMessage? message = await engine.createReferenceMessage(
type,
targetId,
channelId,
message,
text,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
referenceMessageRCIMIWMessageReferenced message
textStringReference text content

Location Message

Type: RCIMIWMessageType.location

Exclusive accessible properties:

Property NameTypeDescription
longitudedoubleLongitude information
latitudedoubleLatitude information
poiNameStringPOI information
thumbnailPathStringThumbnail path

Construct Location Message

RCIMIWLocationMessage? message = await engine?.createLocationMessage(
type,
targetId,
channelId,
double.parse(longitude),
double.parse(latitude),
poiName,
path,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
longitudedoubleLongitude
latitudedoubleLatitude
poiNameStringPOI information
thumbnailPathStringLocal path of the thumbnail, must be a valid path

Command Message

Type: RCIMIWMessageType.command

Exclusive accessible properties:

Property NameTypeDescription
nameStringCommand name
dataStringCommand extension data, can be any string, such as json data defined by you.

Flutter SDK currently does not provide a create method for RCIMIWCommandMessage command messages, only supports receiving this type of message. To send this message on the client, you need to define a wrapper class for this message at the Flutter layer. See the knowledge base document How to Send Command Messages and Command Notification Messages in Flutter SDK?.

Command Notification Message

Type: RCIMIWMessageType.commandNotification

Exclusive accessible properties:

Property NameTypeDescription
nameStringCommand notification name
dataStringCommand notification message extension data, can be any string, such as json data defined by you.

Flutter SDK currently does not provide a create method for RCIMIWCommandNotificationMessage command notification messages, only supports receiving this type of message. To send this message on the client, you need to define a wrapper class for this message at the Flutter layer. See the knowledge base document How to Send Command Messages and Command Notification Messages in Flutter SDK?.

Custom Message

Type: RCIMIWMessageType.custom

Exclusive accessible properties:

Property NameTypeDescription
identifierStringCustom message identifier
policyRCIMIWCustomMessagePolicyCustom message storage policy
fieldsMap<String, String>Custom message key-value pairs

Construct Custom Message

RCIMIWCustomMessage? message = await engine.createCustomMessage(
type,
targetId,
channelId,
policy,
messageIdentifier,
fields,
);
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdStringConversation ID
channelIdStringChannel ID, only supported in ultra groups, pass null for other conversation types.
policyRCIMIWCustomMessagePolicyMessage storage policy
messageIdentifierStringMessage identifier, must be unique
fieldsMap<String, String>Message content key-value pairs

Invalid Type

When an unrecognized message is received, it becomes an invalid type message, this message cannot be actively constructed and sent.

Type: RCIMIWMessageType.unknown

Exclusive accessible properties:

Property NameTypeDescription
rawDataStringMessage data
objectNameStringMessage identifier