多图文消息(DG:MultipleImageTextMsg)
发送图文消息的数据结构
{
messageType: 'DG:MultipleImageTextMsg',
targerId: string,
type: RongIMLib.ConversationType, // 单聊、群聊等等
content: {
user: {
send: Object, // 发送方用户信息
target: Object // 接收方用户信息
},
title: string, // 标题
list: Array, // 列表数据,list数据结构查看下面
type: string // questionMsg等等
}
}
list参数结构:
[
{
id: number, // 必填
title: string, // 必填,列表项标题
desc: string, // 可选,列表项标题的描述
imageUrl: string // 可选,列表项图片
}
]