UNPKG

dingtalk-jsapi

Version:

钉钉 模块化 多端统一 API

27 lines (26 loc) 731 B
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$;