doum
昨天 ee300eca8f8414604cd94aa29f2b80e7d32413f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import '../../entry/union';
interface SendMessageArgs {
    /** 应用身份信息 */
    context: {
        /** 应用在开放平台的身份标识 */
        clientId: string;
        /** 组织id */
        corpId: string;
    };
    openConversationIdList: string[];
    /** 要发送的动态卡片数据 */
    sendCardRequest: object;
}
/** 提供以当前用户的身份将卡片消息发送到指定群的能力 */
export declare function sendMessageToGroup(args: SendMessageArgs): Promise<any>;
export {};