@antchain/insurance_saas 1.10.2 → 1.12.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1003 -49
- package/dist/client.js +1228 -102
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2975 -1187
package/dist/client.d.ts
CHANGED
|
@@ -1,26 +1,131 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import * as $Util from '@alicloud/tea-util';
|
|
3
|
+
import { Readable } from 'stream';
|
|
2
4
|
import * as $tea from '@alicloud/tea-typescript';
|
|
3
5
|
/**
|
|
6
|
+
* @remarks
|
|
4
7
|
* Model for initing client
|
|
5
8
|
*/
|
|
6
9
|
export declare class Config extends $tea.Model {
|
|
10
|
+
/**
|
|
11
|
+
* @remarks
|
|
12
|
+
* accesskey id
|
|
13
|
+
*/
|
|
7
14
|
accessKeyId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @remarks
|
|
17
|
+
* accesskey secret
|
|
18
|
+
*/
|
|
8
19
|
accessKeySecret?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @remarks
|
|
22
|
+
* security token
|
|
23
|
+
*/
|
|
9
24
|
securityToken?: string;
|
|
25
|
+
/**
|
|
26
|
+
* @remarks
|
|
27
|
+
* http protocol
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* http
|
|
31
|
+
*/
|
|
10
32
|
protocol?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @remarks
|
|
35
|
+
* read timeout
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* 10
|
|
39
|
+
*/
|
|
11
40
|
readTimeout?: number;
|
|
41
|
+
/**
|
|
42
|
+
* @remarks
|
|
43
|
+
* connect timeout
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* 10
|
|
47
|
+
*/
|
|
12
48
|
connectTimeout?: number;
|
|
49
|
+
/**
|
|
50
|
+
* @remarks
|
|
51
|
+
* http proxy
|
|
52
|
+
*
|
|
53
|
+
* @example
|
|
54
|
+
* http://localhost
|
|
55
|
+
*/
|
|
13
56
|
httpProxy?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @remarks
|
|
59
|
+
* https proxy
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* https://localhost
|
|
63
|
+
*/
|
|
14
64
|
httpsProxy?: string;
|
|
65
|
+
/**
|
|
66
|
+
* @remarks
|
|
67
|
+
* endpoint
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* cs.aliyuncs.com
|
|
71
|
+
*/
|
|
15
72
|
endpoint?: string;
|
|
73
|
+
/**
|
|
74
|
+
* @remarks
|
|
75
|
+
* proxy white list
|
|
76
|
+
*
|
|
77
|
+
* @example
|
|
78
|
+
* http://localhost
|
|
79
|
+
*/
|
|
16
80
|
noProxy?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @remarks
|
|
83
|
+
* max idle conns
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* 3
|
|
87
|
+
*/
|
|
17
88
|
maxIdleConns?: number;
|
|
89
|
+
/**
|
|
90
|
+
* @remarks
|
|
91
|
+
* user agent
|
|
92
|
+
*
|
|
93
|
+
* @example
|
|
94
|
+
* Alibabacloud/1
|
|
95
|
+
*/
|
|
18
96
|
userAgent?: string;
|
|
97
|
+
/**
|
|
98
|
+
* @remarks
|
|
99
|
+
* socks5 proxy
|
|
100
|
+
*/
|
|
19
101
|
socks5Proxy?: string;
|
|
102
|
+
/**
|
|
103
|
+
* @remarks
|
|
104
|
+
* socks5 network
|
|
105
|
+
*
|
|
106
|
+
* @example
|
|
107
|
+
* TCP
|
|
108
|
+
*/
|
|
20
109
|
socks5NetWork?: string;
|
|
110
|
+
/**
|
|
111
|
+
* @remarks
|
|
112
|
+
* 长链接最大空闲时长
|
|
113
|
+
*/
|
|
21
114
|
maxIdleTimeMillis?: number;
|
|
115
|
+
/**
|
|
116
|
+
* @remarks
|
|
117
|
+
* 长链接最大连接时长
|
|
118
|
+
*/
|
|
22
119
|
keepAliveDurationMillis?: number;
|
|
120
|
+
/**
|
|
121
|
+
* @remarks
|
|
122
|
+
* 最大连接数(长链接最大总数)
|
|
123
|
+
*/
|
|
23
124
|
maxRequests?: number;
|
|
125
|
+
/**
|
|
126
|
+
* @remarks
|
|
127
|
+
* 每个目标主机的最大连接数(分主机域名的长链接最大总数
|
|
128
|
+
*/
|
|
24
129
|
maxRequestsPerHost?: number;
|
|
25
130
|
static names(): {
|
|
26
131
|
[key: string]: string;
|
|
@@ -33,7 +138,15 @@ export declare class Config extends $tea.Model {
|
|
|
33
138
|
});
|
|
34
139
|
}
|
|
35
140
|
export declare class FileNode extends $tea.Model {
|
|
141
|
+
/**
|
|
142
|
+
* @example
|
|
143
|
+
* http://xxxx
|
|
144
|
+
*/
|
|
36
145
|
url: string;
|
|
146
|
+
/**
|
|
147
|
+
* @example
|
|
148
|
+
* xxxxx.pdf
|
|
149
|
+
*/
|
|
37
150
|
name: string;
|
|
38
151
|
static names(): {
|
|
39
152
|
[key: string]: string;
|
|
@@ -46,9 +159,25 @@ export declare class FileNode extends $tea.Model {
|
|
|
46
159
|
});
|
|
47
160
|
}
|
|
48
161
|
export declare class Insured extends $tea.Model {
|
|
162
|
+
/**
|
|
163
|
+
* @example
|
|
164
|
+
* 李四
|
|
165
|
+
*/
|
|
49
166
|
insuredName: string;
|
|
167
|
+
/**
|
|
168
|
+
* @example
|
|
169
|
+
* 01--居民身份证、03--营业执照
|
|
170
|
+
*/
|
|
50
171
|
insuredCardType: string;
|
|
172
|
+
/**
|
|
173
|
+
* @example
|
|
174
|
+
* 123456789
|
|
175
|
+
*/
|
|
51
176
|
insuredCardCode: string;
|
|
177
|
+
/**
|
|
178
|
+
* @example
|
|
179
|
+
* 123456789
|
|
180
|
+
*/
|
|
52
181
|
insuredContactInfo?: string;
|
|
53
182
|
static names(): {
|
|
54
183
|
[key: string]: string;
|
|
@@ -61,9 +190,25 @@ export declare class Insured extends $tea.Model {
|
|
|
61
190
|
});
|
|
62
191
|
}
|
|
63
192
|
export declare class Applicant extends $tea.Model {
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* 李三
|
|
196
|
+
*/
|
|
64
197
|
applicantName: string;
|
|
198
|
+
/**
|
|
199
|
+
* @example
|
|
200
|
+
* 01--居民身份证、03--营业执照
|
|
201
|
+
*/
|
|
65
202
|
applicantCardType: string;
|
|
203
|
+
/**
|
|
204
|
+
* @example
|
|
205
|
+
* xxxxxx
|
|
206
|
+
*/
|
|
66
207
|
applicantCardCode: string;
|
|
208
|
+
/**
|
|
209
|
+
* @example
|
|
210
|
+
* 123456789
|
|
211
|
+
*/
|
|
67
212
|
applicantContactInfo?: string;
|
|
68
213
|
static names(): {
|
|
69
214
|
[key: string]: string;
|
|
@@ -76,12 +221,40 @@ export declare class Applicant extends $tea.Model {
|
|
|
76
221
|
});
|
|
77
222
|
}
|
|
78
223
|
export declare class EntrustGuaranteeProduct extends $tea.Model {
|
|
224
|
+
/**
|
|
225
|
+
* @example
|
|
226
|
+
* 1733711492119
|
|
227
|
+
*/
|
|
79
228
|
guaranteeExpiryDate: number;
|
|
229
|
+
/**
|
|
230
|
+
* @example
|
|
231
|
+
* 1733711492119
|
|
232
|
+
*/
|
|
80
233
|
guaranteeEffectiveDate: number;
|
|
234
|
+
/**
|
|
235
|
+
* @example
|
|
236
|
+
* 1733711492119
|
|
237
|
+
*/
|
|
81
238
|
waitingPeriodDeadLine?: number;
|
|
239
|
+
/**
|
|
240
|
+
* @example
|
|
241
|
+
* xxxxx
|
|
242
|
+
*/
|
|
82
243
|
policyNo?: string;
|
|
244
|
+
/**
|
|
245
|
+
* @example
|
|
246
|
+
* 平台定义产品码值
|
|
247
|
+
*/
|
|
83
248
|
guaranteeProductCode?: string;
|
|
249
|
+
/**
|
|
250
|
+
* @example
|
|
251
|
+
* 保险公司的产品code
|
|
252
|
+
*/
|
|
84
253
|
insuranceProductCode?: string;
|
|
254
|
+
/**
|
|
255
|
+
* @example
|
|
256
|
+
* 保险公司的产品描述
|
|
257
|
+
*/
|
|
85
258
|
insuranceProductName?: string;
|
|
86
259
|
static names(): {
|
|
87
260
|
[key: string]: string;
|
|
@@ -93,6 +266,164 @@ export declare class EntrustGuaranteeProduct extends $tea.Model {
|
|
|
93
266
|
[key: string]: any;
|
|
94
267
|
});
|
|
95
268
|
}
|
|
269
|
+
export declare class XNameValuePair extends $tea.Model {
|
|
270
|
+
/**
|
|
271
|
+
* @example
|
|
272
|
+
* key
|
|
273
|
+
*/
|
|
274
|
+
name: string;
|
|
275
|
+
/**
|
|
276
|
+
* @example
|
|
277
|
+
* value
|
|
278
|
+
*/
|
|
279
|
+
value: string;
|
|
280
|
+
static names(): {
|
|
281
|
+
[key: string]: string;
|
|
282
|
+
};
|
|
283
|
+
static types(): {
|
|
284
|
+
[key: string]: any;
|
|
285
|
+
};
|
|
286
|
+
constructor(map?: {
|
|
287
|
+
[key: string]: any;
|
|
288
|
+
});
|
|
289
|
+
}
|
|
290
|
+
export declare class QueryAasButleragentSessionRequest extends $tea.Model {
|
|
291
|
+
authToken?: string;
|
|
292
|
+
productCode: string;
|
|
293
|
+
requestId: string;
|
|
294
|
+
customerId: string;
|
|
295
|
+
startTime: string;
|
|
296
|
+
endTime: string;
|
|
297
|
+
static names(): {
|
|
298
|
+
[key: string]: string;
|
|
299
|
+
};
|
|
300
|
+
static types(): {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
};
|
|
303
|
+
constructor(map?: {
|
|
304
|
+
[key: string]: any;
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
export declare class QueryAasButleragentSessionResponse extends $tea.Model {
|
|
308
|
+
reqMsgId?: string;
|
|
309
|
+
resultCode?: string;
|
|
310
|
+
resultMsg?: string;
|
|
311
|
+
bizResult?: string;
|
|
312
|
+
static names(): {
|
|
313
|
+
[key: string]: string;
|
|
314
|
+
};
|
|
315
|
+
static types(): {
|
|
316
|
+
[key: string]: any;
|
|
317
|
+
};
|
|
318
|
+
constructor(map?: {
|
|
319
|
+
[key: string]: any;
|
|
320
|
+
});
|
|
321
|
+
}
|
|
322
|
+
export declare class GetAasButleragentPlanurlRequest extends $tea.Model {
|
|
323
|
+
authToken?: string;
|
|
324
|
+
productCode: string;
|
|
325
|
+
requestId: string;
|
|
326
|
+
planNo: string;
|
|
327
|
+
customerId: string;
|
|
328
|
+
static names(): {
|
|
329
|
+
[key: string]: string;
|
|
330
|
+
};
|
|
331
|
+
static types(): {
|
|
332
|
+
[key: string]: any;
|
|
333
|
+
};
|
|
334
|
+
constructor(map?: {
|
|
335
|
+
[key: string]: any;
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
export declare class GetAasButleragentPlanurlResponse extends $tea.Model {
|
|
339
|
+
reqMsgId?: string;
|
|
340
|
+
resultCode?: string;
|
|
341
|
+
resultMsg?: string;
|
|
342
|
+
bizResult?: string;
|
|
343
|
+
static names(): {
|
|
344
|
+
[key: string]: string;
|
|
345
|
+
};
|
|
346
|
+
static types(): {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
};
|
|
349
|
+
constructor(map?: {
|
|
350
|
+
[key: string]: any;
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
export declare class GetAasButleragentChaturlRequest extends $tea.Model {
|
|
354
|
+
authToken?: string;
|
|
355
|
+
requestId: string;
|
|
356
|
+
customerAuthInfo: string;
|
|
357
|
+
productCode: string;
|
|
358
|
+
static names(): {
|
|
359
|
+
[key: string]: string;
|
|
360
|
+
};
|
|
361
|
+
static types(): {
|
|
362
|
+
[key: string]: any;
|
|
363
|
+
};
|
|
364
|
+
constructor(map?: {
|
|
365
|
+
[key: string]: any;
|
|
366
|
+
});
|
|
367
|
+
}
|
|
368
|
+
export declare class GetAasButleragentChaturlResponse extends $tea.Model {
|
|
369
|
+
reqMsgId?: string;
|
|
370
|
+
resultCode?: string;
|
|
371
|
+
resultMsg?: string;
|
|
372
|
+
bizResult?: string;
|
|
373
|
+
static names(): {
|
|
374
|
+
[key: string]: string;
|
|
375
|
+
};
|
|
376
|
+
static types(): {
|
|
377
|
+
[key: string]: any;
|
|
378
|
+
};
|
|
379
|
+
constructor(map?: {
|
|
380
|
+
[key: string]: any;
|
|
381
|
+
});
|
|
382
|
+
}
|
|
383
|
+
export declare class CallbackAasMktLiveeffectRequest extends $tea.Model {
|
|
384
|
+
authToken?: string;
|
|
385
|
+
requestId: string;
|
|
386
|
+
projectId: string;
|
|
387
|
+
marketingMode: string;
|
|
388
|
+
encryptionType: string;
|
|
389
|
+
encryptedUserId: string;
|
|
390
|
+
eventTime: string;
|
|
391
|
+
nodeType: string;
|
|
392
|
+
nodeInfo: string;
|
|
393
|
+
landingPageUrl: string;
|
|
394
|
+
clickId?: string;
|
|
395
|
+
productId?: string;
|
|
396
|
+
ip?: string;
|
|
397
|
+
ua?: string;
|
|
398
|
+
liveRoomId?: string;
|
|
399
|
+
liveStartTime?: string;
|
|
400
|
+
extInfo?: string;
|
|
401
|
+
liveSessionId?: string;
|
|
402
|
+
static names(): {
|
|
403
|
+
[key: string]: string;
|
|
404
|
+
};
|
|
405
|
+
static types(): {
|
|
406
|
+
[key: string]: any;
|
|
407
|
+
};
|
|
408
|
+
constructor(map?: {
|
|
409
|
+
[key: string]: any;
|
|
410
|
+
});
|
|
411
|
+
}
|
|
412
|
+
export declare class CallbackAasMktLiveeffectResponse extends $tea.Model {
|
|
413
|
+
reqMsgId?: string;
|
|
414
|
+
resultCode?: string;
|
|
415
|
+
resultMsg?: string;
|
|
416
|
+
requestId?: string;
|
|
417
|
+
static names(): {
|
|
418
|
+
[key: string]: string;
|
|
419
|
+
};
|
|
420
|
+
static types(): {
|
|
421
|
+
[key: string]: any;
|
|
422
|
+
};
|
|
423
|
+
constructor(map?: {
|
|
424
|
+
[key: string]: any;
|
|
425
|
+
});
|
|
426
|
+
}
|
|
96
427
|
export declare class QueryInquiryRequest extends $tea.Model {
|
|
97
428
|
authToken?: string;
|
|
98
429
|
inquiryNoInner: string;
|
|
@@ -1202,6 +1533,8 @@ export declare class NotifyInterestSupplierorderRequest extends $tea.Model {
|
|
|
1202
1533
|
refundAmount?: string;
|
|
1203
1534
|
refundTime?: string;
|
|
1204
1535
|
notaryStatus?: string;
|
|
1536
|
+
paymentTime?: string;
|
|
1537
|
+
interestVersion?: string;
|
|
1205
1538
|
static names(): {
|
|
1206
1539
|
[key: string]: string;
|
|
1207
1540
|
};
|
|
@@ -1227,66 +1560,487 @@ export declare class NotifyInterestSupplierorderResponse extends $tea.Model {
|
|
|
1227
1560
|
[key: string]: any;
|
|
1228
1561
|
});
|
|
1229
1562
|
}
|
|
1230
|
-
export
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
_httpProxy: string;
|
|
1240
|
-
_httpsProxy: string;
|
|
1241
|
-
_socks5Proxy: string;
|
|
1242
|
-
_socks5NetWork: string;
|
|
1243
|
-
_noProxy: string;
|
|
1244
|
-
_maxIdleConns: number;
|
|
1245
|
-
_securityToken: string;
|
|
1246
|
-
_maxIdleTimeMillis: number;
|
|
1247
|
-
_keepAliveDurationMillis: number;
|
|
1248
|
-
_maxRequests: number;
|
|
1249
|
-
_maxRequestsPerHost: number;
|
|
1250
|
-
/**
|
|
1251
|
-
* Init client with Config
|
|
1252
|
-
* @param config config contains the necessary information to create a client
|
|
1253
|
-
*/
|
|
1254
|
-
constructor(config: Config);
|
|
1255
|
-
/**
|
|
1256
|
-
* Encapsulate the request and invoke the network
|
|
1257
|
-
* @param action api name
|
|
1258
|
-
* @param protocol http or https
|
|
1259
|
-
* @param method e.g. GET
|
|
1260
|
-
* @param pathname pathname of every api
|
|
1261
|
-
* @param request which contains request params
|
|
1262
|
-
* @param runtime which controls some details of call api, such as retry times
|
|
1263
|
-
* @return the response
|
|
1264
|
-
*/
|
|
1265
|
-
doRequest(version: string, action: string, protocol: string, method: string, pathname: string, request: {
|
|
1563
|
+
export declare class ReceiveLeadMarketRequest extends $tea.Model {
|
|
1564
|
+
authToken?: string;
|
|
1565
|
+
requestId: string;
|
|
1566
|
+
productCode: string;
|
|
1567
|
+
bizContent: string;
|
|
1568
|
+
static names(): {
|
|
1569
|
+
[key: string]: string;
|
|
1570
|
+
};
|
|
1571
|
+
static types(): {
|
|
1266
1572
|
[key: string]: any;
|
|
1267
|
-
}
|
|
1573
|
+
};
|
|
1574
|
+
constructor(map?: {
|
|
1575
|
+
[key: string]: any;
|
|
1576
|
+
});
|
|
1577
|
+
}
|
|
1578
|
+
export declare class ReceiveLeadMarketResponse extends $tea.Model {
|
|
1579
|
+
reqMsgId?: string;
|
|
1580
|
+
resultCode?: string;
|
|
1581
|
+
resultMsg?: string;
|
|
1582
|
+
bizResult?: string;
|
|
1583
|
+
static names(): {
|
|
1268
1584
|
[key: string]: string;
|
|
1269
|
-
}
|
|
1585
|
+
};
|
|
1586
|
+
static types(): {
|
|
1270
1587
|
[key: string]: any;
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1588
|
+
};
|
|
1589
|
+
constructor(map?: {
|
|
1590
|
+
[key: string]: any;
|
|
1591
|
+
});
|
|
1592
|
+
}
|
|
1593
|
+
export declare class GetMarketingInsureurlRequest extends $tea.Model {
|
|
1594
|
+
authToken?: string;
|
|
1595
|
+
requestId: string;
|
|
1596
|
+
productCode: string;
|
|
1597
|
+
channelCode: string;
|
|
1598
|
+
issueOrg: string;
|
|
1599
|
+
channelProductCode: string;
|
|
1600
|
+
channelProductType: string;
|
|
1601
|
+
insurancePlan: string;
|
|
1602
|
+
firstChannel: string;
|
|
1603
|
+
secondChannel?: string;
|
|
1604
|
+
advertisingPosition?: string;
|
|
1605
|
+
deviceType: string;
|
|
1606
|
+
deviceId: string;
|
|
1607
|
+
clickTime: string;
|
|
1608
|
+
sceneOrderNo: string;
|
|
1609
|
+
applicantName?: string;
|
|
1610
|
+
applicantCertNo?: string;
|
|
1611
|
+
applicantPhone?: string;
|
|
1612
|
+
static names(): {
|
|
1613
|
+
[key: string]: string;
|
|
1614
|
+
};
|
|
1615
|
+
static types(): {
|
|
1616
|
+
[key: string]: any;
|
|
1617
|
+
};
|
|
1618
|
+
constructor(map?: {
|
|
1619
|
+
[key: string]: any;
|
|
1620
|
+
});
|
|
1621
|
+
}
|
|
1622
|
+
export declare class GetMarketingInsureurlResponse extends $tea.Model {
|
|
1623
|
+
reqMsgId?: string;
|
|
1624
|
+
resultCode?: string;
|
|
1625
|
+
resultMsg?: string;
|
|
1626
|
+
requestId?: string;
|
|
1627
|
+
firstChannel?: string;
|
|
1628
|
+
secondChannel?: string;
|
|
1629
|
+
advertisingPosition?: string;
|
|
1630
|
+
sceneOrderNo?: string;
|
|
1631
|
+
clickId?: string;
|
|
1632
|
+
insureUrl?: string;
|
|
1633
|
+
static names(): {
|
|
1634
|
+
[key: string]: string;
|
|
1635
|
+
};
|
|
1636
|
+
static types(): {
|
|
1637
|
+
[key: string]: any;
|
|
1638
|
+
};
|
|
1639
|
+
constructor(map?: {
|
|
1640
|
+
[key: string]: any;
|
|
1641
|
+
});
|
|
1642
|
+
}
|
|
1643
|
+
export declare class CallbackMarketingEventRequest extends $tea.Model {
|
|
1644
|
+
authToken?: string;
|
|
1645
|
+
requestId: string;
|
|
1646
|
+
clickId: string;
|
|
1647
|
+
clickTime: string;
|
|
1648
|
+
eventCode: string;
|
|
1649
|
+
eventTime: string;
|
|
1650
|
+
firstChannel: string;
|
|
1651
|
+
secondChannel?: string;
|
|
1652
|
+
advertisingPosition?: string;
|
|
1653
|
+
eventInfo: string;
|
|
1654
|
+
static names(): {
|
|
1655
|
+
[key: string]: string;
|
|
1656
|
+
};
|
|
1657
|
+
static types(): {
|
|
1658
|
+
[key: string]: any;
|
|
1659
|
+
};
|
|
1660
|
+
constructor(map?: {
|
|
1661
|
+
[key: string]: any;
|
|
1662
|
+
});
|
|
1663
|
+
}
|
|
1664
|
+
export declare class CallbackMarketingEventResponse extends $tea.Model {
|
|
1665
|
+
reqMsgId?: string;
|
|
1666
|
+
resultCode?: string;
|
|
1667
|
+
resultMsg?: string;
|
|
1668
|
+
requestId?: string;
|
|
1669
|
+
static names(): {
|
|
1670
|
+
[key: string]: string;
|
|
1671
|
+
};
|
|
1672
|
+
static types(): {
|
|
1673
|
+
[key: string]: any;
|
|
1674
|
+
};
|
|
1675
|
+
constructor(map?: {
|
|
1676
|
+
[key: string]: any;
|
|
1677
|
+
});
|
|
1678
|
+
}
|
|
1679
|
+
export declare class CallbackMarketingPolicycancelRequest extends $tea.Model {
|
|
1680
|
+
authToken?: string;
|
|
1681
|
+
requestId: string;
|
|
1682
|
+
policyNo: string;
|
|
1683
|
+
cancelTime: string;
|
|
1684
|
+
endTime: string;
|
|
1685
|
+
static names(): {
|
|
1686
|
+
[key: string]: string;
|
|
1687
|
+
};
|
|
1688
|
+
static types(): {
|
|
1689
|
+
[key: string]: any;
|
|
1690
|
+
};
|
|
1691
|
+
constructor(map?: {
|
|
1692
|
+
[key: string]: any;
|
|
1693
|
+
});
|
|
1694
|
+
}
|
|
1695
|
+
export declare class CallbackMarketingPolicycancelResponse extends $tea.Model {
|
|
1696
|
+
reqMsgId?: string;
|
|
1697
|
+
resultCode?: string;
|
|
1698
|
+
resultMsg?: string;
|
|
1699
|
+
requestId?: string;
|
|
1700
|
+
static names(): {
|
|
1701
|
+
[key: string]: string;
|
|
1702
|
+
};
|
|
1703
|
+
static types(): {
|
|
1704
|
+
[key: string]: any;
|
|
1705
|
+
};
|
|
1706
|
+
constructor(map?: {
|
|
1707
|
+
[key: string]: any;
|
|
1708
|
+
});
|
|
1709
|
+
}
|
|
1710
|
+
export declare class QueryLeadMarketRequest extends $tea.Model {
|
|
1711
|
+
authToken?: string;
|
|
1712
|
+
productCode: string;
|
|
1713
|
+
bizContent?: string;
|
|
1714
|
+
leadId: string;
|
|
1715
|
+
static names(): {
|
|
1716
|
+
[key: string]: string;
|
|
1717
|
+
};
|
|
1718
|
+
static types(): {
|
|
1719
|
+
[key: string]: any;
|
|
1720
|
+
};
|
|
1721
|
+
constructor(map?: {
|
|
1722
|
+
[key: string]: any;
|
|
1723
|
+
});
|
|
1724
|
+
}
|
|
1725
|
+
export declare class QueryLeadMarketResponse extends $tea.Model {
|
|
1726
|
+
reqMsgId?: string;
|
|
1727
|
+
resultCode?: string;
|
|
1728
|
+
resultMsg?: string;
|
|
1729
|
+
bizResult?: string;
|
|
1730
|
+
static names(): {
|
|
1731
|
+
[key: string]: string;
|
|
1732
|
+
};
|
|
1733
|
+
static types(): {
|
|
1734
|
+
[key: string]: any;
|
|
1735
|
+
};
|
|
1736
|
+
constructor(map?: {
|
|
1737
|
+
[key: string]: any;
|
|
1738
|
+
});
|
|
1739
|
+
}
|
|
1740
|
+
export declare class NotifyAutoinsuranceEventRequest extends $tea.Model {
|
|
1741
|
+
authToken?: string;
|
|
1742
|
+
requestNo: string;
|
|
1743
|
+
vin: string;
|
|
1744
|
+
noticeType: string;
|
|
1745
|
+
insureType: string;
|
|
1746
|
+
happenTime: string;
|
|
1747
|
+
extraInfo?: string;
|
|
1748
|
+
static names(): {
|
|
1749
|
+
[key: string]: string;
|
|
1750
|
+
};
|
|
1751
|
+
static types(): {
|
|
1752
|
+
[key: string]: any;
|
|
1753
|
+
};
|
|
1754
|
+
constructor(map?: {
|
|
1755
|
+
[key: string]: any;
|
|
1756
|
+
});
|
|
1757
|
+
}
|
|
1758
|
+
export declare class NotifyAutoinsuranceEventResponse extends $tea.Model {
|
|
1759
|
+
reqMsgId?: string;
|
|
1760
|
+
resultCode?: string;
|
|
1761
|
+
resultMsg?: string;
|
|
1762
|
+
requestNo?: string;
|
|
1763
|
+
static names(): {
|
|
1764
|
+
[key: string]: string;
|
|
1765
|
+
};
|
|
1766
|
+
static types(): {
|
|
1767
|
+
[key: string]: any;
|
|
1768
|
+
};
|
|
1769
|
+
constructor(map?: {
|
|
1770
|
+
[key: string]: any;
|
|
1771
|
+
});
|
|
1772
|
+
}
|
|
1773
|
+
export declare class UploadMktFileRequest extends $tea.Model {
|
|
1774
|
+
authToken?: string;
|
|
1775
|
+
/**
|
|
1776
|
+
* @remarks
|
|
1777
|
+
* 待上传文件
|
|
1778
|
+
*/
|
|
1779
|
+
fileObject?: Readable;
|
|
1780
|
+
/**
|
|
1781
|
+
* @remarks
|
|
1782
|
+
* 待上传文件名
|
|
1783
|
+
*/
|
|
1784
|
+
fileObjectName?: string;
|
|
1785
|
+
fileId: string;
|
|
1786
|
+
bizContent?: string;
|
|
1787
|
+
requestId: string;
|
|
1788
|
+
productCode: string;
|
|
1789
|
+
dataType: string;
|
|
1790
|
+
static names(): {
|
|
1791
|
+
[key: string]: string;
|
|
1792
|
+
};
|
|
1793
|
+
static types(): {
|
|
1794
|
+
[key: string]: any;
|
|
1795
|
+
};
|
|
1796
|
+
constructor(map?: {
|
|
1797
|
+
[key: string]: any;
|
|
1798
|
+
});
|
|
1799
|
+
}
|
|
1800
|
+
export declare class UploadMktFileResponse extends $tea.Model {
|
|
1801
|
+
reqMsgId?: string;
|
|
1802
|
+
resultCode?: string;
|
|
1803
|
+
resultMsg?: string;
|
|
1804
|
+
requestId?: string;
|
|
1805
|
+
static names(): {
|
|
1806
|
+
[key: string]: string;
|
|
1807
|
+
};
|
|
1808
|
+
static types(): {
|
|
1809
|
+
[key: string]: any;
|
|
1810
|
+
};
|
|
1811
|
+
constructor(map?: {
|
|
1812
|
+
[key: string]: any;
|
|
1813
|
+
});
|
|
1814
|
+
}
|
|
1815
|
+
export declare class CallbackMktEffectRequest extends $tea.Model {
|
|
1816
|
+
authToken?: string;
|
|
1817
|
+
requestId: string;
|
|
1818
|
+
projectId: string;
|
|
1819
|
+
marketingMode: string;
|
|
1820
|
+
insureShortUrl?: string;
|
|
1821
|
+
encryptionType: string;
|
|
1822
|
+
encryptedUserId: string;
|
|
1823
|
+
landingVisitId: string;
|
|
1824
|
+
clickTime?: string;
|
|
1825
|
+
eventTime: string;
|
|
1826
|
+
nodeType: string;
|
|
1827
|
+
nodeInfo?: string;
|
|
1828
|
+
static names(): {
|
|
1829
|
+
[key: string]: string;
|
|
1830
|
+
};
|
|
1831
|
+
static types(): {
|
|
1832
|
+
[key: string]: any;
|
|
1833
|
+
};
|
|
1834
|
+
constructor(map?: {
|
|
1835
|
+
[key: string]: any;
|
|
1836
|
+
});
|
|
1837
|
+
}
|
|
1838
|
+
export declare class CallbackMktEffectResponse extends $tea.Model {
|
|
1839
|
+
reqMsgId?: string;
|
|
1840
|
+
resultCode?: string;
|
|
1841
|
+
resultMsg?: string;
|
|
1842
|
+
requestId?: string;
|
|
1843
|
+
static names(): {
|
|
1844
|
+
[key: string]: string;
|
|
1845
|
+
};
|
|
1846
|
+
static types(): {
|
|
1847
|
+
[key: string]: any;
|
|
1848
|
+
};
|
|
1849
|
+
constructor(map?: {
|
|
1850
|
+
[key: string]: any;
|
|
1851
|
+
});
|
|
1852
|
+
}
|
|
1853
|
+
export declare class ReceiveBusinessOpportunitiesRequest extends $tea.Model {
|
|
1854
|
+
authToken?: string;
|
|
1855
|
+
requestId: string;
|
|
1856
|
+
channelCode: string;
|
|
1857
|
+
productCode: string;
|
|
1858
|
+
bizContent: string;
|
|
1859
|
+
static names(): {
|
|
1860
|
+
[key: string]: string;
|
|
1861
|
+
};
|
|
1862
|
+
static types(): {
|
|
1863
|
+
[key: string]: any;
|
|
1864
|
+
};
|
|
1865
|
+
constructor(map?: {
|
|
1866
|
+
[key: string]: any;
|
|
1867
|
+
});
|
|
1868
|
+
}
|
|
1869
|
+
export declare class ReceiveBusinessOpportunitiesResponse extends $tea.Model {
|
|
1870
|
+
reqMsgId?: string;
|
|
1871
|
+
resultCode?: string;
|
|
1872
|
+
resultMsg?: string;
|
|
1873
|
+
bizResult?: string;
|
|
1874
|
+
static names(): {
|
|
1875
|
+
[key: string]: string;
|
|
1876
|
+
};
|
|
1877
|
+
static types(): {
|
|
1878
|
+
[key: string]: any;
|
|
1879
|
+
};
|
|
1880
|
+
constructor(map?: {
|
|
1881
|
+
[key: string]: any;
|
|
1882
|
+
});
|
|
1883
|
+
}
|
|
1884
|
+
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
1885
|
+
authToken?: string;
|
|
1886
|
+
apiCode: string;
|
|
1887
|
+
fileLabel?: string;
|
|
1888
|
+
fileMetadata?: string;
|
|
1889
|
+
fileName?: string;
|
|
1890
|
+
mimeType?: string;
|
|
1891
|
+
apiCluster?: string;
|
|
1892
|
+
static names(): {
|
|
1893
|
+
[key: string]: string;
|
|
1894
|
+
};
|
|
1895
|
+
static types(): {
|
|
1896
|
+
[key: string]: any;
|
|
1897
|
+
};
|
|
1898
|
+
constructor(map?: {
|
|
1899
|
+
[key: string]: any;
|
|
1900
|
+
});
|
|
1901
|
+
}
|
|
1902
|
+
export declare class CreateAntcloudGatewayxFileUploadResponse extends $tea.Model {
|
|
1903
|
+
reqMsgId?: string;
|
|
1904
|
+
resultCode?: string;
|
|
1905
|
+
resultMsg?: string;
|
|
1906
|
+
expiredTime?: string;
|
|
1907
|
+
fileId?: string;
|
|
1908
|
+
uploadHeaders?: XNameValuePair[];
|
|
1909
|
+
uploadUrl?: string;
|
|
1910
|
+
static names(): {
|
|
1911
|
+
[key: string]: string;
|
|
1912
|
+
};
|
|
1913
|
+
static types(): {
|
|
1914
|
+
[key: string]: any;
|
|
1915
|
+
};
|
|
1916
|
+
constructor(map?: {
|
|
1917
|
+
[key: string]: any;
|
|
1918
|
+
});
|
|
1919
|
+
}
|
|
1920
|
+
export default class Client {
|
|
1921
|
+
_endpoint: string;
|
|
1922
|
+
_regionId: string;
|
|
1923
|
+
_accessKeyId: string;
|
|
1924
|
+
_accessKeySecret: string;
|
|
1925
|
+
_protocol: string;
|
|
1926
|
+
_userAgent: string;
|
|
1927
|
+
_readTimeout: number;
|
|
1928
|
+
_connectTimeout: number;
|
|
1929
|
+
_httpProxy: string;
|
|
1930
|
+
_httpsProxy: string;
|
|
1931
|
+
_socks5Proxy: string;
|
|
1932
|
+
_socks5NetWork: string;
|
|
1933
|
+
_noProxy: string;
|
|
1934
|
+
_maxIdleConns: number;
|
|
1935
|
+
_securityToken: string;
|
|
1936
|
+
_maxIdleTimeMillis: number;
|
|
1937
|
+
_keepAliveDurationMillis: number;
|
|
1938
|
+
_maxRequests: number;
|
|
1939
|
+
_maxRequestsPerHost: number;
|
|
1940
|
+
/**
|
|
1941
|
+
* @remarks
|
|
1942
|
+
* Init client with Config
|
|
1943
|
+
*
|
|
1944
|
+
* @param config - config contains the necessary information to create a client
|
|
1945
|
+
*/
|
|
1946
|
+
constructor(config: Config);
|
|
1947
|
+
/**
|
|
1948
|
+
* @remarks
|
|
1949
|
+
* Encapsulate the request and invoke the network
|
|
1950
|
+
*
|
|
1951
|
+
* @param action - api name
|
|
1952
|
+
* @param protocol - http or https
|
|
1953
|
+
* @param method - e.g. GET
|
|
1954
|
+
* @param pathname - pathname of every api
|
|
1955
|
+
* @param request - which contains request params
|
|
1956
|
+
* @param runtime - which controls some details of call api, such as retry times
|
|
1957
|
+
* @returns the response
|
|
1958
|
+
*/
|
|
1959
|
+
doRequest(version: string, action: string, protocol: string, method: string, pathname: string, request: {
|
|
1960
|
+
[key: string]: any;
|
|
1961
|
+
}, headers: {
|
|
1962
|
+
[key: string]: string;
|
|
1963
|
+
}, runtime: $Util.RuntimeOptions): Promise<{
|
|
1964
|
+
[key: string]: any;
|
|
1965
|
+
}>;
|
|
1966
|
+
/**
|
|
1967
|
+
* @remarks
|
|
1968
|
+
* Description: 客户查询会话记录
|
|
1969
|
+
* Summary: 客户查询会话记录
|
|
1970
|
+
*/
|
|
1971
|
+
queryAasButleragentSession(request: QueryAasButleragentSessionRequest): Promise<QueryAasButleragentSessionResponse>;
|
|
1972
|
+
/**
|
|
1973
|
+
* @remarks
|
|
1974
|
+
* Description: 客户查询会话记录
|
|
1975
|
+
* Summary: 客户查询会话记录
|
|
1976
|
+
*/
|
|
1977
|
+
queryAasButleragentSessionEx(request: QueryAasButleragentSessionRequest, headers: {
|
|
1978
|
+
[key: string]: string;
|
|
1979
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryAasButleragentSessionResponse>;
|
|
1980
|
+
/**
|
|
1981
|
+
* @remarks
|
|
1982
|
+
* Description: 智能保顾完整方案url获取
|
|
1983
|
+
* Summary: 智能保顾完整方案url获取
|
|
1984
|
+
*/
|
|
1985
|
+
getAasButleragentPlanurl(request: GetAasButleragentPlanurlRequest): Promise<GetAasButleragentPlanurlResponse>;
|
|
1986
|
+
/**
|
|
1987
|
+
* @remarks
|
|
1988
|
+
* Description: 智能保顾完整方案url获取
|
|
1989
|
+
* Summary: 智能保顾完整方案url获取
|
|
1990
|
+
*/
|
|
1991
|
+
getAasButleragentPlanurlEx(request: GetAasButleragentPlanurlRequest, headers: {
|
|
1992
|
+
[key: string]: string;
|
|
1993
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetAasButleragentPlanurlResponse>;
|
|
1994
|
+
/**
|
|
1995
|
+
* @remarks
|
|
1996
|
+
* Description: 获取智能保顾会话聊天url
|
|
1997
|
+
* Summary: 获取智能保顾会话聊天url
|
|
1998
|
+
*/
|
|
1999
|
+
getAasButleragentChaturl(request: GetAasButleragentChaturlRequest): Promise<GetAasButleragentChaturlResponse>;
|
|
2000
|
+
/**
|
|
2001
|
+
* @remarks
|
|
2002
|
+
* Description: 获取智能保顾会话聊天url
|
|
2003
|
+
* Summary: 获取智能保顾会话聊天url
|
|
2004
|
+
*/
|
|
2005
|
+
getAasButleragentChaturlEx(request: GetAasButleragentChaturlRequest, headers: {
|
|
2006
|
+
[key: string]: string;
|
|
2007
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetAasButleragentChaturlResponse>;
|
|
2008
|
+
/**
|
|
2009
|
+
* @remarks
|
|
2010
|
+
* Description: 保险营销效果回传接口——直播通道
|
|
2011
|
+
* Summary: 保险营销效果回传接口——直播通道
|
|
2012
|
+
*/
|
|
2013
|
+
callbackAasMktLiveeffect(request: CallbackAasMktLiveeffectRequest): Promise<CallbackAasMktLiveeffectResponse>;
|
|
2014
|
+
/**
|
|
2015
|
+
* @remarks
|
|
2016
|
+
* Description: 保险营销效果回传接口——直播通道
|
|
2017
|
+
* Summary: 保险营销效果回传接口——直播通道
|
|
2018
|
+
*/
|
|
2019
|
+
callbackAasMktLiveeffectEx(request: CallbackAasMktLiveeffectRequest, headers: {
|
|
2020
|
+
[key: string]: string;
|
|
2021
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackAasMktLiveeffectResponse>;
|
|
2022
|
+
/**
|
|
2023
|
+
* @remarks
|
|
2024
|
+
* Description: 保险询报价结果查询
|
|
2025
|
+
* Summary: 保险询报价结果查询
|
|
2026
|
+
*/
|
|
2027
|
+
queryInquiry(request: QueryInquiryRequest): Promise<QueryInquiryResponse>;
|
|
2028
|
+
/**
|
|
2029
|
+
* @remarks
|
|
2030
|
+
* Description: 保险询报价结果查询
|
|
2031
|
+
* Summary: 保险询报价结果查询
|
|
2032
|
+
*/
|
|
2033
|
+
queryInquiryEx(request: QueryInquiryRequest, headers: {
|
|
1282
2034
|
[key: string]: string;
|
|
1283
2035
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInquiryResponse>;
|
|
1284
2036
|
/**
|
|
2037
|
+
* @remarks
|
|
1285
2038
|
* Description: 保险产品询价
|
|
1286
2039
|
* Summary: 保险产品询价
|
|
1287
2040
|
*/
|
|
1288
2041
|
submitInquiry(request: SubmitInquiryRequest): Promise<SubmitInquiryResponse>;
|
|
1289
2042
|
/**
|
|
2043
|
+
* @remarks
|
|
1290
2044
|
* Description: 保险产品询价
|
|
1291
2045
|
* Summary: 保险产品询价
|
|
1292
2046
|
*/
|
|
@@ -1294,11 +2048,13 @@ export default class Client {
|
|
|
1294
2048
|
[key: string]: string;
|
|
1295
2049
|
}, runtime: $Util.RuntimeOptions): Promise<SubmitInquiryResponse>;
|
|
1296
2050
|
/**
|
|
2051
|
+
* @remarks
|
|
1297
2052
|
* Description: 历史灾害查询
|
|
1298
2053
|
* Summary: 历史灾害数据查询
|
|
1299
2054
|
*/
|
|
1300
2055
|
queryDataDisaster(request: QueryDataDisasterRequest): Promise<QueryDataDisasterResponse>;
|
|
1301
2056
|
/**
|
|
2057
|
+
* @remarks
|
|
1302
2058
|
* Description: 历史灾害查询
|
|
1303
2059
|
* Summary: 历史灾害数据查询
|
|
1304
2060
|
*/
|
|
@@ -1306,11 +2062,13 @@ export default class Client {
|
|
|
1306
2062
|
[key: string]: string;
|
|
1307
2063
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDataDisasterResponse>;
|
|
1308
2064
|
/**
|
|
2065
|
+
* @remarks
|
|
1309
2066
|
* Description: 实时天气预警
|
|
1310
2067
|
* Summary: 实时天气预警
|
|
1311
2068
|
*/
|
|
1312
2069
|
queryDataWeather(request: QueryDataWeatherRequest): Promise<QueryDataWeatherResponse>;
|
|
1313
2070
|
/**
|
|
2071
|
+
* @remarks
|
|
1314
2072
|
* Description: 实时天气预警
|
|
1315
2073
|
* Summary: 实时天气预警
|
|
1316
2074
|
*/
|
|
@@ -1318,11 +2076,13 @@ export default class Client {
|
|
|
1318
2076
|
[key: string]: string;
|
|
1319
2077
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDataWeatherResponse>;
|
|
1320
2078
|
/**
|
|
2079
|
+
* @remarks
|
|
1321
2080
|
* Description: 报价接口同步接口
|
|
1322
2081
|
* Summary: 报价接口同步接口
|
|
1323
2082
|
*/
|
|
1324
2083
|
syncQuote(request: SyncQuoteRequest): Promise<SyncQuoteResponse>;
|
|
1325
2084
|
/**
|
|
2085
|
+
* @remarks
|
|
1326
2086
|
* Description: 报价接口同步接口
|
|
1327
2087
|
* Summary: 报价接口同步接口
|
|
1328
2088
|
*/
|
|
@@ -1330,11 +2090,13 @@ export default class Client {
|
|
|
1330
2090
|
[key: string]: string;
|
|
1331
2091
|
}, runtime: $Util.RuntimeOptions): Promise<SyncQuoteResponse>;
|
|
1332
2092
|
/**
|
|
2093
|
+
* @remarks
|
|
1333
2094
|
* Description: 承保自核申请接口
|
|
1334
2095
|
* Summary: 承保自核申请接口
|
|
1335
2096
|
*/
|
|
1336
2097
|
applyUnderwriting(request: ApplyUnderwritingRequest): Promise<ApplyUnderwritingResponse>;
|
|
1337
2098
|
/**
|
|
2099
|
+
* @remarks
|
|
1338
2100
|
* Description: 承保自核申请接口
|
|
1339
2101
|
* Summary: 承保自核申请接口
|
|
1340
2102
|
*/
|
|
@@ -1342,11 +2104,13 @@ export default class Client {
|
|
|
1342
2104
|
[key: string]: string;
|
|
1343
2105
|
}, runtime: $Util.RuntimeOptions): Promise<ApplyUnderwritingResponse>;
|
|
1344
2106
|
/**
|
|
2107
|
+
* @remarks
|
|
1345
2108
|
* Description: 承保自核结果查询接口
|
|
1346
2109
|
* Summary: 承保自核结果查询接口
|
|
1347
2110
|
*/
|
|
1348
2111
|
queryUnderwriting(request: QueryUnderwritingRequest): Promise<QueryUnderwritingResponse>;
|
|
1349
2112
|
/**
|
|
2113
|
+
* @remarks
|
|
1350
2114
|
* Description: 承保自核结果查询接口
|
|
1351
2115
|
* Summary: 承保自核结果查询接口
|
|
1352
2116
|
*/
|
|
@@ -1354,11 +2118,13 @@ export default class Client {
|
|
|
1354
2118
|
[key: string]: string;
|
|
1355
2119
|
}, runtime: $Util.RuntimeOptions): Promise<QueryUnderwritingResponse>;
|
|
1356
2120
|
/**
|
|
2121
|
+
* @remarks
|
|
1357
2122
|
* Description: 根据保单号查询保单附件,并返回一个有效期为7天的ossurl
|
|
1358
2123
|
* Summary: 保险科技保单附件查询接口
|
|
1359
2124
|
*/
|
|
1360
2125
|
queryPolicyFile(request: QueryPolicyFileRequest): Promise<QueryPolicyFileResponse>;
|
|
1361
2126
|
/**
|
|
2127
|
+
* @remarks
|
|
1362
2128
|
* Description: 根据保单号查询保单附件,并返回一个有效期为7天的ossurl
|
|
1363
2129
|
* Summary: 保险科技保单附件查询接口
|
|
1364
2130
|
*/
|
|
@@ -1366,11 +2132,13 @@ export default class Client {
|
|
|
1366
2132
|
[key: string]: string;
|
|
1367
2133
|
}, runtime: $Util.RuntimeOptions): Promise<QueryPolicyFileResponse>;
|
|
1368
2134
|
/**
|
|
2135
|
+
* @remarks
|
|
1369
2136
|
* Description: 保险SaaS投保申请接口
|
|
1370
2137
|
* Summary: 投保申请接口
|
|
1371
2138
|
*/
|
|
1372
2139
|
applyInsure(request: ApplyInsureRequest): Promise<ApplyInsureResponse>;
|
|
1373
2140
|
/**
|
|
2141
|
+
* @remarks
|
|
1374
2142
|
* Description: 保险SaaS投保申请接口
|
|
1375
2143
|
* Summary: 投保申请接口
|
|
1376
2144
|
*/
|
|
@@ -1378,11 +2146,13 @@ export default class Client {
|
|
|
1378
2146
|
[key: string]: string;
|
|
1379
2147
|
}, runtime: $Util.RuntimeOptions): Promise<ApplyInsureResponse>;
|
|
1380
2148
|
/**
|
|
2149
|
+
* @remarks
|
|
1381
2150
|
* Description: 保单结果同步,注意:基于投保信息的保单结果同步。
|
|
1382
2151
|
* Summary: 保单结果同步(依赖投保申请)
|
|
1383
2152
|
*/
|
|
1384
2153
|
notifyPolicyResult(request: NotifyPolicyResultRequest): Promise<NotifyPolicyResultResponse>;
|
|
1385
2154
|
/**
|
|
2155
|
+
* @remarks
|
|
1386
2156
|
* Description: 保单结果同步,注意:基于投保信息的保单结果同步。
|
|
1387
2157
|
* Summary: 保单结果同步(依赖投保申请)
|
|
1388
2158
|
*/
|
|
@@ -1390,11 +2160,13 @@ export default class Client {
|
|
|
1390
2160
|
[key: string]: string;
|
|
1391
2161
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyPolicyResultResponse>;
|
|
1392
2162
|
/**
|
|
2163
|
+
* @remarks
|
|
1393
2164
|
* Description: 报案接口
|
|
1394
2165
|
* Summary: 保险科技 报案接口
|
|
1395
2166
|
*/
|
|
1396
2167
|
applyClaim(request: ApplyClaimRequest): Promise<ApplyClaimResponse>;
|
|
1397
2168
|
/**
|
|
2169
|
+
* @remarks
|
|
1398
2170
|
* Description: 报案接口
|
|
1399
2171
|
* Summary: 保险科技 报案接口
|
|
1400
2172
|
*/
|
|
@@ -1402,11 +2174,13 @@ export default class Client {
|
|
|
1402
2174
|
[key: string]: string;
|
|
1403
2175
|
}, runtime: $Util.RuntimeOptions): Promise<ApplyClaimResponse>;
|
|
1404
2176
|
/**
|
|
2177
|
+
* @remarks
|
|
1405
2178
|
* Description: 报案撤销(场景端)
|
|
1406
2179
|
* Summary: 报案撤销(场景端)
|
|
1407
2180
|
*/
|
|
1408
2181
|
cancelClaim(request: CancelClaimRequest): Promise<CancelClaimResponse>;
|
|
1409
2182
|
/**
|
|
2183
|
+
* @remarks
|
|
1410
2184
|
* Description: 报案撤销(场景端)
|
|
1411
2185
|
* Summary: 报案撤销(场景端)
|
|
1412
2186
|
*/
|
|
@@ -1414,11 +2188,13 @@ export default class Client {
|
|
|
1414
2188
|
[key: string]: string;
|
|
1415
2189
|
}, runtime: $Util.RuntimeOptions): Promise<CancelClaimResponse>;
|
|
1416
2190
|
/**
|
|
2191
|
+
* @remarks
|
|
1417
2192
|
* Description: 报案材料更新(场景端)
|
|
1418
2193
|
* Summary: 报案材料更新(场景端)
|
|
1419
2194
|
*/
|
|
1420
2195
|
updateClaimMaterial(request: UpdateClaimMaterialRequest): Promise<UpdateClaimMaterialResponse>;
|
|
1421
2196
|
/**
|
|
2197
|
+
* @remarks
|
|
1422
2198
|
* Description: 报案材料更新(场景端)
|
|
1423
2199
|
* Summary: 报案材料更新(场景端)
|
|
1424
2200
|
*/
|
|
@@ -1426,11 +2202,13 @@ export default class Client {
|
|
|
1426
2202
|
[key: string]: string;
|
|
1427
2203
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateClaimMaterialResponse>;
|
|
1428
2204
|
/**
|
|
2205
|
+
* @remarks
|
|
1429
2206
|
* Description: 理赔结果确认(场景端)
|
|
1430
2207
|
* Summary: 理赔结果确认(场景端)
|
|
1431
2208
|
*/
|
|
1432
2209
|
confirmClaimSettle(request: ConfirmClaimSettleRequest): Promise<ConfirmClaimSettleResponse>;
|
|
1433
2210
|
/**
|
|
2211
|
+
* @remarks
|
|
1434
2212
|
* Description: 理赔结果确认(场景端)
|
|
1435
2213
|
* Summary: 理赔结果确认(场景端)
|
|
1436
2214
|
*/
|
|
@@ -1438,11 +2216,13 @@ export default class Client {
|
|
|
1438
2216
|
[key: string]: string;
|
|
1439
2217
|
}, runtime: $Util.RuntimeOptions): Promise<ConfirmClaimSettleResponse>;
|
|
1440
2218
|
/**
|
|
2219
|
+
* @remarks
|
|
1441
2220
|
* Description: 理赔结案通知(保司端)
|
|
1442
2221
|
* Summary: 理赔结案通知(保司端)
|
|
1443
2222
|
*/
|
|
1444
2223
|
finishClaimSettle(request: FinishClaimSettleRequest): Promise<FinishClaimSettleResponse>;
|
|
1445
2224
|
/**
|
|
2225
|
+
* @remarks
|
|
1446
2226
|
* Description: 理赔结案通知(保司端)
|
|
1447
2227
|
* Summary: 理赔结案通知(保司端)
|
|
1448
2228
|
*/
|
|
@@ -1450,11 +2230,13 @@ export default class Client {
|
|
|
1450
2230
|
[key: string]: string;
|
|
1451
2231
|
}, runtime: $Util.RuntimeOptions): Promise<FinishClaimSettleResponse>;
|
|
1452
2232
|
/**
|
|
2233
|
+
* @remarks
|
|
1453
2234
|
* Description: 保险批改自核接口
|
|
1454
2235
|
* Summary: 保险批改自核接口
|
|
1455
2236
|
*/
|
|
1456
2237
|
applyEndorsementStrategy(request: ApplyEndorsementStrategyRequest): Promise<ApplyEndorsementStrategyResponse>;
|
|
1457
2238
|
/**
|
|
2239
|
+
* @remarks
|
|
1458
2240
|
* Description: 保险批改自核接口
|
|
1459
2241
|
* Summary: 保险批改自核接口
|
|
1460
2242
|
*/
|
|
@@ -1462,11 +2244,13 @@ export default class Client {
|
|
|
1462
2244
|
[key: string]: string;
|
|
1463
2245
|
}, runtime: $Util.RuntimeOptions): Promise<ApplyEndorsementStrategyResponse>;
|
|
1464
2246
|
/**
|
|
2247
|
+
* @remarks
|
|
1465
2248
|
* Description: 保单信息离线同步
|
|
1466
2249
|
* Summary: 保单信息离线同步
|
|
1467
2250
|
*/
|
|
1468
2251
|
syncPolicyResult(request: SyncPolicyResultRequest): Promise<SyncPolicyResultResponse>;
|
|
1469
2252
|
/**
|
|
2253
|
+
* @remarks
|
|
1470
2254
|
* Description: 保单信息离线同步
|
|
1471
2255
|
* Summary: 保单信息离线同步
|
|
1472
2256
|
*/
|
|
@@ -1474,11 +2258,13 @@ export default class Client {
|
|
|
1474
2258
|
[key: string]: string;
|
|
1475
2259
|
}, runtime: $Util.RuntimeOptions): Promise<SyncPolicyResultResponse>;
|
|
1476
2260
|
/**
|
|
2261
|
+
* @remarks
|
|
1477
2262
|
* Description: 基于通知单号查询保险投保结果
|
|
1478
2263
|
* Summary: 保险投保结果查询
|
|
1479
2264
|
*/
|
|
1480
2265
|
queryInsureResult(request: QueryInsureResultRequest): Promise<QueryInsureResultResponse>;
|
|
1481
2266
|
/**
|
|
2267
|
+
* @remarks
|
|
1482
2268
|
* Description: 基于通知单号查询保险投保结果
|
|
1483
2269
|
* Summary: 保险投保结果查询
|
|
1484
2270
|
*/
|
|
@@ -1486,11 +2272,13 @@ export default class Client {
|
|
|
1486
2272
|
[key: string]: string;
|
|
1487
2273
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInsureResultResponse>;
|
|
1488
2274
|
/**
|
|
2275
|
+
* @remarks
|
|
1489
2276
|
* Description: 投保测试接口
|
|
1490
2277
|
* Summary: 投保测试接口
|
|
1491
2278
|
*/
|
|
1492
2279
|
applyInsureTest(request: ApplyInsureTestRequest): Promise<ApplyInsureTestResponse>;
|
|
1493
2280
|
/**
|
|
2281
|
+
* @remarks
|
|
1494
2282
|
* Description: 投保测试接口
|
|
1495
2283
|
* Summary: 投保测试接口
|
|
1496
2284
|
*/
|
|
@@ -1498,11 +2286,13 @@ export default class Client {
|
|
|
1498
2286
|
[key: string]: string;
|
|
1499
2287
|
}, runtime: $Util.RuntimeOptions): Promise<ApplyInsureTestResponse>;
|
|
1500
2288
|
/**
|
|
2289
|
+
* @remarks
|
|
1501
2290
|
* Description: 本接口用于调查报案数据的提交
|
|
1502
2291
|
* Summary: 调查报案提交接口
|
|
1503
2292
|
*/
|
|
1504
2293
|
submitInvestigateCase(request: SubmitInvestigateCaseRequest): Promise<SubmitInvestigateCaseResponse>;
|
|
1505
2294
|
/**
|
|
2295
|
+
* @remarks
|
|
1506
2296
|
* Description: 本接口用于调查报案数据的提交
|
|
1507
2297
|
* Summary: 调查报案提交接口
|
|
1508
2298
|
*/
|
|
@@ -1510,11 +2300,13 @@ export default class Client {
|
|
|
1510
2300
|
[key: string]: string;
|
|
1511
2301
|
}, runtime: $Util.RuntimeOptions): Promise<SubmitInvestigateCaseResponse>;
|
|
1512
2302
|
/**
|
|
2303
|
+
* @remarks
|
|
1513
2304
|
* Description: 回销结果查询接口
|
|
1514
2305
|
* Summary: 回销结果查询接口
|
|
1515
2306
|
*/
|
|
1516
2307
|
queryReverseCommission(request: QueryReverseCommissionRequest): Promise<QueryReverseCommissionResponse>;
|
|
1517
2308
|
/**
|
|
2309
|
+
* @remarks
|
|
1518
2310
|
* Description: 回销结果查询接口
|
|
1519
2311
|
* Summary: 回销结果查询接口
|
|
1520
2312
|
*/
|
|
@@ -1522,11 +2314,13 @@ export default class Client {
|
|
|
1522
2314
|
[key: string]: string;
|
|
1523
2315
|
}, runtime: $Util.RuntimeOptions): Promise<QueryReverseCommissionResponse>;
|
|
1524
2316
|
/**
|
|
2317
|
+
* @remarks
|
|
1525
2318
|
* Description: 嵌入式保险服务卡片url链接获取
|
|
1526
2319
|
* Summary: 嵌入式保险服务卡片url链接获取
|
|
1527
2320
|
*/
|
|
1528
2321
|
getEmbedcardUrl(request: GetEmbedcardUrlRequest): Promise<GetEmbedcardUrlResponse>;
|
|
1529
2322
|
/**
|
|
2323
|
+
* @remarks
|
|
1530
2324
|
* Description: 嵌入式保险服务卡片url链接获取
|
|
1531
2325
|
* Summary: 嵌入式保险服务卡片url链接获取
|
|
1532
2326
|
*/
|
|
@@ -1534,11 +2328,13 @@ export default class Client {
|
|
|
1534
2328
|
[key: string]: string;
|
|
1535
2329
|
}, runtime: $Util.RuntimeOptions): Promise<GetEmbedcardUrlResponse>;
|
|
1536
2330
|
/**
|
|
2331
|
+
* @remarks
|
|
1537
2332
|
* Description: 嵌入式保险服务打款成功出单接口
|
|
1538
2333
|
* Summary: 嵌入式保险服务打款成功出单接口
|
|
1539
2334
|
*/
|
|
1540
2335
|
issueEmbedcardPaysuc(request: IssueEmbedcardPaysucRequest): Promise<IssueEmbedcardPaysucResponse>;
|
|
1541
2336
|
/**
|
|
2337
|
+
* @remarks
|
|
1542
2338
|
* Description: 嵌入式保险服务打款成功出单接口
|
|
1543
2339
|
* Summary: 嵌入式保险服务打款成功出单接口
|
|
1544
2340
|
*/
|
|
@@ -1546,11 +2342,13 @@ export default class Client {
|
|
|
1546
2342
|
[key: string]: string;
|
|
1547
2343
|
}, runtime: $Util.RuntimeOptions): Promise<IssueEmbedcardPaysucResponse>;
|
|
1548
2344
|
/**
|
|
2345
|
+
* @remarks
|
|
1549
2346
|
* Description: 嵌入式主机厂车险url链接获取
|
|
1550
2347
|
* Summary: 嵌入式主机厂车险url链接获取
|
|
1551
2348
|
*/
|
|
1552
2349
|
getEmbedoemautoinsuranceUrl(request: GetEmbedoemautoinsuranceUrlRequest): Promise<GetEmbedoemautoinsuranceUrlResponse>;
|
|
1553
2350
|
/**
|
|
2351
|
+
* @remarks
|
|
1554
2352
|
* Description: 嵌入式主机厂车险url链接获取
|
|
1555
2353
|
* Summary: 嵌入式主机厂车险url链接获取
|
|
1556
2354
|
*/
|
|
@@ -1558,11 +2356,13 @@ export default class Client {
|
|
|
1558
2356
|
[key: string]: string;
|
|
1559
2357
|
}, runtime: $Util.RuntimeOptions): Promise<GetEmbedoemautoinsuranceUrlResponse>;
|
|
1560
2358
|
/**
|
|
2359
|
+
* @remarks
|
|
1561
2360
|
* Description: 场景方获取权益链接
|
|
1562
2361
|
* Summary: 场景方获取权益链接
|
|
1563
2362
|
*/
|
|
1564
2363
|
getRightplatformUrl(request: GetRightplatformUrlRequest): Promise<GetRightplatformUrlResponse>;
|
|
1565
2364
|
/**
|
|
2365
|
+
* @remarks
|
|
1566
2366
|
* Description: 场景方获取权益链接
|
|
1567
2367
|
* Summary: 场景方获取权益链接
|
|
1568
2368
|
*/
|
|
@@ -1570,11 +2370,13 @@ export default class Client {
|
|
|
1570
2370
|
[key: string]: string;
|
|
1571
2371
|
}, runtime: $Util.RuntimeOptions): Promise<GetRightplatformUrlResponse>;
|
|
1572
2372
|
/**
|
|
2373
|
+
* @remarks
|
|
1573
2374
|
* Description: 更新申请额度状态&投保人信息
|
|
1574
2375
|
* Summary: 更新申请额度状态&投保人信息
|
|
1575
2376
|
*/
|
|
1576
2377
|
updateRightplatformApplyinfo(request: UpdateRightplatformApplyinfoRequest): Promise<UpdateRightplatformApplyinfoResponse>;
|
|
1577
2378
|
/**
|
|
2379
|
+
* @remarks
|
|
1578
2380
|
* Description: 更新申请额度状态&投保人信息
|
|
1579
2381
|
* Summary: 更新申请额度状态&投保人信息
|
|
1580
2382
|
*/
|
|
@@ -1582,11 +2384,13 @@ export default class Client {
|
|
|
1582
2384
|
[key: string]: string;
|
|
1583
2385
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateRightplatformApplyinfoResponse>;
|
|
1584
2386
|
/**
|
|
2387
|
+
* @remarks
|
|
1585
2388
|
* Description: 场景方标的信息通知
|
|
1586
2389
|
* Summary: 场景方标的信息通知
|
|
1587
2390
|
*/
|
|
1588
2391
|
notifyInterestScenesubject(request: NotifyInterestScenesubjectRequest): Promise<NotifyInterestScenesubjectResponse>;
|
|
1589
2392
|
/**
|
|
2393
|
+
* @remarks
|
|
1590
2394
|
* Description: 场景方标的信息通知
|
|
1591
2395
|
* Summary: 场景方标的信息通知
|
|
1592
2396
|
*/
|
|
@@ -1594,11 +2398,13 @@ export default class Client {
|
|
|
1594
2398
|
[key: string]: string;
|
|
1595
2399
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyInterestScenesubjectResponse>;
|
|
1596
2400
|
/**
|
|
2401
|
+
* @remarks
|
|
1597
2402
|
* Description: 权益服务商标的信息查询
|
|
1598
2403
|
* Summary: 权益服务商标的信息查询
|
|
1599
2404
|
*/
|
|
1600
2405
|
queryInterestSuppliersubject(request: QueryInterestSuppliersubjectRequest): Promise<QueryInterestSuppliersubjectResponse>;
|
|
1601
2406
|
/**
|
|
2407
|
+
* @remarks
|
|
1602
2408
|
* Description: 权益服务商标的信息查询
|
|
1603
2409
|
* Summary: 权益服务商标的信息查询
|
|
1604
2410
|
*/
|
|
@@ -1606,11 +2412,13 @@ export default class Client {
|
|
|
1606
2412
|
[key: string]: string;
|
|
1607
2413
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInterestSuppliersubjectResponse>;
|
|
1608
2414
|
/**
|
|
2415
|
+
* @remarks
|
|
1609
2416
|
* Description: 权益服务商投保后通知保单信息
|
|
1610
2417
|
* Summary: 权益服务商投保后通知保单信息
|
|
1611
2418
|
*/
|
|
1612
2419
|
notifyInterestSupplierpolicy(request: NotifyInterestSupplierpolicyRequest): Promise<NotifyInterestSupplierpolicyResponse>;
|
|
1613
2420
|
/**
|
|
2421
|
+
* @remarks
|
|
1614
2422
|
* Description: 权益服务商投保后通知保单信息
|
|
1615
2423
|
* Summary: 权益服务商投保后通知保单信息
|
|
1616
2424
|
*/
|
|
@@ -1618,11 +2426,13 @@ export default class Client {
|
|
|
1618
2426
|
[key: string]: string;
|
|
1619
2427
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyInterestSupplierpolicyResponse>;
|
|
1620
2428
|
/**
|
|
2429
|
+
* @remarks
|
|
1621
2430
|
* Description: 场景方获取权益链接
|
|
1622
2431
|
* Summary: 场景方获取权益链接
|
|
1623
2432
|
*/
|
|
1624
2433
|
getInterestUrl(request: GetInterestUrlRequest): Promise<GetInterestUrlResponse>;
|
|
1625
2434
|
/**
|
|
2435
|
+
* @remarks
|
|
1626
2436
|
* Description: 场景方获取权益链接
|
|
1627
2437
|
* Summary: 场景方获取权益链接
|
|
1628
2438
|
*/
|
|
@@ -1630,11 +2440,13 @@ export default class Client {
|
|
|
1630
2440
|
[key: string]: string;
|
|
1631
2441
|
}, runtime: $Util.RuntimeOptions): Promise<GetInterestUrlResponse>;
|
|
1632
2442
|
/**
|
|
2443
|
+
* @remarks
|
|
1633
2444
|
* Description: 场景方订单信息查询
|
|
1634
2445
|
* Summary: 场景方订单信息查询
|
|
1635
2446
|
*/
|
|
1636
2447
|
queryInterestSceneorder(request: QueryInterestSceneorderRequest): Promise<QueryInterestSceneorderResponse>;
|
|
1637
2448
|
/**
|
|
2449
|
+
* @remarks
|
|
1638
2450
|
* Description: 场景方订单信息查询
|
|
1639
2451
|
* Summary: 场景方订单信息查询
|
|
1640
2452
|
*/
|
|
@@ -1642,15 +2454,157 @@ export default class Client {
|
|
|
1642
2454
|
[key: string]: string;
|
|
1643
2455
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInterestSceneorderResponse>;
|
|
1644
2456
|
/**
|
|
2457
|
+
* @remarks
|
|
1645
2458
|
* Description: 权益服务商订单状态通知
|
|
1646
2459
|
* Summary: 权益服务商订单状态通知
|
|
1647
2460
|
*/
|
|
1648
2461
|
notifyInterestSupplierorder(request: NotifyInterestSupplierorderRequest): Promise<NotifyInterestSupplierorderResponse>;
|
|
1649
2462
|
/**
|
|
2463
|
+
* @remarks
|
|
1650
2464
|
* Description: 权益服务商订单状态通知
|
|
1651
2465
|
* Summary: 权益服务商订单状态通知
|
|
1652
2466
|
*/
|
|
1653
2467
|
notifyInterestSupplierorderEx(request: NotifyInterestSupplierorderRequest, headers: {
|
|
1654
2468
|
[key: string]: string;
|
|
1655
2469
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyInterestSupplierorderResponse>;
|
|
2470
|
+
/**
|
|
2471
|
+
* @remarks
|
|
2472
|
+
* Description: 车险线索营销结果接收
|
|
2473
|
+
* Summary: 车险线索营销结果接收
|
|
2474
|
+
*/
|
|
2475
|
+
receiveLeadMarket(request: ReceiveLeadMarketRequest): Promise<ReceiveLeadMarketResponse>;
|
|
2476
|
+
/**
|
|
2477
|
+
* @remarks
|
|
2478
|
+
* Description: 车险线索营销结果接收
|
|
2479
|
+
* Summary: 车险线索营销结果接收
|
|
2480
|
+
*/
|
|
2481
|
+
receiveLeadMarketEx(request: ReceiveLeadMarketRequest, headers: {
|
|
2482
|
+
[key: string]: string;
|
|
2483
|
+
}, runtime: $Util.RuntimeOptions): Promise<ReceiveLeadMarketResponse>;
|
|
2484
|
+
/**
|
|
2485
|
+
* @remarks
|
|
2486
|
+
* Description: 营销投保短链获取
|
|
2487
|
+
* Summary: 营销投保短链获取
|
|
2488
|
+
*/
|
|
2489
|
+
getMarketingInsureurl(request: GetMarketingInsureurlRequest): Promise<GetMarketingInsureurlResponse>;
|
|
2490
|
+
/**
|
|
2491
|
+
* @remarks
|
|
2492
|
+
* Description: 营销投保短链获取
|
|
2493
|
+
* Summary: 营销投保短链获取
|
|
2494
|
+
*/
|
|
2495
|
+
getMarketingInsureurlEx(request: GetMarketingInsureurlRequest, headers: {
|
|
2496
|
+
[key: string]: string;
|
|
2497
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetMarketingInsureurlResponse>;
|
|
2498
|
+
/**
|
|
2499
|
+
* @remarks
|
|
2500
|
+
* Description: 营销保单出单信息事件回传
|
|
2501
|
+
* Summary: 营销保单出单信息事件回传
|
|
2502
|
+
*/
|
|
2503
|
+
callbackMarketingEvent(request: CallbackMarketingEventRequest): Promise<CallbackMarketingEventResponse>;
|
|
2504
|
+
/**
|
|
2505
|
+
* @remarks
|
|
2506
|
+
* Description: 营销保单出单信息事件回传
|
|
2507
|
+
* Summary: 营销保单出单信息事件回传
|
|
2508
|
+
*/
|
|
2509
|
+
callbackMarketingEventEx(request: CallbackMarketingEventRequest, headers: {
|
|
2510
|
+
[key: string]: string;
|
|
2511
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackMarketingEventResponse>;
|
|
2512
|
+
/**
|
|
2513
|
+
* @remarks
|
|
2514
|
+
* Description: 营销退保信息回传
|
|
2515
|
+
* Summary: 营销退保事件回传
|
|
2516
|
+
*/
|
|
2517
|
+
callbackMarketingPolicycancel(request: CallbackMarketingPolicycancelRequest): Promise<CallbackMarketingPolicycancelResponse>;
|
|
2518
|
+
/**
|
|
2519
|
+
* @remarks
|
|
2520
|
+
* Description: 营销退保信息回传
|
|
2521
|
+
* Summary: 营销退保事件回传
|
|
2522
|
+
*/
|
|
2523
|
+
callbackMarketingPolicycancelEx(request: CallbackMarketingPolicycancelRequest, headers: {
|
|
2524
|
+
[key: string]: string;
|
|
2525
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackMarketingPolicycancelResponse>;
|
|
2526
|
+
/**
|
|
2527
|
+
* @remarks
|
|
2528
|
+
* Description: 车险线索查询
|
|
2529
|
+
* Summary: 车险线索查询
|
|
2530
|
+
*/
|
|
2531
|
+
queryLeadMarket(request: QueryLeadMarketRequest): Promise<QueryLeadMarketResponse>;
|
|
2532
|
+
/**
|
|
2533
|
+
* @remarks
|
|
2534
|
+
* Description: 车险线索查询
|
|
2535
|
+
* Summary: 车险线索查询
|
|
2536
|
+
*/
|
|
2537
|
+
queryLeadMarketEx(request: QueryLeadMarketRequest, headers: {
|
|
2538
|
+
[key: string]: string;
|
|
2539
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryLeadMarketResponse>;
|
|
2540
|
+
/**
|
|
2541
|
+
* @remarks
|
|
2542
|
+
* Description: 理想车险事件通知
|
|
2543
|
+
* Summary: 理想车险事件通知
|
|
2544
|
+
*/
|
|
2545
|
+
notifyAutoinsuranceEvent(request: NotifyAutoinsuranceEventRequest): Promise<NotifyAutoinsuranceEventResponse>;
|
|
2546
|
+
/**
|
|
2547
|
+
* @remarks
|
|
2548
|
+
* Description: 理想车险事件通知
|
|
2549
|
+
* Summary: 理想车险事件通知
|
|
2550
|
+
*/
|
|
2551
|
+
notifyAutoinsuranceEventEx(request: NotifyAutoinsuranceEventRequest, headers: {
|
|
2552
|
+
[key: string]: string;
|
|
2553
|
+
}, runtime: $Util.RuntimeOptions): Promise<NotifyAutoinsuranceEventResponse>;
|
|
2554
|
+
/**
|
|
2555
|
+
* @remarks
|
|
2556
|
+
* Description: 保险营销文件上传,营销链路中涉及到文件上传,均可使用本接口,根据上传的数据类型做区分
|
|
2557
|
+
* Summary: 保险营销文件上传,营销链路中涉及到文件上传,均可使用本接口,根据上传的数据类型做区分
|
|
2558
|
+
*/
|
|
2559
|
+
uploadMktFile(request: UploadMktFileRequest): Promise<UploadMktFileResponse>;
|
|
2560
|
+
/**
|
|
2561
|
+
* @remarks
|
|
2562
|
+
* Description: 保险营销文件上传,营销链路中涉及到文件上传,均可使用本接口,根据上传的数据类型做区分
|
|
2563
|
+
* Summary: 保险营销文件上传,营销链路中涉及到文件上传,均可使用本接口,根据上传的数据类型做区分
|
|
2564
|
+
*/
|
|
2565
|
+
uploadMktFileEx(request: UploadMktFileRequest, headers: {
|
|
2566
|
+
[key: string]: string;
|
|
2567
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadMktFileResponse>;
|
|
2568
|
+
/**
|
|
2569
|
+
* @remarks
|
|
2570
|
+
* Description: 保险营销效果回传
|
|
2571
|
+
* Summary: 保险营销效果回传
|
|
2572
|
+
*/
|
|
2573
|
+
callbackMktEffect(request: CallbackMktEffectRequest): Promise<CallbackMktEffectResponse>;
|
|
2574
|
+
/**
|
|
2575
|
+
* @remarks
|
|
2576
|
+
* Description: 保险营销效果回传
|
|
2577
|
+
* Summary: 保险营销效果回传
|
|
2578
|
+
*/
|
|
2579
|
+
callbackMktEffectEx(request: CallbackMktEffectRequest, headers: {
|
|
2580
|
+
[key: string]: string;
|
|
2581
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackMktEffectResponse>;
|
|
2582
|
+
/**
|
|
2583
|
+
* @remarks
|
|
2584
|
+
* Description: 商机数量推送接口
|
|
2585
|
+
* Summary: 商机数量接收
|
|
2586
|
+
*/
|
|
2587
|
+
receiveBusinessOpportunities(request: ReceiveBusinessOpportunitiesRequest): Promise<ReceiveBusinessOpportunitiesResponse>;
|
|
2588
|
+
/**
|
|
2589
|
+
* @remarks
|
|
2590
|
+
* Description: 商机数量推送接口
|
|
2591
|
+
* Summary: 商机数量接收
|
|
2592
|
+
*/
|
|
2593
|
+
receiveBusinessOpportunitiesEx(request: ReceiveBusinessOpportunitiesRequest, headers: {
|
|
2594
|
+
[key: string]: string;
|
|
2595
|
+
}, runtime: $Util.RuntimeOptions): Promise<ReceiveBusinessOpportunitiesResponse>;
|
|
2596
|
+
/**
|
|
2597
|
+
* @remarks
|
|
2598
|
+
* Description: 创建HTTP PUT提交的文件上传
|
|
2599
|
+
* Summary: 文件上传创建
|
|
2600
|
+
*/
|
|
2601
|
+
createAntcloudGatewayxFileUpload(request: CreateAntcloudGatewayxFileUploadRequest): Promise<CreateAntcloudGatewayxFileUploadResponse>;
|
|
2602
|
+
/**
|
|
2603
|
+
* @remarks
|
|
2604
|
+
* Description: 创建HTTP PUT提交的文件上传
|
|
2605
|
+
* Summary: 文件上传创建
|
|
2606
|
+
*/
|
|
2607
|
+
createAntcloudGatewayxFileUploadEx(request: CreateAntcloudGatewayxFileUploadRequest, headers: {
|
|
2608
|
+
[key: string]: string;
|
|
2609
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateAntcloudGatewayxFileUploadResponse>;
|
|
1656
2610
|
}
|