MrShi
5 天以前 05aec1e9986fbe3e907259bb1a1396f129bd0fa1
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
29
30
31
export declare const apiName = "internal.groupapp.sendMsgAsUser";
/**
 * 群应用以用户身份发消息 请求参数定义
 * @apiName internal.groupapp.sendMsgAsUser
 */
export interface IInternalGroupappSendMsgAsUserParams {
    /** 开放平台用户授权之后的返回 */
    authCode: string;
    /** 开放cid(群插件打开链接参数中获取) */
    openConversationId: string;
    /** 预展示文案 */
    previewText?: string;
    /** 消息模板key */
    messageKey: string;
    /** 息模板中的参数变量值,JSON串 */
    messageParam: string;
}
/**
 * 群应用以用户身份发消息 返回结果定义
 * @apiName internal.groupapp.sendMsgAsUser
 */
export interface IInternalGroupappSendMsgAsUserResult {
}
/**
 * 群应用以用户身份发消息
 * @apiName internal.groupapp.sendMsgAsUser
 * @supportVersion ios: 5.1.6 android: 5.1.6
 * @author Android:峰砺 iOS:木锤
 */
export declare function sendMsgAsUser$(params: IInternalGroupappSendMsgAsUserParams): Promise<IInternalGroupappSendMsgAsUserResult>;
export default sendMsgAsUser$;