dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
27 lines (26 loc) • 693 B
TypeScript
import { ICommonAPIParams } from '../../../constant/types';
/**
* 添加手机联系人 请求参数定义
* @apiName biz.phoneContact.add
*/
export interface IBizPhoneContactAddParams extends ICommonAPIParams {
name: string;
email?: string;
remark?: string;
address?: string;
phoneNumber: string;
photoFilePath?: string;
}
/**
* 添加手机联系人 返回结果定义
* @apiName biz.phoneContact.add
*/
export interface IBizPhoneContactAddResult {
success: boolean;
}
/**
* 添加手机联系人
* @apiName biz.phoneContact.add
*/
export declare function add$(params: IBizPhoneContactAddParams): Promise<IBizPhoneContactAddResult>;
export default add$;