MrShi
4 天以前 acf90ad8e6bea592124541324467360cef565ff5
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
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$;