doum
2 天以前 ee300eca8f8414604cd94aa29f2b80e7d32413f6
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
27
28
29
export declare const apiName = "internal.auth.identifyByContactsVerify";
/**
 * 通过从15个钉钉用户中,选出自己最近联系的2个,来做登录验证 请求参数定义
 * @apiName internal.auth.identifyByContactsVerify
 */
export interface IInternalAuthIdentifyByContactsVerifyParams {
    /** 用户手机号(带countryCode,示例:+86-1378276382) */
    mobile: string;
    /** 用户上次验证因子code */
    tmpCode: string;
    /** 用户当前所在的流程标识(入Login) */
    action: string;
    /** 识别当前手机号的是哪个用户 */
    historyId?: number;
}
/**
 * 通过从15个钉钉用户中,选出自己最近联系的2个,来做登录验证 返回结果定义
 * @apiName internal.auth.identifyByContactsVerify
 */
export interface IInternalAuthIdentifyByContactsVerifyResult {
}
/**
 * 通过从15个钉钉用户中,选出自己最近联系的2个,来做登录验证
 * @apiName internal.auth.identifyByContactsVerify
 * @supportVersion ios: 5.1.19 android: 5.1.19
 * @author iOS:姚曦 Android:几米
 */
export declare function identifyByContactsVerify$(params: IInternalAuthIdentifyByContactsVerifyParams): Promise<IInternalAuthIdentifyByContactsVerifyResult>;
export default identifyByContactsVerify$;