@antchain/ato 1.9.30 → 1.9.71
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 +896 -115
- package/dist/client.js +1256 -61
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1785 -37
package/dist/client.d.ts
CHANGED
|
@@ -48,9 +48,25 @@ export declare class SubRentRiskItem extends $tea.Model {
|
|
|
48
48
|
[key: string]: any;
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
|
+
export declare class OrderRepayStrategy extends $tea.Model {
|
|
52
|
+
termIndex?: number;
|
|
53
|
+
rentalMoney?: number;
|
|
54
|
+
payDay?: string;
|
|
55
|
+
static names(): {
|
|
56
|
+
[key: string]: string;
|
|
57
|
+
};
|
|
58
|
+
static types(): {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
};
|
|
61
|
+
constructor(map?: {
|
|
62
|
+
[key: string]: any;
|
|
63
|
+
});
|
|
64
|
+
}
|
|
51
65
|
export declare class StaticDataModuleDetail extends $tea.Model {
|
|
52
66
|
propertyText: string;
|
|
53
67
|
propertyValue: string;
|
|
68
|
+
childrenDetailList?: string;
|
|
69
|
+
hasChildren?: boolean;
|
|
54
70
|
static names(): {
|
|
55
71
|
[key: string]: string;
|
|
56
72
|
};
|
|
@@ -80,6 +96,7 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
80
96
|
riskRank: string;
|
|
81
97
|
riskName: string;
|
|
82
98
|
riskDesc: string;
|
|
99
|
+
flowId: string;
|
|
83
100
|
subRiskResultList?: SubRentRiskItem[];
|
|
84
101
|
errorMsg?: string;
|
|
85
102
|
static names(): {
|
|
@@ -142,6 +159,20 @@ export declare class UserPerformanceInfo extends $tea.Model {
|
|
|
142
159
|
[key: string]: any;
|
|
143
160
|
});
|
|
144
161
|
}
|
|
162
|
+
export declare class InsureProductInfo extends $tea.Model {
|
|
163
|
+
productId: string;
|
|
164
|
+
productImeiId: string;
|
|
165
|
+
purchaseAmount: number;
|
|
166
|
+
static names(): {
|
|
167
|
+
[key: string]: string;
|
|
168
|
+
};
|
|
169
|
+
static types(): {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
};
|
|
172
|
+
constructor(map?: {
|
|
173
|
+
[key: string]: any;
|
|
174
|
+
});
|
|
175
|
+
}
|
|
145
176
|
export declare class RiskStrategy extends $tea.Model {
|
|
146
177
|
id: string;
|
|
147
178
|
name: string;
|
|
@@ -157,6 +188,25 @@ export declare class RiskStrategy extends $tea.Model {
|
|
|
157
188
|
[key: string]: any;
|
|
158
189
|
});
|
|
159
190
|
}
|
|
191
|
+
export declare class InsureOrderInfo extends $tea.Model {
|
|
192
|
+
orderId?: string;
|
|
193
|
+
insureId?: string;
|
|
194
|
+
productName?: string;
|
|
195
|
+
insureStartTime?: string;
|
|
196
|
+
insureEndTime?: string;
|
|
197
|
+
insureAmount?: number;
|
|
198
|
+
insurePremium?: number;
|
|
199
|
+
status?: string;
|
|
200
|
+
static names(): {
|
|
201
|
+
[key: string]: string;
|
|
202
|
+
};
|
|
203
|
+
static types(): {
|
|
204
|
+
[key: string]: any;
|
|
205
|
+
};
|
|
206
|
+
constructor(map?: {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
});
|
|
209
|
+
}
|
|
160
210
|
export declare class StaticData extends $tea.Model {
|
|
161
211
|
moduleName: string;
|
|
162
212
|
moduleDetailList: StaticDataModuleDetail[];
|
|
@@ -222,6 +272,46 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
222
272
|
});
|
|
223
273
|
}
|
|
224
274
|
export declare class OrderInfo extends $tea.Model {
|
|
275
|
+
orderId?: string;
|
|
276
|
+
orderCreateTime?: string;
|
|
277
|
+
orderPayTime?: string;
|
|
278
|
+
totalRentMoney?: number;
|
|
279
|
+
rentTerm?: number;
|
|
280
|
+
rentUnit?: string;
|
|
281
|
+
orderStatus?: string;
|
|
282
|
+
orderSubStatus?: string;
|
|
283
|
+
depositPrice?: number;
|
|
284
|
+
buyOutPrice?: number;
|
|
285
|
+
logisticType?: string;
|
|
286
|
+
dueMode?: number;
|
|
287
|
+
downPayment?: number;
|
|
288
|
+
static names(): {
|
|
289
|
+
[key: string]: string;
|
|
290
|
+
};
|
|
291
|
+
static types(): {
|
|
292
|
+
[key: string]: any;
|
|
293
|
+
};
|
|
294
|
+
constructor(map?: {
|
|
295
|
+
[key: string]: any;
|
|
296
|
+
});
|
|
297
|
+
}
|
|
298
|
+
export declare class OrderPromiseInfo extends $tea.Model {
|
|
299
|
+
repayStrategyList?: OrderRepayStrategy[];
|
|
300
|
+
static names(): {
|
|
301
|
+
[key: string]: string;
|
|
302
|
+
};
|
|
303
|
+
static types(): {
|
|
304
|
+
[key: string]: any;
|
|
305
|
+
};
|
|
306
|
+
constructor(map?: {
|
|
307
|
+
[key: string]: any;
|
|
308
|
+
});
|
|
309
|
+
}
|
|
310
|
+
export declare class NoticeInfo extends $tea.Model {
|
|
311
|
+
noticeId?: number;
|
|
312
|
+
title?: string;
|
|
313
|
+
noticeCreateTime?: string;
|
|
314
|
+
unread?: boolean;
|
|
225
315
|
static names(): {
|
|
226
316
|
[key: string]: string;
|
|
227
317
|
};
|
|
@@ -266,6 +356,43 @@ export declare class AuditInfo extends $tea.Model {
|
|
|
266
356
|
[key: string]: any;
|
|
267
357
|
});
|
|
268
358
|
}
|
|
359
|
+
export declare class OrderUserInfo extends $tea.Model {
|
|
360
|
+
userName?: string;
|
|
361
|
+
userPhoneNumber?: string;
|
|
362
|
+
userAddress?: string;
|
|
363
|
+
alipayUid?: string;
|
|
364
|
+
lesseeType?: number;
|
|
365
|
+
userId?: string;
|
|
366
|
+
static names(): {
|
|
367
|
+
[key: string]: string;
|
|
368
|
+
};
|
|
369
|
+
static types(): {
|
|
370
|
+
[key: string]: any;
|
|
371
|
+
};
|
|
372
|
+
constructor(map?: {
|
|
373
|
+
[key: string]: any;
|
|
374
|
+
});
|
|
375
|
+
}
|
|
376
|
+
export declare class ProductInfo extends $tea.Model {
|
|
377
|
+
merchantId?: string;
|
|
378
|
+
productName?: string;
|
|
379
|
+
productId?: string;
|
|
380
|
+
productModel?: string;
|
|
381
|
+
productVersion?: string;
|
|
382
|
+
productPrice?: number;
|
|
383
|
+
mainClass?: string;
|
|
384
|
+
subClass?: string;
|
|
385
|
+
productBrand?: string;
|
|
386
|
+
static names(): {
|
|
387
|
+
[key: string]: string;
|
|
388
|
+
};
|
|
389
|
+
static types(): {
|
|
390
|
+
[key: string]: any;
|
|
391
|
+
};
|
|
392
|
+
constructor(map?: {
|
|
393
|
+
[key: string]: any;
|
|
394
|
+
});
|
|
395
|
+
}
|
|
269
396
|
export declare class OrderGoodsModel extends $tea.Model {
|
|
270
397
|
static names(): {
|
|
271
398
|
[key: string]: string;
|
|
@@ -292,6 +419,25 @@ export declare class LegalInfoUpdate extends $tea.Model {
|
|
|
292
419
|
[key: string]: any;
|
|
293
420
|
});
|
|
294
421
|
}
|
|
422
|
+
export declare class MerchantOrderInfo extends $tea.Model {
|
|
423
|
+
agreementNo?: string;
|
|
424
|
+
orderId?: string;
|
|
425
|
+
orderCreateTime?: string;
|
|
426
|
+
totalRentMoney?: number;
|
|
427
|
+
rentRerm?: number;
|
|
428
|
+
orderStatus?: string;
|
|
429
|
+
userName?: string;
|
|
430
|
+
userPhoneNumber?: string;
|
|
431
|
+
static names(): {
|
|
432
|
+
[key: string]: string;
|
|
433
|
+
};
|
|
434
|
+
static types(): {
|
|
435
|
+
[key: string]: any;
|
|
436
|
+
};
|
|
437
|
+
constructor(map?: {
|
|
438
|
+
[key: string]: any;
|
|
439
|
+
});
|
|
440
|
+
}
|
|
295
441
|
export declare class PromiseInfo extends $tea.Model {
|
|
296
442
|
static names(): {
|
|
297
443
|
[key: string]: string;
|
|
@@ -334,6 +480,22 @@ export declare class AgreementPage extends $tea.Model {
|
|
|
334
480
|
[key: string]: any;
|
|
335
481
|
});
|
|
336
482
|
}
|
|
483
|
+
export declare class OrderFulfillmentInfo extends $tea.Model {
|
|
484
|
+
leaseTermIndex?: number;
|
|
485
|
+
rentalReturnState?: string;
|
|
486
|
+
realRepayMoney?: number;
|
|
487
|
+
rentalMoney?: number;
|
|
488
|
+
returnTime?: string;
|
|
489
|
+
static names(): {
|
|
490
|
+
[key: string]: string;
|
|
491
|
+
};
|
|
492
|
+
static types(): {
|
|
493
|
+
[key: string]: any;
|
|
494
|
+
};
|
|
495
|
+
constructor(map?: {
|
|
496
|
+
[key: string]: any;
|
|
497
|
+
});
|
|
498
|
+
}
|
|
337
499
|
export declare class RiskScene extends $tea.Model {
|
|
338
500
|
sceneCode: string;
|
|
339
501
|
decision: string;
|
|
@@ -385,6 +547,20 @@ export declare class CompanyInfoUpdate extends $tea.Model {
|
|
|
385
547
|
[key: string]: any;
|
|
386
548
|
});
|
|
387
549
|
}
|
|
550
|
+
export declare class OrderProductInfo extends $tea.Model {
|
|
551
|
+
productId?: string;
|
|
552
|
+
productName?: string;
|
|
553
|
+
productNumber?: number;
|
|
554
|
+
static names(): {
|
|
555
|
+
[key: string]: string;
|
|
556
|
+
};
|
|
557
|
+
static types(): {
|
|
558
|
+
[key: string]: any;
|
|
559
|
+
};
|
|
560
|
+
constructor(map?: {
|
|
561
|
+
[key: string]: any;
|
|
562
|
+
});
|
|
563
|
+
}
|
|
388
564
|
export declare class ActivePayOrder extends $tea.Model {
|
|
389
565
|
tradeNo: string;
|
|
390
566
|
tradeStatus: string;
|
|
@@ -481,6 +657,7 @@ export declare class RiskModel extends $tea.Model {
|
|
|
481
657
|
delinquencyRate?: string;
|
|
482
658
|
riskAdvice?: string;
|
|
483
659
|
riskRank?: string;
|
|
660
|
+
flowId: string;
|
|
484
661
|
static names(): {
|
|
485
662
|
[key: string]: string;
|
|
486
663
|
};
|
|
@@ -2764,14 +2941,11 @@ export declare class GetInnerFunddividemerchantResponse extends $tea.Model {
|
|
|
2764
2941
|
[key: string]: any;
|
|
2765
2942
|
});
|
|
2766
2943
|
}
|
|
2767
|
-
export declare class
|
|
2944
|
+
export declare class QueryInnerInsuresignRequest extends $tea.Model {
|
|
2768
2945
|
authToken?: string;
|
|
2769
2946
|
productInstanceId?: string;
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
applicationInfo: ApplicationInfo;
|
|
2773
|
-
expandMode: string;
|
|
2774
|
-
subTenantId?: string;
|
|
2947
|
+
merchantTenantId: string;
|
|
2948
|
+
insureMerchantId: string;
|
|
2775
2949
|
static names(): {
|
|
2776
2950
|
[key: string]: string;
|
|
2777
2951
|
};
|
|
@@ -2782,11 +2956,14 @@ export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
|
2782
2956
|
[key: string]: any;
|
|
2783
2957
|
});
|
|
2784
2958
|
}
|
|
2785
|
-
export declare class
|
|
2959
|
+
export declare class QueryInnerInsuresignResponse extends $tea.Model {
|
|
2786
2960
|
reqMsgId?: string;
|
|
2787
2961
|
resultCode?: string;
|
|
2788
2962
|
resultMsg?: string;
|
|
2789
|
-
|
|
2963
|
+
merchantId?: string;
|
|
2964
|
+
insureMerchantId?: string;
|
|
2965
|
+
externalAgreementNo?: string;
|
|
2966
|
+
status?: string;
|
|
2790
2967
|
static names(): {
|
|
2791
2968
|
[key: string]: string;
|
|
2792
2969
|
};
|
|
@@ -2797,11 +2974,11 @@ export declare class RegisterMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
2797
2974
|
[key: string]: any;
|
|
2798
2975
|
});
|
|
2799
2976
|
}
|
|
2800
|
-
export declare class
|
|
2977
|
+
export declare class CreateInnerInsuresignRequest extends $tea.Model {
|
|
2801
2978
|
authToken?: string;
|
|
2802
2979
|
productInstanceId?: string;
|
|
2803
|
-
|
|
2804
|
-
|
|
2980
|
+
merchantTenantId: string;
|
|
2981
|
+
externalAgreementNo: string;
|
|
2805
2982
|
static names(): {
|
|
2806
2983
|
[key: string]: string;
|
|
2807
2984
|
};
|
|
@@ -2812,12 +2989,11 @@ export declare class UploadMerchantexpandFileRequest extends $tea.Model {
|
|
|
2812
2989
|
[key: string]: any;
|
|
2813
2990
|
});
|
|
2814
2991
|
}
|
|
2815
|
-
export declare class
|
|
2992
|
+
export declare class CreateInnerInsuresignResponse extends $tea.Model {
|
|
2816
2993
|
reqMsgId?: string;
|
|
2817
2994
|
resultCode?: string;
|
|
2818
2995
|
resultMsg?: string;
|
|
2819
|
-
|
|
2820
|
-
fileKey?: string;
|
|
2996
|
+
signStr?: string;
|
|
2821
2997
|
static names(): {
|
|
2822
2998
|
[key: string]: string;
|
|
2823
2999
|
};
|
|
@@ -2828,10 +3004,14 @@ export declare class UploadMerchantexpandFileResponse extends $tea.Model {
|
|
|
2828
3004
|
[key: string]: any;
|
|
2829
3005
|
});
|
|
2830
3006
|
}
|
|
2831
|
-
export declare class
|
|
3007
|
+
export declare class PagequeryInnerInsureorderRequest extends $tea.Model {
|
|
2832
3008
|
authToken?: string;
|
|
2833
3009
|
productInstanceId?: string;
|
|
2834
|
-
|
|
3010
|
+
tenantId: string;
|
|
3011
|
+
orderId?: string;
|
|
3012
|
+
pageInfo: PageQuery;
|
|
3013
|
+
insureMerchantId: string;
|
|
3014
|
+
status?: string;
|
|
2835
3015
|
static names(): {
|
|
2836
3016
|
[key: string]: string;
|
|
2837
3017
|
};
|
|
@@ -2842,12 +3022,12 @@ export declare class QueryMerchantexpandMerchantRequest extends $tea.Model {
|
|
|
2842
3022
|
[key: string]: any;
|
|
2843
3023
|
});
|
|
2844
3024
|
}
|
|
2845
|
-
export declare class
|
|
3025
|
+
export declare class PagequeryInnerInsureorderResponse extends $tea.Model {
|
|
2846
3026
|
reqMsgId?: string;
|
|
2847
3027
|
resultCode?: string;
|
|
2848
3028
|
resultMsg?: string;
|
|
2849
|
-
|
|
2850
|
-
|
|
3029
|
+
totalSize?: number;
|
|
3030
|
+
inusreOrderInfos?: InsureOrderInfo[];
|
|
2851
3031
|
static names(): {
|
|
2852
3032
|
[key: string]: string;
|
|
2853
3033
|
};
|
|
@@ -2858,14 +3038,16 @@ export declare class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
2858
3038
|
[key: string]: any;
|
|
2859
3039
|
});
|
|
2860
3040
|
}
|
|
2861
|
-
export declare class
|
|
3041
|
+
export declare class PagequeryInnerProductRequest extends $tea.Model {
|
|
2862
3042
|
authToken?: string;
|
|
2863
3043
|
productInstanceId?: string;
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
3044
|
+
tenantId: string;
|
|
3045
|
+
productName?: string;
|
|
3046
|
+
productId?: string;
|
|
3047
|
+
mainClass?: string;
|
|
3048
|
+
subClass?: string;
|
|
3049
|
+
productBrand?: string;
|
|
3050
|
+
pageInfo: PageQuery;
|
|
2869
3051
|
static names(): {
|
|
2870
3052
|
[key: string]: string;
|
|
2871
3053
|
};
|
|
@@ -2876,11 +3058,12 @@ export declare class UpdateMerchantexpandMerchantRequest extends $tea.Model {
|
|
|
2876
3058
|
[key: string]: any;
|
|
2877
3059
|
});
|
|
2878
3060
|
}
|
|
2879
|
-
export declare class
|
|
3061
|
+
export declare class PagequeryInnerProductResponse extends $tea.Model {
|
|
2880
3062
|
reqMsgId?: string;
|
|
2881
3063
|
resultCode?: string;
|
|
2882
3064
|
resultMsg?: string;
|
|
2883
|
-
|
|
3065
|
+
total?: number;
|
|
3066
|
+
productInfoList?: ProductInfo[];
|
|
2884
3067
|
static names(): {
|
|
2885
3068
|
[key: string]: string;
|
|
2886
3069
|
};
|
|
@@ -2891,15 +3074,13 @@ export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
2891
3074
|
[key: string]: any;
|
|
2892
3075
|
});
|
|
2893
3076
|
}
|
|
2894
|
-
export declare class
|
|
3077
|
+
export declare class DetailInnerProductRequest extends $tea.Model {
|
|
2895
3078
|
authToken?: string;
|
|
2896
3079
|
productInstanceId?: string;
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
faceReserveStrategy?: string;
|
|
2902
|
-
returnUrl?: string;
|
|
3080
|
+
tenantId: string;
|
|
3081
|
+
merchantId: string;
|
|
3082
|
+
productId: string;
|
|
3083
|
+
productVersion: string;
|
|
2903
3084
|
static names(): {
|
|
2904
3085
|
[key: string]: string;
|
|
2905
3086
|
};
|
|
@@ -2910,12 +3091,21 @@ export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
|
2910
3091
|
[key: string]: any;
|
|
2911
3092
|
});
|
|
2912
3093
|
}
|
|
2913
|
-
export declare class
|
|
3094
|
+
export declare class DetailInnerProductResponse extends $tea.Model {
|
|
2914
3095
|
reqMsgId?: string;
|
|
2915
3096
|
resultCode?: string;
|
|
2916
3097
|
resultMsg?: string;
|
|
2917
|
-
|
|
2918
|
-
|
|
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;
|
|
2919
3109
|
static names(): {
|
|
2920
3110
|
[key: string]: string;
|
|
2921
3111
|
};
|
|
@@ -2926,10 +3116,10 @@ export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2926
3116
|
[key: string]: any;
|
|
2927
3117
|
});
|
|
2928
3118
|
}
|
|
2929
|
-
export declare class
|
|
3119
|
+
export declare class GetInnerHomepagenoticeRequest extends $tea.Model {
|
|
2930
3120
|
authToken?: string;
|
|
2931
3121
|
productInstanceId?: string;
|
|
2932
|
-
|
|
3122
|
+
tenantId: string;
|
|
2933
3123
|
static names(): {
|
|
2934
3124
|
[key: string]: string;
|
|
2935
3125
|
};
|
|
@@ -2940,13 +3130,14 @@ export declare class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
|
2940
3130
|
[key: string]: any;
|
|
2941
3131
|
});
|
|
2942
3132
|
}
|
|
2943
|
-
export declare class
|
|
3133
|
+
export declare class GetInnerHomepagenoticeResponse extends $tea.Model {
|
|
2944
3134
|
reqMsgId?: string;
|
|
2945
3135
|
resultCode?: string;
|
|
2946
3136
|
resultMsg?: string;
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
3137
|
+
noticeId?: number;
|
|
3138
|
+
title?: string;
|
|
3139
|
+
unreadCount?: number;
|
|
3140
|
+
unread?: boolean;
|
|
2950
3141
|
static names(): {
|
|
2951
3142
|
[key: string]: string;
|
|
2952
3143
|
};
|
|
@@ -2957,18 +3148,11 @@ export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2957
3148
|
[key: string]: any;
|
|
2958
3149
|
});
|
|
2959
3150
|
}
|
|
2960
|
-
export declare class
|
|
3151
|
+
export declare class PagequeryInnerNoticeRequest extends $tea.Model {
|
|
2961
3152
|
authToken?: string;
|
|
2962
3153
|
productInstanceId?: string;
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
certNo: string;
|
|
2966
|
-
mobile: string;
|
|
2967
|
-
alipayUserId?: string;
|
|
2968
|
-
source?: string;
|
|
2969
|
-
itemDetail?: ItemDetail;
|
|
2970
|
-
priceDetail?: PriceDetail;
|
|
2971
|
-
deliveryDetail?: DeliveryDetail;
|
|
3154
|
+
tenantId: string;
|
|
3155
|
+
pageInfo: PageQuery;
|
|
2972
3156
|
static names(): {
|
|
2973
3157
|
[key: string]: string;
|
|
2974
3158
|
};
|
|
@@ -2979,12 +3163,12 @@ export declare class QueryRiskRequest extends $tea.Model {
|
|
|
2979
3163
|
[key: string]: any;
|
|
2980
3164
|
});
|
|
2981
3165
|
}
|
|
2982
|
-
export declare class
|
|
3166
|
+
export declare class PagequeryInnerNoticeResponse extends $tea.Model {
|
|
2983
3167
|
reqMsgId?: string;
|
|
2984
3168
|
resultCode?: string;
|
|
2985
3169
|
resultMsg?: string;
|
|
2986
|
-
|
|
2987
|
-
|
|
3170
|
+
total?: number;
|
|
3171
|
+
noticeInfoList?: NoticeInfo[];
|
|
2988
3172
|
static names(): {
|
|
2989
3173
|
[key: string]: string;
|
|
2990
3174
|
};
|
|
@@ -2995,13 +3179,12 @@ export declare class QueryRiskResponse extends $tea.Model {
|
|
|
2995
3179
|
[key: string]: any;
|
|
2996
3180
|
});
|
|
2997
3181
|
}
|
|
2998
|
-
export declare class
|
|
3182
|
+
export declare class DetailInnerNoticeRequest extends $tea.Model {
|
|
2999
3183
|
authToken?: string;
|
|
3000
3184
|
productInstanceId?: string;
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
fundId?: string;
|
|
3185
|
+
tenantId: string;
|
|
3186
|
+
noticeId: number;
|
|
3187
|
+
unread: boolean;
|
|
3005
3188
|
static names(): {
|
|
3006
3189
|
[key: string]: string;
|
|
3007
3190
|
};
|
|
@@ -3012,11 +3195,13 @@ export declare class AllSignTemplateRequest extends $tea.Model {
|
|
|
3012
3195
|
[key: string]: any;
|
|
3013
3196
|
});
|
|
3014
3197
|
}
|
|
3015
|
-
export declare class
|
|
3198
|
+
export declare class DetailInnerNoticeResponse extends $tea.Model {
|
|
3016
3199
|
reqMsgId?: string;
|
|
3017
3200
|
resultCode?: string;
|
|
3018
3201
|
resultMsg?: string;
|
|
3019
|
-
|
|
3202
|
+
title?: string;
|
|
3203
|
+
content?: string;
|
|
3204
|
+
noticeCreateTime?: string;
|
|
3020
3205
|
static names(): {
|
|
3021
3206
|
[key: string]: string;
|
|
3022
3207
|
};
|
|
@@ -3027,32 +3212,16 @@ export declare class AllSignTemplateResponse extends $tea.Model {
|
|
|
3027
3212
|
[key: string]: any;
|
|
3028
3213
|
});
|
|
3029
3214
|
}
|
|
3030
|
-
export declare class
|
|
3215
|
+
export declare class PagequeryInnerOrderRequest extends $tea.Model {
|
|
3031
3216
|
authToken?: string;
|
|
3032
3217
|
productInstanceId?: string;
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
flowNotifyType?: string;
|
|
3041
|
-
businessScene: string;
|
|
3042
|
-
signedRedirectUrl?: string;
|
|
3043
|
-
templateList: string;
|
|
3044
|
-
alipayUserId?: string;
|
|
3045
|
-
merchantName: string;
|
|
3046
|
-
merchantTag?: string;
|
|
3047
|
-
merchantSealId?: string;
|
|
3048
|
-
merchantSignOrder?: number;
|
|
3049
|
-
merchantIdType: string;
|
|
3050
|
-
merchantIdNumber: string;
|
|
3051
|
-
merchantLegalName?: string;
|
|
3052
|
-
merchantLegalIdNumber?: string;
|
|
3053
|
-
thirdSigner?: string;
|
|
3054
|
-
userOpenId?: string;
|
|
3055
|
-
merchantAppId?: string;
|
|
3218
|
+
tenantId: string;
|
|
3219
|
+
orderId?: string;
|
|
3220
|
+
agreementNo?: string;
|
|
3221
|
+
orderCreateTimeStart?: string;
|
|
3222
|
+
orderCreateTimeEnd?: string;
|
|
3223
|
+
orderStatus?: string;
|
|
3224
|
+
pageInfo: PageQuery;
|
|
3056
3225
|
static names(): {
|
|
3057
3226
|
[key: string]: string;
|
|
3058
3227
|
};
|
|
@@ -3063,14 +3232,12 @@ export declare class SubmitSignFlowRequest extends $tea.Model {
|
|
|
3063
3232
|
[key: string]: any;
|
|
3064
3233
|
});
|
|
3065
3234
|
}
|
|
3066
|
-
export declare class
|
|
3235
|
+
export declare class PagequeryInnerOrderResponse extends $tea.Model {
|
|
3067
3236
|
reqMsgId?: string;
|
|
3068
3237
|
resultCode?: string;
|
|
3069
3238
|
resultMsg?: string;
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
accountId?: string;
|
|
3073
|
-
signInfo?: string;
|
|
3239
|
+
orderInfoList?: MerchantOrderInfo[];
|
|
3240
|
+
total?: number;
|
|
3074
3241
|
static names(): {
|
|
3075
3242
|
[key: string]: string;
|
|
3076
3243
|
};
|
|
@@ -3081,10 +3248,11 @@ export declare class SubmitSignFlowResponse extends $tea.Model {
|
|
|
3081
3248
|
[key: string]: any;
|
|
3082
3249
|
});
|
|
3083
3250
|
}
|
|
3084
|
-
export declare class
|
|
3251
|
+
export declare class DetailInnerOrderRequest extends $tea.Model {
|
|
3085
3252
|
authToken?: string;
|
|
3086
3253
|
productInstanceId?: string;
|
|
3087
|
-
|
|
3254
|
+
tenantId: string;
|
|
3255
|
+
orderId: string;
|
|
3088
3256
|
static names(): {
|
|
3089
3257
|
[key: string]: string;
|
|
3090
3258
|
};
|
|
@@ -3095,20 +3263,18 @@ export declare class GetSignFlowRequest extends $tea.Model {
|
|
|
3095
3263
|
[key: string]: any;
|
|
3096
3264
|
});
|
|
3097
3265
|
}
|
|
3098
|
-
export declare class
|
|
3266
|
+
export declare class DetailInnerOrderResponse extends $tea.Model {
|
|
3099
3267
|
reqMsgId?: string;
|
|
3100
3268
|
resultCode?: string;
|
|
3101
3269
|
resultMsg?: string;
|
|
3102
|
-
signNo?: string;
|
|
3103
3270
|
orderId?: string;
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
initiatorAccountId?: string;
|
|
3271
|
+
agreementNo?: string;
|
|
3272
|
+
productTotalCount?: number;
|
|
3273
|
+
orderInfo?: OrderInfo;
|
|
3274
|
+
orderUserInfo?: OrderUserInfo;
|
|
3275
|
+
orderFulfillmentInfoList?: OrderFulfillmentInfo[];
|
|
3276
|
+
orderPromiseInfo?: OrderPromiseInfo;
|
|
3277
|
+
orderProductInfoList?: OrderProductInfo[];
|
|
3112
3278
|
static names(): {
|
|
3113
3279
|
[key: string]: string;
|
|
3114
3280
|
};
|
|
@@ -3119,13 +3285,20 @@ export declare class GetSignFlowResponse extends $tea.Model {
|
|
|
3119
3285
|
[key: string]: any;
|
|
3120
3286
|
});
|
|
3121
3287
|
}
|
|
3122
|
-
export declare class
|
|
3288
|
+
export declare class CreateInsureRequest extends $tea.Model {
|
|
3123
3289
|
authToken?: string;
|
|
3124
3290
|
productInstanceId?: string;
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3291
|
+
orderId: string;
|
|
3292
|
+
riskFlowId: string;
|
|
3293
|
+
insureCompanyType: string;
|
|
3294
|
+
insureProductType: string;
|
|
3295
|
+
productInfoList: InsureProductInfo[];
|
|
3296
|
+
deliveryType: string;
|
|
3297
|
+
contactName: string;
|
|
3298
|
+
contactMobile: string;
|
|
3299
|
+
facevrfFlowId?: string;
|
|
3300
|
+
logisticsNumber?: string;
|
|
3301
|
+
tradeTime?: string;
|
|
3129
3302
|
static names(): {
|
|
3130
3303
|
[key: string]: string;
|
|
3131
3304
|
};
|
|
@@ -3136,11 +3309,10 @@ export declare class AuthSignFlowRequest extends $tea.Model {
|
|
|
3136
3309
|
[key: string]: any;
|
|
3137
3310
|
});
|
|
3138
3311
|
}
|
|
3139
|
-
export declare class
|
|
3312
|
+
export declare class CreateInsureResponse extends $tea.Model {
|
|
3140
3313
|
reqMsgId?: string;
|
|
3141
3314
|
resultCode?: string;
|
|
3142
3315
|
resultMsg?: string;
|
|
3143
|
-
signFieldIds?: string;
|
|
3144
3316
|
static names(): {
|
|
3145
3317
|
[key: string]: string;
|
|
3146
3318
|
};
|
|
@@ -3151,12 +3323,466 @@ export declare class AuthSignFlowResponse extends $tea.Model {
|
|
|
3151
3323
|
[key: string]: any;
|
|
3152
3324
|
});
|
|
3153
3325
|
}
|
|
3154
|
-
export declare class
|
|
3326
|
+
export declare class QueryInsureRequest extends $tea.Model {
|
|
3155
3327
|
authToken?: string;
|
|
3156
3328
|
productInstanceId?: string;
|
|
3157
3329
|
orderId: string;
|
|
3158
|
-
|
|
3159
|
-
|
|
3330
|
+
insureProductType: string;
|
|
3331
|
+
insureCompanyType: string;
|
|
3332
|
+
static names(): {
|
|
3333
|
+
[key: string]: string;
|
|
3334
|
+
};
|
|
3335
|
+
static types(): {
|
|
3336
|
+
[key: string]: any;
|
|
3337
|
+
};
|
|
3338
|
+
constructor(map?: {
|
|
3339
|
+
[key: string]: any;
|
|
3340
|
+
});
|
|
3341
|
+
}
|
|
3342
|
+
export declare class QueryInsureResponse extends $tea.Model {
|
|
3343
|
+
reqMsgId?: string;
|
|
3344
|
+
resultCode?: string;
|
|
3345
|
+
resultMsg?: string;
|
|
3346
|
+
orderId?: string;
|
|
3347
|
+
insureId?: string;
|
|
3348
|
+
status?: string;
|
|
3349
|
+
productName?: string;
|
|
3350
|
+
insureStartTime?: string;
|
|
3351
|
+
insureEndTime?: string;
|
|
3352
|
+
insureAmount?: string;
|
|
3353
|
+
insurePremium?: string;
|
|
3354
|
+
static names(): {
|
|
3355
|
+
[key: string]: string;
|
|
3356
|
+
};
|
|
3357
|
+
static types(): {
|
|
3358
|
+
[key: string]: any;
|
|
3359
|
+
};
|
|
3360
|
+
constructor(map?: {
|
|
3361
|
+
[key: string]: any;
|
|
3362
|
+
});
|
|
3363
|
+
}
|
|
3364
|
+
export declare class RetryInsurePayRequest extends $tea.Model {
|
|
3365
|
+
authToken?: string;
|
|
3366
|
+
productInstanceId?: string;
|
|
3367
|
+
orderId: string;
|
|
3368
|
+
insureProductType: string;
|
|
3369
|
+
static names(): {
|
|
3370
|
+
[key: string]: string;
|
|
3371
|
+
};
|
|
3372
|
+
static types(): {
|
|
3373
|
+
[key: string]: any;
|
|
3374
|
+
};
|
|
3375
|
+
constructor(map?: {
|
|
3376
|
+
[key: string]: any;
|
|
3377
|
+
});
|
|
3378
|
+
}
|
|
3379
|
+
export declare class RetryInsurePayResponse extends $tea.Model {
|
|
3380
|
+
reqMsgId?: string;
|
|
3381
|
+
resultCode?: string;
|
|
3382
|
+
resultMsg?: string;
|
|
3383
|
+
static names(): {
|
|
3384
|
+
[key: string]: string;
|
|
3385
|
+
};
|
|
3386
|
+
static types(): {
|
|
3387
|
+
[key: string]: any;
|
|
3388
|
+
};
|
|
3389
|
+
constructor(map?: {
|
|
3390
|
+
[key: string]: any;
|
|
3391
|
+
});
|
|
3392
|
+
}
|
|
3393
|
+
export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
3394
|
+
authToken?: string;
|
|
3395
|
+
productInstanceId?: string;
|
|
3396
|
+
companyInfo: CompanyInfo;
|
|
3397
|
+
legalInfo: LegalInfo;
|
|
3398
|
+
applicationInfo: ApplicationInfo;
|
|
3399
|
+
expandMode: string;
|
|
3400
|
+
subTenantId?: string;
|
|
3401
|
+
static names(): {
|
|
3402
|
+
[key: string]: string;
|
|
3403
|
+
};
|
|
3404
|
+
static types(): {
|
|
3405
|
+
[key: string]: any;
|
|
3406
|
+
};
|
|
3407
|
+
constructor(map?: {
|
|
3408
|
+
[key: string]: any;
|
|
3409
|
+
});
|
|
3410
|
+
}
|
|
3411
|
+
export declare class RegisterMerchantexpandMerchantResponse extends $tea.Model {
|
|
3412
|
+
reqMsgId?: string;
|
|
3413
|
+
resultCode?: string;
|
|
3414
|
+
resultMsg?: string;
|
|
3415
|
+
payExpandId?: string;
|
|
3416
|
+
static names(): {
|
|
3417
|
+
[key: string]: string;
|
|
3418
|
+
};
|
|
3419
|
+
static types(): {
|
|
3420
|
+
[key: string]: any;
|
|
3421
|
+
};
|
|
3422
|
+
constructor(map?: {
|
|
3423
|
+
[key: string]: any;
|
|
3424
|
+
});
|
|
3425
|
+
}
|
|
3426
|
+
export declare class UploadMerchantexpandFileRequest extends $tea.Model {
|
|
3427
|
+
authToken?: string;
|
|
3428
|
+
productInstanceId?: string;
|
|
3429
|
+
fileName: string;
|
|
3430
|
+
bizScene: string;
|
|
3431
|
+
static names(): {
|
|
3432
|
+
[key: string]: string;
|
|
3433
|
+
};
|
|
3434
|
+
static types(): {
|
|
3435
|
+
[key: string]: any;
|
|
3436
|
+
};
|
|
3437
|
+
constructor(map?: {
|
|
3438
|
+
[key: string]: any;
|
|
3439
|
+
});
|
|
3440
|
+
}
|
|
3441
|
+
export declare class UploadMerchantexpandFileResponse extends $tea.Model {
|
|
3442
|
+
reqMsgId?: string;
|
|
3443
|
+
resultCode?: string;
|
|
3444
|
+
resultMsg?: string;
|
|
3445
|
+
uploadUrl?: string;
|
|
3446
|
+
fileKey?: string;
|
|
3447
|
+
static names(): {
|
|
3448
|
+
[key: string]: string;
|
|
3449
|
+
};
|
|
3450
|
+
static types(): {
|
|
3451
|
+
[key: string]: any;
|
|
3452
|
+
};
|
|
3453
|
+
constructor(map?: {
|
|
3454
|
+
[key: string]: any;
|
|
3455
|
+
});
|
|
3456
|
+
}
|
|
3457
|
+
export declare class QueryMerchantexpandMerchantRequest extends $tea.Model {
|
|
3458
|
+
authToken?: string;
|
|
3459
|
+
productInstanceId?: string;
|
|
3460
|
+
payExpandId: string;
|
|
3461
|
+
static names(): {
|
|
3462
|
+
[key: string]: string;
|
|
3463
|
+
};
|
|
3464
|
+
static types(): {
|
|
3465
|
+
[key: string]: any;
|
|
3466
|
+
};
|
|
3467
|
+
constructor(map?: {
|
|
3468
|
+
[key: string]: any;
|
|
3469
|
+
});
|
|
3470
|
+
}
|
|
3471
|
+
export declare class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
3472
|
+
reqMsgId?: string;
|
|
3473
|
+
resultCode?: string;
|
|
3474
|
+
resultMsg?: string;
|
|
3475
|
+
enrollmentStatus?: string;
|
|
3476
|
+
failReason?: string;
|
|
3477
|
+
static names(): {
|
|
3478
|
+
[key: string]: string;
|
|
3479
|
+
};
|
|
3480
|
+
static types(): {
|
|
3481
|
+
[key: string]: any;
|
|
3482
|
+
};
|
|
3483
|
+
constructor(map?: {
|
|
3484
|
+
[key: string]: any;
|
|
3485
|
+
});
|
|
3486
|
+
}
|
|
3487
|
+
export declare class UpdateMerchantexpandMerchantRequest extends $tea.Model {
|
|
3488
|
+
authToken?: string;
|
|
3489
|
+
productInstanceId?: string;
|
|
3490
|
+
companyInfo: CompanyInfoUpdate;
|
|
3491
|
+
legalInfo: LegalInfoUpdate;
|
|
3492
|
+
applicationInfo: ApplicationInfoUpdate;
|
|
3493
|
+
payExpandId: string;
|
|
3494
|
+
merchantId: string;
|
|
3495
|
+
static names(): {
|
|
3496
|
+
[key: string]: string;
|
|
3497
|
+
};
|
|
3498
|
+
static types(): {
|
|
3499
|
+
[key: string]: any;
|
|
3500
|
+
};
|
|
3501
|
+
constructor(map?: {
|
|
3502
|
+
[key: string]: any;
|
|
3503
|
+
});
|
|
3504
|
+
}
|
|
3505
|
+
export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
3506
|
+
reqMsgId?: string;
|
|
3507
|
+
resultCode?: string;
|
|
3508
|
+
resultMsg?: string;
|
|
3509
|
+
payExpandId?: string;
|
|
3510
|
+
static names(): {
|
|
3511
|
+
[key: string]: string;
|
|
3512
|
+
};
|
|
3513
|
+
static types(): {
|
|
3514
|
+
[key: string]: any;
|
|
3515
|
+
};
|
|
3516
|
+
constructor(map?: {
|
|
3517
|
+
[key: string]: any;
|
|
3518
|
+
});
|
|
3519
|
+
}
|
|
3520
|
+
export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
3521
|
+
authToken?: string;
|
|
3522
|
+
productInstanceId?: string;
|
|
3523
|
+
solutionType: string;
|
|
3524
|
+
certName: string;
|
|
3525
|
+
certNo: string;
|
|
3526
|
+
certType: string;
|
|
3527
|
+
faceReserveStrategy?: string;
|
|
3528
|
+
returnUrl?: string;
|
|
3529
|
+
static names(): {
|
|
3530
|
+
[key: string]: string;
|
|
3531
|
+
};
|
|
3532
|
+
static types(): {
|
|
3533
|
+
[key: string]: any;
|
|
3534
|
+
};
|
|
3535
|
+
constructor(map?: {
|
|
3536
|
+
[key: string]: any;
|
|
3537
|
+
});
|
|
3538
|
+
}
|
|
3539
|
+
export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
3540
|
+
reqMsgId?: string;
|
|
3541
|
+
resultCode?: string;
|
|
3542
|
+
resultMsg?: string;
|
|
3543
|
+
realPersonVerificationCode?: string;
|
|
3544
|
+
webUrl?: string;
|
|
3545
|
+
static names(): {
|
|
3546
|
+
[key: string]: string;
|
|
3547
|
+
};
|
|
3548
|
+
static types(): {
|
|
3549
|
+
[key: string]: any;
|
|
3550
|
+
};
|
|
3551
|
+
constructor(map?: {
|
|
3552
|
+
[key: string]: any;
|
|
3553
|
+
});
|
|
3554
|
+
}
|
|
3555
|
+
export declare class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
3556
|
+
authToken?: string;
|
|
3557
|
+
productInstanceId?: string;
|
|
3558
|
+
realPersonVerificationCode: string;
|
|
3559
|
+
static names(): {
|
|
3560
|
+
[key: string]: string;
|
|
3561
|
+
};
|
|
3562
|
+
static types(): {
|
|
3563
|
+
[key: string]: any;
|
|
3564
|
+
};
|
|
3565
|
+
constructor(map?: {
|
|
3566
|
+
[key: string]: any;
|
|
3567
|
+
});
|
|
3568
|
+
}
|
|
3569
|
+
export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
3570
|
+
reqMsgId?: string;
|
|
3571
|
+
resultCode?: string;
|
|
3572
|
+
resultMsg?: string;
|
|
3573
|
+
certifyState?: string;
|
|
3574
|
+
attackFlag?: string;
|
|
3575
|
+
alivePhoto?: string;
|
|
3576
|
+
static names(): {
|
|
3577
|
+
[key: string]: string;
|
|
3578
|
+
};
|
|
3579
|
+
static types(): {
|
|
3580
|
+
[key: string]: any;
|
|
3581
|
+
};
|
|
3582
|
+
constructor(map?: {
|
|
3583
|
+
[key: string]: any;
|
|
3584
|
+
});
|
|
3585
|
+
}
|
|
3586
|
+
export declare class QueryRiskRequest extends $tea.Model {
|
|
3587
|
+
authToken?: string;
|
|
3588
|
+
productInstanceId?: string;
|
|
3589
|
+
productName: string;
|
|
3590
|
+
userName: string;
|
|
3591
|
+
certNo: string;
|
|
3592
|
+
mobile: string;
|
|
3593
|
+
alipayUserId?: string;
|
|
3594
|
+
source?: string;
|
|
3595
|
+
itemDetail?: ItemDetail;
|
|
3596
|
+
priceDetail?: PriceDetail;
|
|
3597
|
+
deliveryDetail?: DeliveryDetail;
|
|
3598
|
+
static names(): {
|
|
3599
|
+
[key: string]: string;
|
|
3600
|
+
};
|
|
3601
|
+
static types(): {
|
|
3602
|
+
[key: string]: any;
|
|
3603
|
+
};
|
|
3604
|
+
constructor(map?: {
|
|
3605
|
+
[key: string]: any;
|
|
3606
|
+
});
|
|
3607
|
+
}
|
|
3608
|
+
export declare class QueryRiskResponse extends $tea.Model {
|
|
3609
|
+
reqMsgId?: string;
|
|
3610
|
+
resultCode?: string;
|
|
3611
|
+
resultMsg?: string;
|
|
3612
|
+
models?: RiskModel[];
|
|
3613
|
+
appletModel?: AppletRiskModel;
|
|
3614
|
+
static names(): {
|
|
3615
|
+
[key: string]: string;
|
|
3616
|
+
};
|
|
3617
|
+
static types(): {
|
|
3618
|
+
[key: string]: any;
|
|
3619
|
+
};
|
|
3620
|
+
constructor(map?: {
|
|
3621
|
+
[key: string]: any;
|
|
3622
|
+
});
|
|
3623
|
+
}
|
|
3624
|
+
export declare class AllSignTemplateRequest extends $tea.Model {
|
|
3625
|
+
authToken?: string;
|
|
3626
|
+
productInstanceId?: string;
|
|
3627
|
+
contractType?: string;
|
|
3628
|
+
merchantId?: string;
|
|
3629
|
+
fundType?: string;
|
|
3630
|
+
fundId?: string;
|
|
3631
|
+
static names(): {
|
|
3632
|
+
[key: string]: string;
|
|
3633
|
+
};
|
|
3634
|
+
static types(): {
|
|
3635
|
+
[key: string]: any;
|
|
3636
|
+
};
|
|
3637
|
+
constructor(map?: {
|
|
3638
|
+
[key: string]: any;
|
|
3639
|
+
});
|
|
3640
|
+
}
|
|
3641
|
+
export declare class AllSignTemplateResponse extends $tea.Model {
|
|
3642
|
+
reqMsgId?: string;
|
|
3643
|
+
resultCode?: string;
|
|
3644
|
+
resultMsg?: string;
|
|
3645
|
+
templateList?: string;
|
|
3646
|
+
static names(): {
|
|
3647
|
+
[key: string]: string;
|
|
3648
|
+
};
|
|
3649
|
+
static types(): {
|
|
3650
|
+
[key: string]: any;
|
|
3651
|
+
};
|
|
3652
|
+
constructor(map?: {
|
|
3653
|
+
[key: string]: any;
|
|
3654
|
+
});
|
|
3655
|
+
}
|
|
3656
|
+
export declare class SubmitSignFlowRequest extends $tea.Model {
|
|
3657
|
+
authToken?: string;
|
|
3658
|
+
productInstanceId?: string;
|
|
3659
|
+
orderId: string;
|
|
3660
|
+
userIdType: string;
|
|
3661
|
+
userIdNumber: string;
|
|
3662
|
+
userName: string;
|
|
3663
|
+
userMobile?: string;
|
|
3664
|
+
userEmail?: string;
|
|
3665
|
+
signValidity?: string;
|
|
3666
|
+
flowNotifyType?: string;
|
|
3667
|
+
businessScene: string;
|
|
3668
|
+
signedRedirectUrl?: string;
|
|
3669
|
+
templateList: string;
|
|
3670
|
+
alipayUserId?: string;
|
|
3671
|
+
merchantName: string;
|
|
3672
|
+
merchantTag?: string;
|
|
3673
|
+
merchantSealId?: string;
|
|
3674
|
+
merchantSignOrder?: number;
|
|
3675
|
+
merchantIdType: string;
|
|
3676
|
+
merchantIdNumber: string;
|
|
3677
|
+
merchantLegalName?: string;
|
|
3678
|
+
merchantLegalIdNumber?: string;
|
|
3679
|
+
thirdSigner?: string;
|
|
3680
|
+
userOpenId?: string;
|
|
3681
|
+
merchantAppId?: string;
|
|
3682
|
+
static names(): {
|
|
3683
|
+
[key: string]: string;
|
|
3684
|
+
};
|
|
3685
|
+
static types(): {
|
|
3686
|
+
[key: string]: any;
|
|
3687
|
+
};
|
|
3688
|
+
constructor(map?: {
|
|
3689
|
+
[key: string]: any;
|
|
3690
|
+
});
|
|
3691
|
+
}
|
|
3692
|
+
export declare class SubmitSignFlowResponse extends $tea.Model {
|
|
3693
|
+
reqMsgId?: string;
|
|
3694
|
+
resultCode?: string;
|
|
3695
|
+
resultMsg?: string;
|
|
3696
|
+
signNo?: string;
|
|
3697
|
+
flowId?: string;
|
|
3698
|
+
accountId?: string;
|
|
3699
|
+
signInfo?: string;
|
|
3700
|
+
static names(): {
|
|
3701
|
+
[key: string]: string;
|
|
3702
|
+
};
|
|
3703
|
+
static types(): {
|
|
3704
|
+
[key: string]: any;
|
|
3705
|
+
};
|
|
3706
|
+
constructor(map?: {
|
|
3707
|
+
[key: string]: any;
|
|
3708
|
+
});
|
|
3709
|
+
}
|
|
3710
|
+
export declare class GetSignFlowRequest extends $tea.Model {
|
|
3711
|
+
authToken?: string;
|
|
3712
|
+
productInstanceId?: string;
|
|
3713
|
+
signNo: string;
|
|
3714
|
+
static names(): {
|
|
3715
|
+
[key: string]: string;
|
|
3716
|
+
};
|
|
3717
|
+
static types(): {
|
|
3718
|
+
[key: string]: any;
|
|
3719
|
+
};
|
|
3720
|
+
constructor(map?: {
|
|
3721
|
+
[key: string]: any;
|
|
3722
|
+
});
|
|
3723
|
+
}
|
|
3724
|
+
export declare class GetSignFlowResponse extends $tea.Model {
|
|
3725
|
+
reqMsgId?: string;
|
|
3726
|
+
resultCode?: string;
|
|
3727
|
+
resultMsg?: string;
|
|
3728
|
+
signNo?: string;
|
|
3729
|
+
orderId?: string;
|
|
3730
|
+
accountId?: string;
|
|
3731
|
+
status?: string;
|
|
3732
|
+
flowId?: string;
|
|
3733
|
+
docList?: string;
|
|
3734
|
+
businessScene?: string;
|
|
3735
|
+
alipayUserId?: string;
|
|
3736
|
+
signInfo?: string;
|
|
3737
|
+
initiatorAccountId?: string;
|
|
3738
|
+
static names(): {
|
|
3739
|
+
[key: string]: string;
|
|
3740
|
+
};
|
|
3741
|
+
static types(): {
|
|
3742
|
+
[key: string]: any;
|
|
3743
|
+
};
|
|
3744
|
+
constructor(map?: {
|
|
3745
|
+
[key: string]: any;
|
|
3746
|
+
});
|
|
3747
|
+
}
|
|
3748
|
+
export declare class AuthSignFlowRequest extends $tea.Model {
|
|
3749
|
+
authToken?: string;
|
|
3750
|
+
productInstanceId?: string;
|
|
3751
|
+
signNo: string;
|
|
3752
|
+
tag?: string;
|
|
3753
|
+
bizFlowId?: string;
|
|
3754
|
+
accountId?: string;
|
|
3755
|
+
static names(): {
|
|
3756
|
+
[key: string]: string;
|
|
3757
|
+
};
|
|
3758
|
+
static types(): {
|
|
3759
|
+
[key: string]: any;
|
|
3760
|
+
};
|
|
3761
|
+
constructor(map?: {
|
|
3762
|
+
[key: string]: any;
|
|
3763
|
+
});
|
|
3764
|
+
}
|
|
3765
|
+
export declare class AuthSignFlowResponse extends $tea.Model {
|
|
3766
|
+
reqMsgId?: string;
|
|
3767
|
+
resultCode?: string;
|
|
3768
|
+
resultMsg?: string;
|
|
3769
|
+
signFieldIds?: string;
|
|
3770
|
+
static names(): {
|
|
3771
|
+
[key: string]: string;
|
|
3772
|
+
};
|
|
3773
|
+
static types(): {
|
|
3774
|
+
[key: string]: any;
|
|
3775
|
+
};
|
|
3776
|
+
constructor(map?: {
|
|
3777
|
+
[key: string]: any;
|
|
3778
|
+
});
|
|
3779
|
+
}
|
|
3780
|
+
export declare class SubmitFrontSignRequest extends $tea.Model {
|
|
3781
|
+
authToken?: string;
|
|
3782
|
+
productInstanceId?: string;
|
|
3783
|
+
orderId: string;
|
|
3784
|
+
userIdType: string;
|
|
3785
|
+
userIdNumber: string;
|
|
3160
3786
|
userName: string;
|
|
3161
3787
|
userMobile?: string;
|
|
3162
3788
|
userEmail?: string;
|
|
@@ -3808,7 +4434,6 @@ export declare class QueryWithholdSignResponse extends $tea.Model {
|
|
|
3808
4434
|
validTime?: string;
|
|
3809
4435
|
invalidTime?: string;
|
|
3810
4436
|
agreementNo?: string;
|
|
3811
|
-
signStrType?: string;
|
|
3812
4437
|
static names(): {
|
|
3813
4438
|
[key: string]: string;
|
|
3814
4439
|
};
|
|
@@ -5056,6 +5681,162 @@ export default class Client {
|
|
|
5056
5681
|
getInnerFunddividemerchantEx(request: GetInnerFunddividemerchantRequest, headers: {
|
|
5057
5682
|
[key: string]: string;
|
|
5058
5683
|
}, runtime: $Util.RuntimeOptions): Promise<GetInnerFunddividemerchantResponse>;
|
|
5684
|
+
/**
|
|
5685
|
+
* Description: 查询商户和保司协议签署信息
|
|
5686
|
+
* Summary: 查询商户和保司协议签署信息
|
|
5687
|
+
*/
|
|
5688
|
+
queryInnerInsuresign(request: QueryInnerInsuresignRequest): Promise<QueryInnerInsuresignResponse>;
|
|
5689
|
+
/**
|
|
5690
|
+
* Description: 查询商户和保司协议签署信息
|
|
5691
|
+
* Summary: 查询商户和保司协议签署信息
|
|
5692
|
+
*/
|
|
5693
|
+
queryInnerInsuresignEx(request: QueryInnerInsuresignRequest, headers: {
|
|
5694
|
+
[key: string]: string;
|
|
5695
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerInsuresignResponse>;
|
|
5696
|
+
/**
|
|
5697
|
+
* Description: 生成商户和保司签约链接
|
|
5698
|
+
* Summary: 生成商户和保司签约链接
|
|
5699
|
+
*/
|
|
5700
|
+
createInnerInsuresign(request: CreateInnerInsuresignRequest): Promise<CreateInnerInsuresignResponse>;
|
|
5701
|
+
/**
|
|
5702
|
+
* Description: 生成商户和保司签约链接
|
|
5703
|
+
* Summary: 生成商户和保司签约链接
|
|
5704
|
+
*/
|
|
5705
|
+
createInnerInsuresignEx(request: CreateInnerInsuresignRequest, headers: {
|
|
5706
|
+
[key: string]: string;
|
|
5707
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerInsuresignResponse>;
|
|
5708
|
+
/**
|
|
5709
|
+
* Description: 查询保单信息
|
|
5710
|
+
* Summary: 查询保单信息
|
|
5711
|
+
*/
|
|
5712
|
+
pagequeryInnerInsureorder(request: PagequeryInnerInsureorderRequest): Promise<PagequeryInnerInsureorderResponse>;
|
|
5713
|
+
/**
|
|
5714
|
+
* Description: 查询保单信息
|
|
5715
|
+
* Summary: 查询保单信息
|
|
5716
|
+
*/
|
|
5717
|
+
pagequeryInnerInsureorderEx(request: PagequeryInnerInsureorderRequest, headers: {
|
|
5718
|
+
[key: string]: string;
|
|
5719
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerInsureorderResponse>;
|
|
5720
|
+
/**
|
|
5721
|
+
* Description: 商户控制台商品列表
|
|
5722
|
+
* Summary: 商品列表
|
|
5723
|
+
*/
|
|
5724
|
+
pagequeryInnerProduct(request: PagequeryInnerProductRequest): Promise<PagequeryInnerProductResponse>;
|
|
5725
|
+
/**
|
|
5726
|
+
* Description: 商户控制台商品列表
|
|
5727
|
+
* Summary: 商品列表
|
|
5728
|
+
*/
|
|
5729
|
+
pagequeryInnerProductEx(request: PagequeryInnerProductRequest, headers: {
|
|
5730
|
+
[key: string]: string;
|
|
5731
|
+
}, 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
|
+
/**
|
|
5745
|
+
* Description: 商户控制台首页通知栏
|
|
5746
|
+
* Summary: 首页通知栏
|
|
5747
|
+
*/
|
|
5748
|
+
getInnerHomepagenotice(request: GetInnerHomepagenoticeRequest): Promise<GetInnerHomepagenoticeResponse>;
|
|
5749
|
+
/**
|
|
5750
|
+
* Description: 商户控制台首页通知栏
|
|
5751
|
+
* Summary: 首页通知栏
|
|
5752
|
+
*/
|
|
5753
|
+
getInnerHomepagenoticeEx(request: GetInnerHomepagenoticeRequest, headers: {
|
|
5754
|
+
[key: string]: string;
|
|
5755
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerHomepagenoticeResponse>;
|
|
5756
|
+
/**
|
|
5757
|
+
* Description: 商户控制台通知列表
|
|
5758
|
+
* Summary: 通知列表
|
|
5759
|
+
*/
|
|
5760
|
+
pagequeryInnerNotice(request: PagequeryInnerNoticeRequest): Promise<PagequeryInnerNoticeResponse>;
|
|
5761
|
+
/**
|
|
5762
|
+
* Description: 商户控制台通知列表
|
|
5763
|
+
* Summary: 通知列表
|
|
5764
|
+
*/
|
|
5765
|
+
pagequeryInnerNoticeEx(request: PagequeryInnerNoticeRequest, headers: {
|
|
5766
|
+
[key: string]: string;
|
|
5767
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerNoticeResponse>;
|
|
5768
|
+
/**
|
|
5769
|
+
* Description: 商户控制台通知详情
|
|
5770
|
+
* Summary: 通知详情
|
|
5771
|
+
*/
|
|
5772
|
+
detailInnerNotice(request: DetailInnerNoticeRequest): Promise<DetailInnerNoticeResponse>;
|
|
5773
|
+
/**
|
|
5774
|
+
* Description: 商户控制台通知详情
|
|
5775
|
+
* Summary: 通知详情
|
|
5776
|
+
*/
|
|
5777
|
+
detailInnerNoticeEx(request: DetailInnerNoticeRequest, headers: {
|
|
5778
|
+
[key: string]: string;
|
|
5779
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerNoticeResponse>;
|
|
5780
|
+
/**
|
|
5781
|
+
* Description: 商户控制台订单列表
|
|
5782
|
+
* Summary: 订单列表
|
|
5783
|
+
*/
|
|
5784
|
+
pagequeryInnerOrder(request: PagequeryInnerOrderRequest): Promise<PagequeryInnerOrderResponse>;
|
|
5785
|
+
/**
|
|
5786
|
+
* Description: 商户控制台订单列表
|
|
5787
|
+
* Summary: 订单列表
|
|
5788
|
+
*/
|
|
5789
|
+
pagequeryInnerOrderEx(request: PagequeryInnerOrderRequest, headers: {
|
|
5790
|
+
[key: string]: string;
|
|
5791
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerOrderResponse>;
|
|
5792
|
+
/**
|
|
5793
|
+
* Description: 订单详情
|
|
5794
|
+
* Summary: 订单详情
|
|
5795
|
+
*/
|
|
5796
|
+
detailInnerOrder(request: DetailInnerOrderRequest): Promise<DetailInnerOrderResponse>;
|
|
5797
|
+
/**
|
|
5798
|
+
* Description: 订单详情
|
|
5799
|
+
* Summary: 订单详情
|
|
5800
|
+
*/
|
|
5801
|
+
detailInnerOrderEx(request: DetailInnerOrderRequest, headers: {
|
|
5802
|
+
[key: string]: string;
|
|
5803
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerOrderResponse>;
|
|
5804
|
+
/**
|
|
5805
|
+
* Description: 一键投保
|
|
5806
|
+
* Summary: 投保
|
|
5807
|
+
*/
|
|
5808
|
+
createInsure(request: CreateInsureRequest): Promise<CreateInsureResponse>;
|
|
5809
|
+
/**
|
|
5810
|
+
* Description: 一键投保
|
|
5811
|
+
* Summary: 投保
|
|
5812
|
+
*/
|
|
5813
|
+
createInsureEx(request: CreateInsureRequest, headers: {
|
|
5814
|
+
[key: string]: string;
|
|
5815
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInsureResponse>;
|
|
5816
|
+
/**
|
|
5817
|
+
* Description: 保单查询
|
|
5818
|
+
* Summary: 保单查询
|
|
5819
|
+
*/
|
|
5820
|
+
queryInsure(request: QueryInsureRequest): Promise<QueryInsureResponse>;
|
|
5821
|
+
/**
|
|
5822
|
+
* Description: 保单查询
|
|
5823
|
+
* Summary: 保单查询
|
|
5824
|
+
*/
|
|
5825
|
+
queryInsureEx(request: QueryInsureRequest, headers: {
|
|
5826
|
+
[key: string]: string;
|
|
5827
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInsureResponse>;
|
|
5828
|
+
/**
|
|
5829
|
+
* Description: 保险代扣重试
|
|
5830
|
+
* Summary: 保险代扣重试
|
|
5831
|
+
*/
|
|
5832
|
+
retryInsurePay(request: RetryInsurePayRequest): Promise<RetryInsurePayResponse>;
|
|
5833
|
+
/**
|
|
5834
|
+
* Description: 保险代扣重试
|
|
5835
|
+
* Summary: 保险代扣重试
|
|
5836
|
+
*/
|
|
5837
|
+
retryInsurePayEx(request: RetryInsurePayRequest, headers: {
|
|
5838
|
+
[key: string]: string;
|
|
5839
|
+
}, runtime: $Util.RuntimeOptions): Promise<RetryInsurePayResponse>;
|
|
5059
5840
|
/**
|
|
5060
5841
|
* Description: 商户入驻
|
|
5061
5842
|
* Summary: 商户入驻
|