zhizhi/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.d.ts

33 lines
896 B
TypeScript
Raw Normal View History

/**
*
* @apiName biz.chat.createSceneGroup
*/
export interface IBizChatCreateSceneGroupParams {
corpId: string;
/** 群名称 */
title?: string;
/** 群头像url地址 */
avatar?: string;
/** 群类型1:年会大群;2:筹备群 */
type?: number;
extension?: {
[key: string]: string;
};
}
/**
*
* @apiName biz.chat.createSceneGroup
*/
export interface IBizChatCreateSceneGroupResult {
/** 会话Id */
chatId: string;
}
/**
*
* @apiName biz.chat.createSceneGroup
* @supportVersion ios: 4.7.17 android: 4.7.17 pc:4.7.17
* @author windows: 仟晨 mac: 舒绎 android: 峰砺 iOS: 鱼非
*/
export declare function createSceneGroup$(params: IBizChatCreateSceneGroupParams): Promise<IBizChatCreateSceneGroupResult>;
export default createSceneGroup$;