合并消息体。

interface CombineMessageBody {
    title: string;
    summary: string;
    messageList?: readonly Message[];
    url?: string;
    filename: string;
    filetype: string;
    fileLength?: number;
    secret?: string;
    combineLevel: number;
}

Properties

title: string

合并消息标题。

summary: string

合并消息摘要。

messageList?: readonly Message[]

子消息列表,仅在发送或详情解码场景提供。

url?: string

合并消息详情下载地址。

filename: string

合并消息详情文件名。

filetype: string

合并消息详情文件类型。

fileLength?: number

合并消息详情文件大小,单位字节。

secret?: string

合并消息详情下载密钥。

combineLevel: number

当前合并消息嵌套层级。