zhizhi/node_modules/dingtalk-jsapi/api/union/addPhoneContact.d.ts

27 lines
707 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName addPhoneContact
*/
export interface IUnionAddPhoneContactParams extends ICommonAPIParams {
name: string;
email?: string;
remark?: string;
address?: string;
phoneNumber: string;
photoFilePath?: string;
}
/**
*
* @apiName addPhoneContact
*/
export interface IUnionAddPhoneContactResult {
success: boolean;
}
/**
*
* @apiName addPhoneContact
*/
export declare function addPhoneContact$(params: IUnionAddPhoneContactParams): Promise<IUnionAddPhoneContactResult>;
export default addPhoneContact$;