@22g/netease-im-web-sdk
Version:
typescript netease-im-web-sdk
21 lines (20 loc) • 634 B
TypeScript
export interface NIMComment {
/** 评论的发送方 */
from: string;
/** 评论的内容,只能是整数,开发者可自定义映射规则,如1点赞的表情、2对应鼓掌的表情等等 */
body: number;
/** 评论的时间 */
time: number;
/** 扩展字段 */
custom: string;
/** 是否需要推送 */
needPush: boolean;
/** 是否需要推送角标 */
needBadge: boolean;
/** 推送的标题 */
pushTitle: string;
/** 自定义推送文案 */
apnsText: string;
/** 第三方自定义的推送属性,限制json字符串,长度最大2048 */
pushPayload: string;
}