MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
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
32
33
34
35
36
export declare const apiName = "biz.contact.inviteGroupMember";
/**
 * 企业或部门 添加团队成员页面 请求参数定义
 * @apiName biz.contact.inviteGroupMember
 */
export interface IBizContactInviteGroupMemberParams {
    /** 企业 corpId */
    corpId: string;
    /** 部门Id */
    deptId?: number;
    /** 业务方标识 */
    scene?: string;
    /** 上游业务来源 */
    origin?: number;
    /** 上游业务来源描述 */
    originMeta?: string;
}
/**
 * 企业或部门 添加团队成员页面 返回结果定义
 * @apiName biz.contact.inviteGroupMember
 */
export interface IBizContactInviteGroupMemberResult {
    invitedMembers: Array<{
        staffId: string;
        userName: string;
        mobile: string;
        job?: string;
    }>;
}
/**
 * 企业或部门 添加团队成员页面
 * @apiName biz.contact.inviteGroupMember
 * @supportVersion ios: 4.6.37 android: 4.6.37
 */
export declare function inviteGroupMember$(params: IBizContactInviteGroupMemberParams): Promise<IBizContactInviteGroupMemberResult>;
export default inviteGroupMember$;