MrShi
9 天以前 3845c70bd7ce578b65522ad020a8dc524316b4d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export declare const apiName = "internal.chat.stickerReply";
/**
 * 表情回复接口 请求参数定义
 * @apiName internal.chat.stickerReply
 */
export interface IInternalChatStickerReplyParams {
    /** 话题消息id */
    sourceMessageId: any;
    /** 话题消息发送者id */
    sourceSenderId: any;
    /** 表情类型 */
    stickerType: any;
    /** 是否为取消点赞 */
    isRecall?: boolean;
}
/**
 * 表情回复接口 返回结果定义
 * @apiName internal.chat.stickerReply
 */
export interface IInternalChatStickerReplyResult {
}
/**
 * 表情回复接口
 * @apiName internal.chat.stickerReply
 * @supportVersion ios: 4.6.25 android: 4.6.25
 */
export declare function stickerReply$(params: IInternalChatStickerReplyParams): Promise<IInternalChatStickerReplyResult>;
export default stickerReply$;