zhizhi/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.d.ts

27 lines
693 B
TypeScript
Raw Normal View History

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$;