@antchain/ato 1.9.73 → 1.10.24
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 +535 -62
- package/dist/client.js +856 -136
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1283 -213
package/dist/client.d.ts
CHANGED
|
@@ -34,6 +34,19 @@ export declare class Config extends $tea.Model {
|
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
+
export declare class FileInfo extends $tea.Model {
|
|
38
|
+
fileName: string;
|
|
39
|
+
fileKey: string;
|
|
40
|
+
static names(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
static types(): {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
46
|
+
constructor(map?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
});
|
|
49
|
+
}
|
|
37
50
|
export declare class SubRentRiskItem extends $tea.Model {
|
|
38
51
|
riskName: string;
|
|
39
52
|
riskRank: string;
|
|
@@ -77,9 +90,12 @@ export declare class StaticDataModuleDetail extends $tea.Model {
|
|
|
77
90
|
[key: string]: any;
|
|
78
91
|
});
|
|
79
92
|
}
|
|
80
|
-
export declare class
|
|
81
|
-
|
|
82
|
-
|
|
93
|
+
export declare class SiteInfo extends $tea.Model {
|
|
94
|
+
tinyAppId?: string;
|
|
95
|
+
siteName?: string;
|
|
96
|
+
screenshotFile?: FileInfo;
|
|
97
|
+
siteUrl?: string;
|
|
98
|
+
siteType?: string;
|
|
83
99
|
static names(): {
|
|
84
100
|
[key: string]: string;
|
|
85
101
|
};
|
|
@@ -159,6 +175,18 @@ export declare class UserPerformanceInfo extends $tea.Model {
|
|
|
159
175
|
[key: string]: any;
|
|
160
176
|
});
|
|
161
177
|
}
|
|
178
|
+
export declare class MarketingScoreQueryInfo extends $tea.Model {
|
|
179
|
+
phoneNum?: string;
|
|
180
|
+
static names(): {
|
|
181
|
+
[key: string]: string;
|
|
182
|
+
};
|
|
183
|
+
static types(): {
|
|
184
|
+
[key: string]: any;
|
|
185
|
+
};
|
|
186
|
+
constructor(map?: {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
});
|
|
189
|
+
}
|
|
162
190
|
export declare class InsureProductInfo extends $tea.Model {
|
|
163
191
|
productId: string;
|
|
164
192
|
productImeiId: string;
|
|
@@ -188,6 +216,26 @@ export declare class RiskStrategy extends $tea.Model {
|
|
|
188
216
|
[key: string]: any;
|
|
189
217
|
});
|
|
190
218
|
}
|
|
219
|
+
export declare class TemplateComponent extends $tea.Model {
|
|
220
|
+
templateCode: string;
|
|
221
|
+
id: string;
|
|
222
|
+
name: string;
|
|
223
|
+
uk?: string;
|
|
224
|
+
placeholder?: string;
|
|
225
|
+
enableEdit?: string;
|
|
226
|
+
required?: string;
|
|
227
|
+
type?: string;
|
|
228
|
+
value: string;
|
|
229
|
+
static names(): {
|
|
230
|
+
[key: string]: string;
|
|
231
|
+
};
|
|
232
|
+
static types(): {
|
|
233
|
+
[key: string]: any;
|
|
234
|
+
};
|
|
235
|
+
constructor(map?: {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
});
|
|
238
|
+
}
|
|
191
239
|
export declare class InsureOrderInfo extends $tea.Model {
|
|
192
240
|
orderId?: string;
|
|
193
241
|
insureId?: string;
|
|
@@ -197,6 +245,21 @@ export declare class InsureOrderInfo extends $tea.Model {
|
|
|
197
245
|
insureAmount?: number;
|
|
198
246
|
insurePremium?: number;
|
|
199
247
|
status?: string;
|
|
248
|
+
policyUrl?: string;
|
|
249
|
+
validateCode?: string;
|
|
250
|
+
static names(): {
|
|
251
|
+
[key: string]: string;
|
|
252
|
+
};
|
|
253
|
+
static types(): {
|
|
254
|
+
[key: string]: any;
|
|
255
|
+
};
|
|
256
|
+
constructor(map?: {
|
|
257
|
+
[key: string]: any;
|
|
258
|
+
});
|
|
259
|
+
}
|
|
260
|
+
export declare class MarketingScoreInfo extends $tea.Model {
|
|
261
|
+
phoneNum?: string;
|
|
262
|
+
score?: string;
|
|
200
263
|
static names(): {
|
|
201
264
|
[key: string]: string;
|
|
202
265
|
};
|
|
@@ -463,6 +526,34 @@ export declare class DeliveryDetail extends $tea.Model {
|
|
|
463
526
|
[key: string]: any;
|
|
464
527
|
});
|
|
465
528
|
}
|
|
529
|
+
export declare class CustomerServiceInfo extends $tea.Model {
|
|
530
|
+
merchantId?: string;
|
|
531
|
+
merchantName?: string;
|
|
532
|
+
processType?: string;
|
|
533
|
+
static names(): {
|
|
534
|
+
[key: string]: string;
|
|
535
|
+
};
|
|
536
|
+
static types(): {
|
|
537
|
+
[key: string]: any;
|
|
538
|
+
};
|
|
539
|
+
constructor(map?: {
|
|
540
|
+
[key: string]: any;
|
|
541
|
+
});
|
|
542
|
+
}
|
|
543
|
+
export declare class OperationDivideTransInModel extends $tea.Model {
|
|
544
|
+
transInUserId: string;
|
|
545
|
+
divideAmount: number;
|
|
546
|
+
desc?: string;
|
|
547
|
+
static names(): {
|
|
548
|
+
[key: string]: string;
|
|
549
|
+
};
|
|
550
|
+
static types(): {
|
|
551
|
+
[key: string]: any;
|
|
552
|
+
};
|
|
553
|
+
constructor(map?: {
|
|
554
|
+
[key: string]: any;
|
|
555
|
+
});
|
|
556
|
+
}
|
|
466
557
|
export declare class AgreementPage extends $tea.Model {
|
|
467
558
|
agreementId: string;
|
|
468
559
|
merchantName: string;
|
|
@@ -588,6 +679,7 @@ export declare class ApplicationInfo extends $tea.Model {
|
|
|
588
679
|
merchantName: string;
|
|
589
680
|
merchantServiceName: string;
|
|
590
681
|
merchantServiceDesc: string;
|
|
682
|
+
siteInfo?: SiteInfo[];
|
|
591
683
|
static names(): {
|
|
592
684
|
[key: string]: string;
|
|
593
685
|
};
|
|
@@ -1373,6 +1465,37 @@ export declare class SyncFundFinanceprecheckresultResponse extends $tea.Model {
|
|
|
1373
1465
|
[key: string]: any;
|
|
1374
1466
|
});
|
|
1375
1467
|
}
|
|
1468
|
+
export declare class QueryFundCompensateaccountRequest extends $tea.Model {
|
|
1469
|
+
authToken?: string;
|
|
1470
|
+
productInstanceId?: string;
|
|
1471
|
+
fundId: string;
|
|
1472
|
+
merchantId: string;
|
|
1473
|
+
merchantTenantId: string;
|
|
1474
|
+
static names(): {
|
|
1475
|
+
[key: string]: string;
|
|
1476
|
+
};
|
|
1477
|
+
static types(): {
|
|
1478
|
+
[key: string]: any;
|
|
1479
|
+
};
|
|
1480
|
+
constructor(map?: {
|
|
1481
|
+
[key: string]: any;
|
|
1482
|
+
});
|
|
1483
|
+
}
|
|
1484
|
+
export declare class QueryFundCompensateaccountResponse extends $tea.Model {
|
|
1485
|
+
reqMsgId?: string;
|
|
1486
|
+
resultCode?: string;
|
|
1487
|
+
resultMsg?: string;
|
|
1488
|
+
availableAmount?: number;
|
|
1489
|
+
static names(): {
|
|
1490
|
+
[key: string]: string;
|
|
1491
|
+
};
|
|
1492
|
+
static types(): {
|
|
1493
|
+
[key: string]: any;
|
|
1494
|
+
};
|
|
1495
|
+
constructor(map?: {
|
|
1496
|
+
[key: string]: any;
|
|
1497
|
+
});
|
|
1498
|
+
}
|
|
1376
1499
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1377
1500
|
authToken?: string;
|
|
1378
1501
|
productInstanceId?: string;
|
|
@@ -2340,6 +2463,7 @@ export declare class QueryInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
2340
2463
|
expandMode?: string;
|
|
2341
2464
|
expandStatus?: string;
|
|
2342
2465
|
expandFailReason?: string;
|
|
2466
|
+
showCustomerComplaintRegistPortal?: boolean;
|
|
2343
2467
|
static names(): {
|
|
2344
2468
|
[key: string]: string;
|
|
2345
2469
|
};
|
|
@@ -2482,8 +2606,8 @@ export declare class UpdateInnerTemplateRequest extends $tea.Model {
|
|
|
2482
2606
|
authToken?: string;
|
|
2483
2607
|
productInstanceId?: string;
|
|
2484
2608
|
tenantId: string;
|
|
2485
|
-
templateVersionId: string;
|
|
2486
2609
|
templateName: string;
|
|
2610
|
+
templateCode: string;
|
|
2487
2611
|
static names(): {
|
|
2488
2612
|
[key: string]: string;
|
|
2489
2613
|
};
|
|
@@ -3074,48 +3198,6 @@ export declare class PagequeryInnerProductResponse extends $tea.Model {
|
|
|
3074
3198
|
[key: string]: any;
|
|
3075
3199
|
});
|
|
3076
3200
|
}
|
|
3077
|
-
export declare class DetailInnerProductRequest extends $tea.Model {
|
|
3078
|
-
authToken?: string;
|
|
3079
|
-
productInstanceId?: string;
|
|
3080
|
-
tenantId: string;
|
|
3081
|
-
merchantId: string;
|
|
3082
|
-
productId: string;
|
|
3083
|
-
productVersion: string;
|
|
3084
|
-
static names(): {
|
|
3085
|
-
[key: string]: string;
|
|
3086
|
-
};
|
|
3087
|
-
static types(): {
|
|
3088
|
-
[key: string]: any;
|
|
3089
|
-
};
|
|
3090
|
-
constructor(map?: {
|
|
3091
|
-
[key: string]: any;
|
|
3092
|
-
});
|
|
3093
|
-
}
|
|
3094
|
-
export declare class DetailInnerProductResponse extends $tea.Model {
|
|
3095
|
-
reqMsgId?: string;
|
|
3096
|
-
resultCode?: string;
|
|
3097
|
-
resultMsg?: string;
|
|
3098
|
-
merchantId?: string;
|
|
3099
|
-
productName?: string;
|
|
3100
|
-
productId?: string;
|
|
3101
|
-
productModel?: string;
|
|
3102
|
-
productVersion?: string;
|
|
3103
|
-
productPrice?: string;
|
|
3104
|
-
mainClass?: string;
|
|
3105
|
-
subClass?: string;
|
|
3106
|
-
productBrand?: string;
|
|
3107
|
-
productUrl?: string;
|
|
3108
|
-
productDetailInfo?: string;
|
|
3109
|
-
static names(): {
|
|
3110
|
-
[key: string]: string;
|
|
3111
|
-
};
|
|
3112
|
-
static types(): {
|
|
3113
|
-
[key: string]: any;
|
|
3114
|
-
};
|
|
3115
|
-
constructor(map?: {
|
|
3116
|
-
[key: string]: any;
|
|
3117
|
-
});
|
|
3118
|
-
}
|
|
3119
3201
|
export declare class GetInnerHomepagenoticeRequest extends $tea.Model {
|
|
3120
3202
|
authToken?: string;
|
|
3121
3203
|
productInstanceId?: string;
|
|
@@ -3153,6 +3235,7 @@ export declare class PagequeryInnerNoticeRequest extends $tea.Model {
|
|
|
3153
3235
|
productInstanceId?: string;
|
|
3154
3236
|
tenantId: string;
|
|
3155
3237
|
pageInfo: PageQuery;
|
|
3238
|
+
unread?: boolean;
|
|
3156
3239
|
static names(): {
|
|
3157
3240
|
[key: string]: string;
|
|
3158
3241
|
};
|
|
@@ -3285,6 +3368,257 @@ export declare class DetailInnerOrderResponse extends $tea.Model {
|
|
|
3285
3368
|
[key: string]: any;
|
|
3286
3369
|
});
|
|
3287
3370
|
}
|
|
3371
|
+
export declare class RenderInnerTemplateinstanceRequest extends $tea.Model {
|
|
3372
|
+
authToken?: string;
|
|
3373
|
+
productInstanceId?: string;
|
|
3374
|
+
tenantId: string;
|
|
3375
|
+
templateCodes: string[];
|
|
3376
|
+
idempotent: string;
|
|
3377
|
+
bizBusinessId: string;
|
|
3378
|
+
componentInstDtos: TemplateComponent[];
|
|
3379
|
+
static names(): {
|
|
3380
|
+
[key: string]: string;
|
|
3381
|
+
};
|
|
3382
|
+
static types(): {
|
|
3383
|
+
[key: string]: any;
|
|
3384
|
+
};
|
|
3385
|
+
constructor(map?: {
|
|
3386
|
+
[key: string]: any;
|
|
3387
|
+
});
|
|
3388
|
+
}
|
|
3389
|
+
export declare class RenderInnerTemplateinstanceResponse extends $tea.Model {
|
|
3390
|
+
reqMsgId?: string;
|
|
3391
|
+
resultCode?: string;
|
|
3392
|
+
resultMsg?: string;
|
|
3393
|
+
businessId?: string;
|
|
3394
|
+
static names(): {
|
|
3395
|
+
[key: string]: string;
|
|
3396
|
+
};
|
|
3397
|
+
static types(): {
|
|
3398
|
+
[key: string]: any;
|
|
3399
|
+
};
|
|
3400
|
+
constructor(map?: {
|
|
3401
|
+
[key: string]: any;
|
|
3402
|
+
});
|
|
3403
|
+
}
|
|
3404
|
+
export declare class BatchqueryInnerMarketingscoreRequest extends $tea.Model {
|
|
3405
|
+
authToken?: string;
|
|
3406
|
+
productInstanceId?: string;
|
|
3407
|
+
marketingScoreQueryInfos: MarketingScoreQueryInfo[];
|
|
3408
|
+
static names(): {
|
|
3409
|
+
[key: string]: string;
|
|
3410
|
+
};
|
|
3411
|
+
static types(): {
|
|
3412
|
+
[key: string]: any;
|
|
3413
|
+
};
|
|
3414
|
+
constructor(map?: {
|
|
3415
|
+
[key: string]: any;
|
|
3416
|
+
});
|
|
3417
|
+
}
|
|
3418
|
+
export declare class BatchqueryInnerMarketingscoreResponse extends $tea.Model {
|
|
3419
|
+
reqMsgId?: string;
|
|
3420
|
+
resultCode?: string;
|
|
3421
|
+
resultMsg?: string;
|
|
3422
|
+
marketingScoreInfo?: MarketingScoreInfo[];
|
|
3423
|
+
static names(): {
|
|
3424
|
+
[key: string]: string;
|
|
3425
|
+
};
|
|
3426
|
+
static types(): {
|
|
3427
|
+
[key: string]: any;
|
|
3428
|
+
};
|
|
3429
|
+
constructor(map?: {
|
|
3430
|
+
[key: string]: any;
|
|
3431
|
+
});
|
|
3432
|
+
}
|
|
3433
|
+
export declare class CreateInnerCustomerserviceRequest extends $tea.Model {
|
|
3434
|
+
authToken?: string;
|
|
3435
|
+
productInstanceId?: string;
|
|
3436
|
+
tenantId: string;
|
|
3437
|
+
merchantId?: string;
|
|
3438
|
+
merchantName?: string;
|
|
3439
|
+
processType: string;
|
|
3440
|
+
serviceProviderName?: string;
|
|
3441
|
+
alipayBindMobile: string;
|
|
3442
|
+
alipayLogonId: string;
|
|
3443
|
+
customerServicePhone: string;
|
|
3444
|
+
customerServiceName: string;
|
|
3445
|
+
onlineSupportSiteUrl: string;
|
|
3446
|
+
customerComplaintIssues: string;
|
|
3447
|
+
expandMode: string;
|
|
3448
|
+
static names(): {
|
|
3449
|
+
[key: string]: string;
|
|
3450
|
+
};
|
|
3451
|
+
static types(): {
|
|
3452
|
+
[key: string]: any;
|
|
3453
|
+
};
|
|
3454
|
+
constructor(map?: {
|
|
3455
|
+
[key: string]: any;
|
|
3456
|
+
});
|
|
3457
|
+
}
|
|
3458
|
+
export declare class CreateInnerCustomerserviceResponse extends $tea.Model {
|
|
3459
|
+
reqMsgId?: string;
|
|
3460
|
+
resultCode?: string;
|
|
3461
|
+
resultMsg?: string;
|
|
3462
|
+
static names(): {
|
|
3463
|
+
[key: string]: string;
|
|
3464
|
+
};
|
|
3465
|
+
static types(): {
|
|
3466
|
+
[key: string]: any;
|
|
3467
|
+
};
|
|
3468
|
+
constructor(map?: {
|
|
3469
|
+
[key: string]: any;
|
|
3470
|
+
});
|
|
3471
|
+
}
|
|
3472
|
+
export declare class UpdateInnerCustomerserviceRequest extends $tea.Model {
|
|
3473
|
+
authToken?: string;
|
|
3474
|
+
productInstanceId?: string;
|
|
3475
|
+
tenantId: string;
|
|
3476
|
+
merchantId?: string;
|
|
3477
|
+
merchantName: string;
|
|
3478
|
+
processType: string;
|
|
3479
|
+
serviceProviderName?: string;
|
|
3480
|
+
alipayBindMobile: string;
|
|
3481
|
+
alipayLogonId: string;
|
|
3482
|
+
customerServicePhone: string;
|
|
3483
|
+
customerServiceName: string;
|
|
3484
|
+
onlineSupportSiteUrl: string;
|
|
3485
|
+
customerComplaintIssues: string;
|
|
3486
|
+
expandMode: string;
|
|
3487
|
+
static names(): {
|
|
3488
|
+
[key: string]: string;
|
|
3489
|
+
};
|
|
3490
|
+
static types(): {
|
|
3491
|
+
[key: string]: any;
|
|
3492
|
+
};
|
|
3493
|
+
constructor(map?: {
|
|
3494
|
+
[key: string]: any;
|
|
3495
|
+
});
|
|
3496
|
+
}
|
|
3497
|
+
export declare class UpdateInnerCustomerserviceResponse extends $tea.Model {
|
|
3498
|
+
reqMsgId?: string;
|
|
3499
|
+
resultCode?: string;
|
|
3500
|
+
resultMsg?: string;
|
|
3501
|
+
static names(): {
|
|
3502
|
+
[key: string]: string;
|
|
3503
|
+
};
|
|
3504
|
+
static types(): {
|
|
3505
|
+
[key: string]: any;
|
|
3506
|
+
};
|
|
3507
|
+
constructor(map?: {
|
|
3508
|
+
[key: string]: any;
|
|
3509
|
+
});
|
|
3510
|
+
}
|
|
3511
|
+
export declare class PagequeryInnerCustomerserviceRequest extends $tea.Model {
|
|
3512
|
+
authToken?: string;
|
|
3513
|
+
productInstanceId?: string;
|
|
3514
|
+
tenantId: string;
|
|
3515
|
+
pageInfo: PageQuery;
|
|
3516
|
+
processType?: string;
|
|
3517
|
+
merchantId?: string;
|
|
3518
|
+
merchantName?: string;
|
|
3519
|
+
static names(): {
|
|
3520
|
+
[key: string]: string;
|
|
3521
|
+
};
|
|
3522
|
+
static types(): {
|
|
3523
|
+
[key: string]: any;
|
|
3524
|
+
};
|
|
3525
|
+
constructor(map?: {
|
|
3526
|
+
[key: string]: any;
|
|
3527
|
+
});
|
|
3528
|
+
}
|
|
3529
|
+
export declare class PagequeryInnerCustomerserviceResponse extends $tea.Model {
|
|
3530
|
+
reqMsgId?: string;
|
|
3531
|
+
resultCode?: string;
|
|
3532
|
+
resultMsg?: string;
|
|
3533
|
+
total?: number;
|
|
3534
|
+
customerServiceInfoList?: CustomerServiceInfo[];
|
|
3535
|
+
static names(): {
|
|
3536
|
+
[key: string]: string;
|
|
3537
|
+
};
|
|
3538
|
+
static types(): {
|
|
3539
|
+
[key: string]: any;
|
|
3540
|
+
};
|
|
3541
|
+
constructor(map?: {
|
|
3542
|
+
[key: string]: any;
|
|
3543
|
+
});
|
|
3544
|
+
}
|
|
3545
|
+
export declare class DetailInnerCustomerserviceRequest extends $tea.Model {
|
|
3546
|
+
authToken?: string;
|
|
3547
|
+
productInstanceId?: string;
|
|
3548
|
+
tenantId: string;
|
|
3549
|
+
merchantId?: string;
|
|
3550
|
+
expandMode: string;
|
|
3551
|
+
static names(): {
|
|
3552
|
+
[key: string]: string;
|
|
3553
|
+
};
|
|
3554
|
+
static types(): {
|
|
3555
|
+
[key: string]: any;
|
|
3556
|
+
};
|
|
3557
|
+
constructor(map?: {
|
|
3558
|
+
[key: string]: any;
|
|
3559
|
+
});
|
|
3560
|
+
}
|
|
3561
|
+
export declare class DetailInnerCustomerserviceResponse extends $tea.Model {
|
|
3562
|
+
reqMsgId?: string;
|
|
3563
|
+
resultCode?: string;
|
|
3564
|
+
resultMsg?: string;
|
|
3565
|
+
merchantId?: string;
|
|
3566
|
+
merchantName?: string;
|
|
3567
|
+
processType?: string;
|
|
3568
|
+
serviceProviderName?: string;
|
|
3569
|
+
alipayBindMobile?: string;
|
|
3570
|
+
alipayLogonId?: string;
|
|
3571
|
+
customerServicePhone?: string;
|
|
3572
|
+
customerServiceName?: string;
|
|
3573
|
+
onlineSupportSiteUrl?: string;
|
|
3574
|
+
customerComplaintIssues?: string;
|
|
3575
|
+
static names(): {
|
|
3576
|
+
[key: string]: string;
|
|
3577
|
+
};
|
|
3578
|
+
static types(): {
|
|
3579
|
+
[key: string]: any;
|
|
3580
|
+
};
|
|
3581
|
+
constructor(map?: {
|
|
3582
|
+
[key: string]: any;
|
|
3583
|
+
});
|
|
3584
|
+
}
|
|
3585
|
+
export declare class GetInnerCustomerservicetemplateRequest extends $tea.Model {
|
|
3586
|
+
authToken?: string;
|
|
3587
|
+
productInstanceId?: string;
|
|
3588
|
+
tenantId: string;
|
|
3589
|
+
expandMode: string;
|
|
3590
|
+
processType: string;
|
|
3591
|
+
static names(): {
|
|
3592
|
+
[key: string]: string;
|
|
3593
|
+
};
|
|
3594
|
+
static types(): {
|
|
3595
|
+
[key: string]: any;
|
|
3596
|
+
};
|
|
3597
|
+
constructor(map?: {
|
|
3598
|
+
[key: string]: any;
|
|
3599
|
+
});
|
|
3600
|
+
}
|
|
3601
|
+
export declare class GetInnerCustomerservicetemplateResponse extends $tea.Model {
|
|
3602
|
+
reqMsgId?: string;
|
|
3603
|
+
resultCode?: string;
|
|
3604
|
+
resultMsg?: string;
|
|
3605
|
+
serviceProviderName?: string;
|
|
3606
|
+
alipayBindMobile?: string;
|
|
3607
|
+
alipayLogonId?: string;
|
|
3608
|
+
customerServicePhone?: string;
|
|
3609
|
+
customerServiceName?: string;
|
|
3610
|
+
onlineSupportSiteUrl?: string;
|
|
3611
|
+
customerComplaintIssues?: string;
|
|
3612
|
+
static names(): {
|
|
3613
|
+
[key: string]: string;
|
|
3614
|
+
};
|
|
3615
|
+
static types(): {
|
|
3616
|
+
[key: string]: any;
|
|
3617
|
+
};
|
|
3618
|
+
constructor(map?: {
|
|
3619
|
+
[key: string]: any;
|
|
3620
|
+
});
|
|
3621
|
+
}
|
|
3288
3622
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
3289
3623
|
authToken?: string;
|
|
3290
3624
|
productInstanceId?: string;
|
|
@@ -3351,6 +3685,8 @@ export declare class QueryInsureResponse extends $tea.Model {
|
|
|
3351
3685
|
insureEndTime?: string;
|
|
3352
3686
|
insureAmount?: string;
|
|
3353
3687
|
insurePremium?: string;
|
|
3688
|
+
policyUrl?: string;
|
|
3689
|
+
validateCode?: string;
|
|
3354
3690
|
static names(): {
|
|
3355
3691
|
[key: string]: string;
|
|
3356
3692
|
};
|
|
@@ -4600,7 +4936,12 @@ export declare class CreateWithholdActivepayRequest extends $tea.Model {
|
|
|
4600
4936
|
authToken?: string;
|
|
4601
4937
|
productInstanceId?: string;
|
|
4602
4938
|
orderId: string;
|
|
4603
|
-
periodNum
|
|
4939
|
+
periodNum?: number;
|
|
4940
|
+
payType?: string;
|
|
4941
|
+
payChannel?: string;
|
|
4942
|
+
payAmount?: number;
|
|
4943
|
+
operationDivideFlag?: string;
|
|
4944
|
+
operationDivideTransInList?: OperationDivideTransInModel[];
|
|
4604
4945
|
static names(): {
|
|
4605
4946
|
[key: string]: string;
|
|
4606
4947
|
};
|
|
@@ -4616,6 +4957,7 @@ export declare class CreateWithholdActivepayResponse extends $tea.Model {
|
|
|
4616
4957
|
resultCode?: string;
|
|
4617
4958
|
resultMsg?: string;
|
|
4618
4959
|
tradeNo?: string;
|
|
4960
|
+
orderStr?: string;
|
|
4619
4961
|
static names(): {
|
|
4620
4962
|
[key: string]: string;
|
|
4621
4963
|
};
|
|
@@ -4630,8 +4972,9 @@ export declare class QueryWithholdActivepayRequest extends $tea.Model {
|
|
|
4630
4972
|
authToken?: string;
|
|
4631
4973
|
productInstanceId?: string;
|
|
4632
4974
|
orderId: string;
|
|
4633
|
-
periodNum
|
|
4975
|
+
periodNum?: number;
|
|
4634
4976
|
tradeNo?: string;
|
|
4977
|
+
payType?: string;
|
|
4635
4978
|
static names(): {
|
|
4636
4979
|
[key: string]: string;
|
|
4637
4980
|
};
|
|
@@ -4693,10 +5036,11 @@ export declare class CreateWithholdRefundRequest extends $tea.Model {
|
|
|
4693
5036
|
authToken?: string;
|
|
4694
5037
|
productInstanceId?: string;
|
|
4695
5038
|
orderId: string;
|
|
4696
|
-
periodNum
|
|
5039
|
+
periodNum?: number;
|
|
4697
5040
|
refundRequestNo: string;
|
|
4698
5041
|
refundMoney: number;
|
|
4699
5042
|
refundReason?: string;
|
|
5043
|
+
payType?: string;
|
|
4700
5044
|
static names(): {
|
|
4701
5045
|
[key: string]: string;
|
|
4702
5046
|
};
|
|
@@ -4728,8 +5072,9 @@ export declare class QueryWithholdRefundRequest extends $tea.Model {
|
|
|
4728
5072
|
authToken?: string;
|
|
4729
5073
|
productInstanceId?: string;
|
|
4730
5074
|
orderId: string;
|
|
4731
|
-
periodNum
|
|
5075
|
+
periodNum?: number;
|
|
4732
5076
|
refundRequestNo: string;
|
|
5077
|
+
payType?: string;
|
|
4733
5078
|
static names(): {
|
|
4734
5079
|
[key: string]: string;
|
|
4735
5080
|
};
|
|
@@ -4761,6 +5106,38 @@ export declare class QueryWithholdRefundResponse extends $tea.Model {
|
|
|
4761
5106
|
[key: string]: any;
|
|
4762
5107
|
});
|
|
4763
5108
|
}
|
|
5109
|
+
export declare class QueryWithholdCompensateaccountRequest extends $tea.Model {
|
|
5110
|
+
authToken?: string;
|
|
5111
|
+
productInstanceId?: string;
|
|
5112
|
+
merchantId: string;
|
|
5113
|
+
fundId: string;
|
|
5114
|
+
fundTenantId: string;
|
|
5115
|
+
static names(): {
|
|
5116
|
+
[key: string]: string;
|
|
5117
|
+
};
|
|
5118
|
+
static types(): {
|
|
5119
|
+
[key: string]: any;
|
|
5120
|
+
};
|
|
5121
|
+
constructor(map?: {
|
|
5122
|
+
[key: string]: any;
|
|
5123
|
+
});
|
|
5124
|
+
}
|
|
5125
|
+
export declare class QueryWithholdCompensateaccountResponse extends $tea.Model {
|
|
5126
|
+
reqMsgId?: string;
|
|
5127
|
+
resultCode?: string;
|
|
5128
|
+
resultMsg?: string;
|
|
5129
|
+
cardNo?: string;
|
|
5130
|
+
availableAmount?: number;
|
|
5131
|
+
static names(): {
|
|
5132
|
+
[key: string]: string;
|
|
5133
|
+
};
|
|
5134
|
+
static types(): {
|
|
5135
|
+
[key: string]: any;
|
|
5136
|
+
};
|
|
5137
|
+
constructor(map?: {
|
|
5138
|
+
[key: string]: any;
|
|
5139
|
+
});
|
|
5140
|
+
}
|
|
4764
5141
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
4765
5142
|
authToken?: string;
|
|
4766
5143
|
apiCode: string;
|
|
@@ -5091,6 +5468,18 @@ export default class Client {
|
|
|
5091
5468
|
syncFundFinanceprecheckresultEx(request: SyncFundFinanceprecheckresultRequest, headers: {
|
|
5092
5469
|
[key: string]: string;
|
|
5093
5470
|
}, runtime: $Util.RuntimeOptions): Promise<SyncFundFinanceprecheckresultResponse>;
|
|
5471
|
+
/**
|
|
5472
|
+
* Description: 资方查询代偿户余额
|
|
5473
|
+
* Summary: 代偿户查询
|
|
5474
|
+
*/
|
|
5475
|
+
queryFundCompensateaccount(request: QueryFundCompensateaccountRequest): Promise<QueryFundCompensateaccountResponse>;
|
|
5476
|
+
/**
|
|
5477
|
+
* Description: 资方查询代偿户余额
|
|
5478
|
+
* Summary: 代偿户查询
|
|
5479
|
+
*/
|
|
5480
|
+
queryFundCompensateaccountEx(request: QueryFundCompensateaccountRequest, headers: {
|
|
5481
|
+
[key: string]: string;
|
|
5482
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryFundCompensateaccountResponse>;
|
|
5094
5483
|
/**
|
|
5095
5484
|
* Description: 内部调用,商品信息获取
|
|
5096
5485
|
* Summary: 商品信息获取
|
|
@@ -5729,18 +6118,6 @@ export default class Client {
|
|
|
5729
6118
|
pagequeryInnerProductEx(request: PagequeryInnerProductRequest, headers: {
|
|
5730
6119
|
[key: string]: string;
|
|
5731
6120
|
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerProductResponse>;
|
|
5732
|
-
/**
|
|
5733
|
-
* Description: 商户控制台商品详情
|
|
5734
|
-
* Summary: 商品详情
|
|
5735
|
-
*/
|
|
5736
|
-
detailInnerProduct(request: DetailInnerProductRequest): Promise<DetailInnerProductResponse>;
|
|
5737
|
-
/**
|
|
5738
|
-
* Description: 商户控制台商品详情
|
|
5739
|
-
* Summary: 商品详情
|
|
5740
|
-
*/
|
|
5741
|
-
detailInnerProductEx(request: DetailInnerProductRequest, headers: {
|
|
5742
|
-
[key: string]: string;
|
|
5743
|
-
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerProductResponse>;
|
|
5744
6121
|
/**
|
|
5745
6122
|
* Description: 商户控制台首页通知栏
|
|
5746
6123
|
* Summary: 首页通知栏
|
|
@@ -5801,6 +6178,90 @@ export default class Client {
|
|
|
5801
6178
|
detailInnerOrderEx(request: DetailInnerOrderRequest, headers: {
|
|
5802
6179
|
[key: string]: string;
|
|
5803
6180
|
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerOrderResponse>;
|
|
6181
|
+
/**
|
|
6182
|
+
* Description: 合同模板实例化渲染,文本域赋值
|
|
6183
|
+
* Summary: 合同模板实例化渲染
|
|
6184
|
+
*/
|
|
6185
|
+
renderInnerTemplateinstance(request: RenderInnerTemplateinstanceRequest): Promise<RenderInnerTemplateinstanceResponse>;
|
|
6186
|
+
/**
|
|
6187
|
+
* Description: 合同模板实例化渲染,文本域赋值
|
|
6188
|
+
* Summary: 合同模板实例化渲染
|
|
6189
|
+
*/
|
|
6190
|
+
renderInnerTemplateinstanceEx(request: RenderInnerTemplateinstanceRequest, headers: {
|
|
6191
|
+
[key: string]: string;
|
|
6192
|
+
}, runtime: $Util.RuntimeOptions): Promise<RenderInnerTemplateinstanceResponse>;
|
|
6193
|
+
/**
|
|
6194
|
+
* Description: 批量查询营销分
|
|
6195
|
+
* Summary: 批量查询营销分
|
|
6196
|
+
*/
|
|
6197
|
+
batchqueryInnerMarketingscore(request: BatchqueryInnerMarketingscoreRequest): Promise<BatchqueryInnerMarketingscoreResponse>;
|
|
6198
|
+
/**
|
|
6199
|
+
* Description: 批量查询营销分
|
|
6200
|
+
* Summary: 批量查询营销分
|
|
6201
|
+
*/
|
|
6202
|
+
batchqueryInnerMarketingscoreEx(request: BatchqueryInnerMarketingscoreRequest, headers: {
|
|
6203
|
+
[key: string]: string;
|
|
6204
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryInnerMarketingscoreResponse>;
|
|
6205
|
+
/**
|
|
6206
|
+
* Description: 创建客服信息
|
|
6207
|
+
* Summary: 创建客服信息
|
|
6208
|
+
*/
|
|
6209
|
+
createInnerCustomerservice(request: CreateInnerCustomerserviceRequest): Promise<CreateInnerCustomerserviceResponse>;
|
|
6210
|
+
/**
|
|
6211
|
+
* Description: 创建客服信息
|
|
6212
|
+
* Summary: 创建客服信息
|
|
6213
|
+
*/
|
|
6214
|
+
createInnerCustomerserviceEx(request: CreateInnerCustomerserviceRequest, headers: {
|
|
6215
|
+
[key: string]: string;
|
|
6216
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerCustomerserviceResponse>;
|
|
6217
|
+
/**
|
|
6218
|
+
* Description: 更新客服信息
|
|
6219
|
+
* Summary: 更新客服信息
|
|
6220
|
+
*/
|
|
6221
|
+
updateInnerCustomerservice(request: UpdateInnerCustomerserviceRequest): Promise<UpdateInnerCustomerserviceResponse>;
|
|
6222
|
+
/**
|
|
6223
|
+
* Description: 更新客服信息
|
|
6224
|
+
* Summary: 更新客服信息
|
|
6225
|
+
*/
|
|
6226
|
+
updateInnerCustomerserviceEx(request: UpdateInnerCustomerserviceRequest, headers: {
|
|
6227
|
+
[key: string]: string;
|
|
6228
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerCustomerserviceResponse>;
|
|
6229
|
+
/**
|
|
6230
|
+
* Description: 分页查询客服信息
|
|
6231
|
+
* Summary: 分页查询客服信息
|
|
6232
|
+
*/
|
|
6233
|
+
pagequeryInnerCustomerservice(request: PagequeryInnerCustomerserviceRequest): Promise<PagequeryInnerCustomerserviceResponse>;
|
|
6234
|
+
/**
|
|
6235
|
+
* Description: 分页查询客服信息
|
|
6236
|
+
* Summary: 分页查询客服信息
|
|
6237
|
+
*/
|
|
6238
|
+
pagequeryInnerCustomerserviceEx(request: PagequeryInnerCustomerserviceRequest, headers: {
|
|
6239
|
+
[key: string]: string;
|
|
6240
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerCustomerserviceResponse>;
|
|
6241
|
+
/**
|
|
6242
|
+
* Description: 获取客服信息详情
|
|
6243
|
+
* Summary: 获取客服信息详情
|
|
6244
|
+
*/
|
|
6245
|
+
detailInnerCustomerservice(request: DetailInnerCustomerserviceRequest): Promise<DetailInnerCustomerserviceResponse>;
|
|
6246
|
+
/**
|
|
6247
|
+
* Description: 获取客服信息详情
|
|
6248
|
+
* Summary: 获取客服信息详情
|
|
6249
|
+
*/
|
|
6250
|
+
detailInnerCustomerserviceEx(request: DetailInnerCustomerserviceRequest, headers: {
|
|
6251
|
+
[key: string]: string;
|
|
6252
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerCustomerserviceResponse>;
|
|
6253
|
+
/**
|
|
6254
|
+
* Description: 获取代理商客服信息模版
|
|
6255
|
+
* Summary: 获取代理商客服信息模版
|
|
6256
|
+
*/
|
|
6257
|
+
getInnerCustomerservicetemplate(request: GetInnerCustomerservicetemplateRequest): Promise<GetInnerCustomerservicetemplateResponse>;
|
|
6258
|
+
/**
|
|
6259
|
+
* Description: 获取代理商客服信息模版
|
|
6260
|
+
* Summary: 获取代理商客服信息模版
|
|
6261
|
+
*/
|
|
6262
|
+
getInnerCustomerservicetemplateEx(request: GetInnerCustomerservicetemplateRequest, headers: {
|
|
6263
|
+
[key: string]: string;
|
|
6264
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerCustomerservicetemplateResponse>;
|
|
5804
6265
|
/**
|
|
5805
6266
|
* Description: 一键投保
|
|
5806
6267
|
* Summary: 投保
|
|
@@ -6333,6 +6794,18 @@ export default class Client {
|
|
|
6333
6794
|
queryWithholdRefundEx(request: QueryWithholdRefundRequest, headers: {
|
|
6334
6795
|
[key: string]: string;
|
|
6335
6796
|
}, runtime: $Util.RuntimeOptions): Promise<QueryWithholdRefundResponse>;
|
|
6797
|
+
/**
|
|
6798
|
+
* Description: 代偿户账户查询
|
|
6799
|
+
* Summary: 代偿户账户查询
|
|
6800
|
+
*/
|
|
6801
|
+
queryWithholdCompensateaccount(request: QueryWithholdCompensateaccountRequest): Promise<QueryWithholdCompensateaccountResponse>;
|
|
6802
|
+
/**
|
|
6803
|
+
* Description: 代偿户账户查询
|
|
6804
|
+
* Summary: 代偿户账户查询
|
|
6805
|
+
*/
|
|
6806
|
+
queryWithholdCompensateaccountEx(request: QueryWithholdCompensateaccountRequest, headers: {
|
|
6807
|
+
[key: string]: string;
|
|
6808
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryWithholdCompensateaccountResponse>;
|
|
6336
6809
|
/**
|
|
6337
6810
|
* Description: 创建HTTP PUT提交的文件上传
|
|
6338
6811
|
* Summary: 文件上传创建
|