doum
9 天以前 d5810177a4e77ea273971e51dd150bd84906de6f
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
export declare const apiName = "biz.contact.addUserForm";
/**
 * 添加联系人 请求参数定义
 * @apiName biz.contact.addUserForm
 */
export interface IBizContactAddUserFormParams {
    /** 上游业务来源 */
    origin?: number;
    /** 上游业务来源描述 */
    originMeta?: string;
    [key: string]: any;
}
/**
 * 添加联系人 返回结果定义
 * @apiName biz.contact.addUserForm
 */
export interface IBizContactAddUserFormResult {
    [key: string]: any;
}
/**
 * 添加联系人
 * @apiName biz.contact.addUserForm
 * @supportVersion  ios: 3.1 android: 3.1
 */
export declare function addUserForm$(params: IBizContactAddUserFormParams): Promise<IBizContactAddUserFormResult>;
export default addUserForm$;