export declare enum MsgContentType { Text = 1, Html = 2, Markdown = 3 } export interface MsgSendReqBase { content: string; summary?: string; url?: string; } export interface MsgSendReqParams extends MsgSendReqBase { appToken: string; topicId?: string | number; uid?: string; } export interface MsgSendReqBody extends MsgSendReqBase { appToken: string; contentType: MsgContentType; topicIds?: number[]; uids?: string[]; } /** * 发送消息响应内容项 */ export interface MsgSendResDataItem { /** 信息推送给的用户UID */ uid: string | null; /** 发送信息所属主题ID */ topicId: string | null; /** 当天推送信息ID */ messageId: number; /** 推送状态码 */ code: number; /** 推送状态 */ status: string; }