@antchain/ato 1.9.29 → 1.9.64
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 +646 -0
- package/dist/client.js +1102 -121
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1520 -97
package/dist/client.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
80
80
|
riskRank: string;
|
|
81
81
|
riskName: string;
|
|
82
82
|
riskDesc: string;
|
|
83
|
+
flowId: string;
|
|
83
84
|
subRiskResultList?: SubRentRiskItem[];
|
|
84
85
|
errorMsg?: string;
|
|
85
86
|
static names(): {
|
|
@@ -142,6 +143,20 @@ export declare class UserPerformanceInfo extends $tea.Model {
|
|
|
142
143
|
[key: string]: any;
|
|
143
144
|
});
|
|
144
145
|
}
|
|
146
|
+
export declare class InsureProductInfo extends $tea.Model {
|
|
147
|
+
productId: string;
|
|
148
|
+
productImeiId: string;
|
|
149
|
+
purchaseAmount: number;
|
|
150
|
+
static names(): {
|
|
151
|
+
[key: string]: string;
|
|
152
|
+
};
|
|
153
|
+
static types(): {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
};
|
|
156
|
+
constructor(map?: {
|
|
157
|
+
[key: string]: any;
|
|
158
|
+
});
|
|
159
|
+
}
|
|
145
160
|
export declare class RiskStrategy extends $tea.Model {
|
|
146
161
|
id: string;
|
|
147
162
|
name: string;
|
|
@@ -157,6 +172,25 @@ export declare class RiskStrategy extends $tea.Model {
|
|
|
157
172
|
[key: string]: any;
|
|
158
173
|
});
|
|
159
174
|
}
|
|
175
|
+
export declare class InsureOrderInfo extends $tea.Model {
|
|
176
|
+
orderId?: string;
|
|
177
|
+
insureId?: string;
|
|
178
|
+
productName?: string;
|
|
179
|
+
insureStartTime?: string;
|
|
180
|
+
insureEndTime?: string;
|
|
181
|
+
insureAmount?: number;
|
|
182
|
+
insurePremium?: number;
|
|
183
|
+
status?: string;
|
|
184
|
+
static names(): {
|
|
185
|
+
[key: string]: string;
|
|
186
|
+
};
|
|
187
|
+
static types(): {
|
|
188
|
+
[key: string]: any;
|
|
189
|
+
};
|
|
190
|
+
constructor(map?: {
|
|
191
|
+
[key: string]: any;
|
|
192
|
+
});
|
|
193
|
+
}
|
|
160
194
|
export declare class StaticData extends $tea.Model {
|
|
161
195
|
moduleName: string;
|
|
162
196
|
moduleDetailList: StaticDataModuleDetail[];
|
|
@@ -232,6 +266,21 @@ export declare class OrderInfo extends $tea.Model {
|
|
|
232
266
|
[key: string]: any;
|
|
233
267
|
});
|
|
234
268
|
}
|
|
269
|
+
export declare class NoticeInfo extends $tea.Model {
|
|
270
|
+
noticeId?: number;
|
|
271
|
+
title?: string;
|
|
272
|
+
noticeCreateTime?: string;
|
|
273
|
+
unread?: boolean;
|
|
274
|
+
static names(): {
|
|
275
|
+
[key: string]: string;
|
|
276
|
+
};
|
|
277
|
+
static types(): {
|
|
278
|
+
[key: string]: any;
|
|
279
|
+
};
|
|
280
|
+
constructor(map?: {
|
|
281
|
+
[key: string]: any;
|
|
282
|
+
});
|
|
283
|
+
}
|
|
235
284
|
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
236
285
|
applicationScene?: string;
|
|
237
286
|
tinyAppId?: string;
|
|
@@ -266,6 +315,26 @@ export declare class AuditInfo extends $tea.Model {
|
|
|
266
315
|
[key: string]: any;
|
|
267
316
|
});
|
|
268
317
|
}
|
|
318
|
+
export declare class ProductInfo extends $tea.Model {
|
|
319
|
+
merchantId?: string;
|
|
320
|
+
productName?: string;
|
|
321
|
+
productId?: string;
|
|
322
|
+
productModel?: string;
|
|
323
|
+
productVersion?: string;
|
|
324
|
+
productPrice?: number;
|
|
325
|
+
mainClass?: string;
|
|
326
|
+
subClass?: string;
|
|
327
|
+
productBrand?: 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
|
+
}
|
|
269
338
|
export declare class OrderGoodsModel extends $tea.Model {
|
|
270
339
|
static names(): {
|
|
271
340
|
[key: string]: string;
|
|
@@ -292,6 +361,25 @@ export declare class LegalInfoUpdate extends $tea.Model {
|
|
|
292
361
|
[key: string]: any;
|
|
293
362
|
});
|
|
294
363
|
}
|
|
364
|
+
export declare class MerchantOrderInfo extends $tea.Model {
|
|
365
|
+
agreementNo?: string;
|
|
366
|
+
orderId?: string;
|
|
367
|
+
orderCreateTime?: string;
|
|
368
|
+
totalRentMoney?: number;
|
|
369
|
+
rentRerm?: number;
|
|
370
|
+
orderStatus?: string;
|
|
371
|
+
userName?: string;
|
|
372
|
+
userPhoneNumber?: 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
|
+
}
|
|
295
383
|
export declare class PromiseInfo extends $tea.Model {
|
|
296
384
|
static names(): {
|
|
297
385
|
[key: string]: string;
|
|
@@ -481,6 +569,7 @@ export declare class RiskModel extends $tea.Model {
|
|
|
481
569
|
delinquencyRate?: string;
|
|
482
570
|
riskAdvice?: string;
|
|
483
571
|
riskRank?: string;
|
|
572
|
+
flowId: string;
|
|
484
573
|
static names(): {
|
|
485
574
|
[key: string]: string;
|
|
486
575
|
};
|
|
@@ -2764,6 +2853,418 @@ export declare class GetInnerFunddividemerchantResponse extends $tea.Model {
|
|
|
2764
2853
|
[key: string]: any;
|
|
2765
2854
|
});
|
|
2766
2855
|
}
|
|
2856
|
+
export declare class QueryInnerInsuresignRequest extends $tea.Model {
|
|
2857
|
+
authToken?: string;
|
|
2858
|
+
productInstanceId?: string;
|
|
2859
|
+
merchantTenantId: string;
|
|
2860
|
+
insureMerchantId: string;
|
|
2861
|
+
static names(): {
|
|
2862
|
+
[key: string]: string;
|
|
2863
|
+
};
|
|
2864
|
+
static types(): {
|
|
2865
|
+
[key: string]: any;
|
|
2866
|
+
};
|
|
2867
|
+
constructor(map?: {
|
|
2868
|
+
[key: string]: any;
|
|
2869
|
+
});
|
|
2870
|
+
}
|
|
2871
|
+
export declare class QueryInnerInsuresignResponse extends $tea.Model {
|
|
2872
|
+
reqMsgId?: string;
|
|
2873
|
+
resultCode?: string;
|
|
2874
|
+
resultMsg?: string;
|
|
2875
|
+
merchantId?: string;
|
|
2876
|
+
insureMerchantId?: string;
|
|
2877
|
+
externalAgreementNo?: string;
|
|
2878
|
+
status?: string;
|
|
2879
|
+
static names(): {
|
|
2880
|
+
[key: string]: string;
|
|
2881
|
+
};
|
|
2882
|
+
static types(): {
|
|
2883
|
+
[key: string]: any;
|
|
2884
|
+
};
|
|
2885
|
+
constructor(map?: {
|
|
2886
|
+
[key: string]: any;
|
|
2887
|
+
});
|
|
2888
|
+
}
|
|
2889
|
+
export declare class CreateInnerInsuresignRequest extends $tea.Model {
|
|
2890
|
+
authToken?: string;
|
|
2891
|
+
productInstanceId?: string;
|
|
2892
|
+
merchantTenantId: string;
|
|
2893
|
+
externalAgreementNo: string;
|
|
2894
|
+
static names(): {
|
|
2895
|
+
[key: string]: string;
|
|
2896
|
+
};
|
|
2897
|
+
static types(): {
|
|
2898
|
+
[key: string]: any;
|
|
2899
|
+
};
|
|
2900
|
+
constructor(map?: {
|
|
2901
|
+
[key: string]: any;
|
|
2902
|
+
});
|
|
2903
|
+
}
|
|
2904
|
+
export declare class CreateInnerInsuresignResponse extends $tea.Model {
|
|
2905
|
+
reqMsgId?: string;
|
|
2906
|
+
resultCode?: string;
|
|
2907
|
+
resultMsg?: string;
|
|
2908
|
+
signStr?: string;
|
|
2909
|
+
static names(): {
|
|
2910
|
+
[key: string]: string;
|
|
2911
|
+
};
|
|
2912
|
+
static types(): {
|
|
2913
|
+
[key: string]: any;
|
|
2914
|
+
};
|
|
2915
|
+
constructor(map?: {
|
|
2916
|
+
[key: string]: any;
|
|
2917
|
+
});
|
|
2918
|
+
}
|
|
2919
|
+
export declare class PagequeryInnerInsureorderRequest extends $tea.Model {
|
|
2920
|
+
authToken?: string;
|
|
2921
|
+
productInstanceId?: string;
|
|
2922
|
+
tenantId: string;
|
|
2923
|
+
orderId?: string;
|
|
2924
|
+
pageInfo: PageQuery;
|
|
2925
|
+
insureMerchantId: string;
|
|
2926
|
+
status?: string;
|
|
2927
|
+
static names(): {
|
|
2928
|
+
[key: string]: string;
|
|
2929
|
+
};
|
|
2930
|
+
static types(): {
|
|
2931
|
+
[key: string]: any;
|
|
2932
|
+
};
|
|
2933
|
+
constructor(map?: {
|
|
2934
|
+
[key: string]: any;
|
|
2935
|
+
});
|
|
2936
|
+
}
|
|
2937
|
+
export declare class PagequeryInnerInsureorderResponse extends $tea.Model {
|
|
2938
|
+
reqMsgId?: string;
|
|
2939
|
+
resultCode?: string;
|
|
2940
|
+
resultMsg?: string;
|
|
2941
|
+
totalSize?: number;
|
|
2942
|
+
inusreOrderInfos?: InsureOrderInfo[];
|
|
2943
|
+
static names(): {
|
|
2944
|
+
[key: string]: string;
|
|
2945
|
+
};
|
|
2946
|
+
static types(): {
|
|
2947
|
+
[key: string]: any;
|
|
2948
|
+
};
|
|
2949
|
+
constructor(map?: {
|
|
2950
|
+
[key: string]: any;
|
|
2951
|
+
});
|
|
2952
|
+
}
|
|
2953
|
+
export declare class PagequeryInnerProductRequest extends $tea.Model {
|
|
2954
|
+
authToken?: string;
|
|
2955
|
+
productInstanceId?: string;
|
|
2956
|
+
tenantId: string;
|
|
2957
|
+
productName?: string;
|
|
2958
|
+
productId?: string;
|
|
2959
|
+
mainClass?: string;
|
|
2960
|
+
subClass?: string;
|
|
2961
|
+
productBrand?: string;
|
|
2962
|
+
pageInfo: PageQuery;
|
|
2963
|
+
static names(): {
|
|
2964
|
+
[key: string]: string;
|
|
2965
|
+
};
|
|
2966
|
+
static types(): {
|
|
2967
|
+
[key: string]: any;
|
|
2968
|
+
};
|
|
2969
|
+
constructor(map?: {
|
|
2970
|
+
[key: string]: any;
|
|
2971
|
+
});
|
|
2972
|
+
}
|
|
2973
|
+
export declare class PagequeryInnerProductResponse extends $tea.Model {
|
|
2974
|
+
reqMsgId?: string;
|
|
2975
|
+
resultCode?: string;
|
|
2976
|
+
resultMsg?: string;
|
|
2977
|
+
total?: number;
|
|
2978
|
+
productInfoList?: ProductInfo[];
|
|
2979
|
+
static names(): {
|
|
2980
|
+
[key: string]: string;
|
|
2981
|
+
};
|
|
2982
|
+
static types(): {
|
|
2983
|
+
[key: string]: any;
|
|
2984
|
+
};
|
|
2985
|
+
constructor(map?: {
|
|
2986
|
+
[key: string]: any;
|
|
2987
|
+
});
|
|
2988
|
+
}
|
|
2989
|
+
export declare class DetailInnerProductRequest extends $tea.Model {
|
|
2990
|
+
authToken?: string;
|
|
2991
|
+
productInstanceId?: string;
|
|
2992
|
+
tenantId: string;
|
|
2993
|
+
merchantId: string;
|
|
2994
|
+
productId: string;
|
|
2995
|
+
productVersion: string;
|
|
2996
|
+
static names(): {
|
|
2997
|
+
[key: string]: string;
|
|
2998
|
+
};
|
|
2999
|
+
static types(): {
|
|
3000
|
+
[key: string]: any;
|
|
3001
|
+
};
|
|
3002
|
+
constructor(map?: {
|
|
3003
|
+
[key: string]: any;
|
|
3004
|
+
});
|
|
3005
|
+
}
|
|
3006
|
+
export declare class DetailInnerProductResponse extends $tea.Model {
|
|
3007
|
+
reqMsgId?: string;
|
|
3008
|
+
resultCode?: string;
|
|
3009
|
+
resultMsg?: string;
|
|
3010
|
+
merchantId?: string;
|
|
3011
|
+
productName?: string;
|
|
3012
|
+
productId?: string;
|
|
3013
|
+
productModel?: string;
|
|
3014
|
+
productVersion?: string;
|
|
3015
|
+
productPrice?: string;
|
|
3016
|
+
mainClass?: string;
|
|
3017
|
+
subClass?: string;
|
|
3018
|
+
productBrand?: string;
|
|
3019
|
+
productUrl?: string;
|
|
3020
|
+
productDetailInfo?: string;
|
|
3021
|
+
static names(): {
|
|
3022
|
+
[key: string]: string;
|
|
3023
|
+
};
|
|
3024
|
+
static types(): {
|
|
3025
|
+
[key: string]: any;
|
|
3026
|
+
};
|
|
3027
|
+
constructor(map?: {
|
|
3028
|
+
[key: string]: any;
|
|
3029
|
+
});
|
|
3030
|
+
}
|
|
3031
|
+
export declare class GetInnerHomepagenoticeRequest extends $tea.Model {
|
|
3032
|
+
authToken?: string;
|
|
3033
|
+
productInstanceId?: string;
|
|
3034
|
+
tenantId: string;
|
|
3035
|
+
static names(): {
|
|
3036
|
+
[key: string]: string;
|
|
3037
|
+
};
|
|
3038
|
+
static types(): {
|
|
3039
|
+
[key: string]: any;
|
|
3040
|
+
};
|
|
3041
|
+
constructor(map?: {
|
|
3042
|
+
[key: string]: any;
|
|
3043
|
+
});
|
|
3044
|
+
}
|
|
3045
|
+
export declare class GetInnerHomepagenoticeResponse extends $tea.Model {
|
|
3046
|
+
reqMsgId?: string;
|
|
3047
|
+
resultCode?: string;
|
|
3048
|
+
resultMsg?: string;
|
|
3049
|
+
noticeId?: number;
|
|
3050
|
+
title?: string;
|
|
3051
|
+
unreadCount?: number;
|
|
3052
|
+
static names(): {
|
|
3053
|
+
[key: string]: string;
|
|
3054
|
+
};
|
|
3055
|
+
static types(): {
|
|
3056
|
+
[key: string]: any;
|
|
3057
|
+
};
|
|
3058
|
+
constructor(map?: {
|
|
3059
|
+
[key: string]: any;
|
|
3060
|
+
});
|
|
3061
|
+
}
|
|
3062
|
+
export declare class PagequeryInnerNoticeRequest extends $tea.Model {
|
|
3063
|
+
authToken?: string;
|
|
3064
|
+
productInstanceId?: string;
|
|
3065
|
+
tenantId: string;
|
|
3066
|
+
pageInfo: PageQuery;
|
|
3067
|
+
static names(): {
|
|
3068
|
+
[key: string]: string;
|
|
3069
|
+
};
|
|
3070
|
+
static types(): {
|
|
3071
|
+
[key: string]: any;
|
|
3072
|
+
};
|
|
3073
|
+
constructor(map?: {
|
|
3074
|
+
[key: string]: any;
|
|
3075
|
+
});
|
|
3076
|
+
}
|
|
3077
|
+
export declare class PagequeryInnerNoticeResponse extends $tea.Model {
|
|
3078
|
+
reqMsgId?: string;
|
|
3079
|
+
resultCode?: string;
|
|
3080
|
+
resultMsg?: string;
|
|
3081
|
+
total?: number;
|
|
3082
|
+
noticeInfoList?: NoticeInfo[];
|
|
3083
|
+
static names(): {
|
|
3084
|
+
[key: string]: string;
|
|
3085
|
+
};
|
|
3086
|
+
static types(): {
|
|
3087
|
+
[key: string]: any;
|
|
3088
|
+
};
|
|
3089
|
+
constructor(map?: {
|
|
3090
|
+
[key: string]: any;
|
|
3091
|
+
});
|
|
3092
|
+
}
|
|
3093
|
+
export declare class DetailInnerNoticeRequest extends $tea.Model {
|
|
3094
|
+
authToken?: string;
|
|
3095
|
+
productInstanceId?: string;
|
|
3096
|
+
tenantId: string;
|
|
3097
|
+
noticeId: number;
|
|
3098
|
+
static names(): {
|
|
3099
|
+
[key: string]: string;
|
|
3100
|
+
};
|
|
3101
|
+
static types(): {
|
|
3102
|
+
[key: string]: any;
|
|
3103
|
+
};
|
|
3104
|
+
constructor(map?: {
|
|
3105
|
+
[key: string]: any;
|
|
3106
|
+
});
|
|
3107
|
+
}
|
|
3108
|
+
export declare class DetailInnerNoticeResponse extends $tea.Model {
|
|
3109
|
+
reqMsgId?: string;
|
|
3110
|
+
resultCode?: string;
|
|
3111
|
+
resultMsg?: string;
|
|
3112
|
+
title?: string;
|
|
3113
|
+
content?: string;
|
|
3114
|
+
noticCreateTime?: string;
|
|
3115
|
+
static names(): {
|
|
3116
|
+
[key: string]: string;
|
|
3117
|
+
};
|
|
3118
|
+
static types(): {
|
|
3119
|
+
[key: string]: any;
|
|
3120
|
+
};
|
|
3121
|
+
constructor(map?: {
|
|
3122
|
+
[key: string]: any;
|
|
3123
|
+
});
|
|
3124
|
+
}
|
|
3125
|
+
export declare class PagequeryInnerOrderRequest extends $tea.Model {
|
|
3126
|
+
authToken?: string;
|
|
3127
|
+
productInstanceId?: string;
|
|
3128
|
+
tenantId: string;
|
|
3129
|
+
orderId?: string;
|
|
3130
|
+
agreementNo?: string;
|
|
3131
|
+
orderCreateTimeStart?: string;
|
|
3132
|
+
orderCreateTimeEnd?: string;
|
|
3133
|
+
orderStatus?: string;
|
|
3134
|
+
pageInfo: PageQuery;
|
|
3135
|
+
static names(): {
|
|
3136
|
+
[key: string]: string;
|
|
3137
|
+
};
|
|
3138
|
+
static types(): {
|
|
3139
|
+
[key: string]: any;
|
|
3140
|
+
};
|
|
3141
|
+
constructor(map?: {
|
|
3142
|
+
[key: string]: any;
|
|
3143
|
+
});
|
|
3144
|
+
}
|
|
3145
|
+
export declare class PagequeryInnerOrderResponse extends $tea.Model {
|
|
3146
|
+
reqMsgId?: string;
|
|
3147
|
+
resultCode?: string;
|
|
3148
|
+
resultMsg?: string;
|
|
3149
|
+
orderInfoList?: MerchantOrderInfo[];
|
|
3150
|
+
total?: number;
|
|
3151
|
+
static names(): {
|
|
3152
|
+
[key: string]: string;
|
|
3153
|
+
};
|
|
3154
|
+
static types(): {
|
|
3155
|
+
[key: string]: any;
|
|
3156
|
+
};
|
|
3157
|
+
constructor(map?: {
|
|
3158
|
+
[key: string]: any;
|
|
3159
|
+
});
|
|
3160
|
+
}
|
|
3161
|
+
export declare class CreateInsureRequest extends $tea.Model {
|
|
3162
|
+
authToken?: string;
|
|
3163
|
+
productInstanceId?: string;
|
|
3164
|
+
orderId: string;
|
|
3165
|
+
riskFlowId: string;
|
|
3166
|
+
insureCompanyType: string;
|
|
3167
|
+
insureProductType: string;
|
|
3168
|
+
productInfoList: InsureProductInfo[];
|
|
3169
|
+
deliveryType: string;
|
|
3170
|
+
contactName: string;
|
|
3171
|
+
contactMobile: string;
|
|
3172
|
+
logisticsNumber: string;
|
|
3173
|
+
facevrfFlowId?: string;
|
|
3174
|
+
tradeTime?: string;
|
|
3175
|
+
static names(): {
|
|
3176
|
+
[key: string]: string;
|
|
3177
|
+
};
|
|
3178
|
+
static types(): {
|
|
3179
|
+
[key: string]: any;
|
|
3180
|
+
};
|
|
3181
|
+
constructor(map?: {
|
|
3182
|
+
[key: string]: any;
|
|
3183
|
+
});
|
|
3184
|
+
}
|
|
3185
|
+
export declare class CreateInsureResponse extends $tea.Model {
|
|
3186
|
+
reqMsgId?: string;
|
|
3187
|
+
resultCode?: string;
|
|
3188
|
+
resultMsg?: string;
|
|
3189
|
+
result?: boolean;
|
|
3190
|
+
msg?: string;
|
|
3191
|
+
static names(): {
|
|
3192
|
+
[key: string]: string;
|
|
3193
|
+
};
|
|
3194
|
+
static types(): {
|
|
3195
|
+
[key: string]: any;
|
|
3196
|
+
};
|
|
3197
|
+
constructor(map?: {
|
|
3198
|
+
[key: string]: any;
|
|
3199
|
+
});
|
|
3200
|
+
}
|
|
3201
|
+
export declare class QueryInsureRequest extends $tea.Model {
|
|
3202
|
+
authToken?: string;
|
|
3203
|
+
productInstanceId?: string;
|
|
3204
|
+
orderId: string;
|
|
3205
|
+
insureProductType: string;
|
|
3206
|
+
insureCompanyType: string;
|
|
3207
|
+
static names(): {
|
|
3208
|
+
[key: string]: string;
|
|
3209
|
+
};
|
|
3210
|
+
static types(): {
|
|
3211
|
+
[key: string]: any;
|
|
3212
|
+
};
|
|
3213
|
+
constructor(map?: {
|
|
3214
|
+
[key: string]: any;
|
|
3215
|
+
});
|
|
3216
|
+
}
|
|
3217
|
+
export declare class QueryInsureResponse extends $tea.Model {
|
|
3218
|
+
reqMsgId?: string;
|
|
3219
|
+
resultCode?: string;
|
|
3220
|
+
resultMsg?: string;
|
|
3221
|
+
orderId?: string;
|
|
3222
|
+
insureId?: string;
|
|
3223
|
+
status?: string;
|
|
3224
|
+
productName?: string;
|
|
3225
|
+
insureStartTime?: string;
|
|
3226
|
+
insureEndTime?: string;
|
|
3227
|
+
insureAmount?: string;
|
|
3228
|
+
insurePremium?: string;
|
|
3229
|
+
static names(): {
|
|
3230
|
+
[key: string]: string;
|
|
3231
|
+
};
|
|
3232
|
+
static types(): {
|
|
3233
|
+
[key: string]: any;
|
|
3234
|
+
};
|
|
3235
|
+
constructor(map?: {
|
|
3236
|
+
[key: string]: any;
|
|
3237
|
+
});
|
|
3238
|
+
}
|
|
3239
|
+
export declare class RetryInsurePayRequest extends $tea.Model {
|
|
3240
|
+
authToken?: string;
|
|
3241
|
+
productInstanceId?: string;
|
|
3242
|
+
orderId: string;
|
|
3243
|
+
insureProductType: string;
|
|
3244
|
+
static names(): {
|
|
3245
|
+
[key: string]: string;
|
|
3246
|
+
};
|
|
3247
|
+
static types(): {
|
|
3248
|
+
[key: string]: any;
|
|
3249
|
+
};
|
|
3250
|
+
constructor(map?: {
|
|
3251
|
+
[key: string]: any;
|
|
3252
|
+
});
|
|
3253
|
+
}
|
|
3254
|
+
export declare class RetryInsurePayResponse extends $tea.Model {
|
|
3255
|
+
reqMsgId?: string;
|
|
3256
|
+
resultCode?: string;
|
|
3257
|
+
resultMsg?: string;
|
|
3258
|
+
static names(): {
|
|
3259
|
+
[key: string]: string;
|
|
3260
|
+
};
|
|
3261
|
+
static types(): {
|
|
3262
|
+
[key: string]: any;
|
|
3263
|
+
};
|
|
3264
|
+
constructor(map?: {
|
|
3265
|
+
[key: string]: any;
|
|
3266
|
+
});
|
|
3267
|
+
}
|
|
2767
3268
|
export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
2768
3269
|
authToken?: string;
|
|
2769
3270
|
productInstanceId?: string;
|
|
@@ -3774,6 +4275,7 @@ export declare class CreateWithholdSignResponse extends $tea.Model {
|
|
|
3774
4275
|
resultCode?: string;
|
|
3775
4276
|
resultMsg?: string;
|
|
3776
4277
|
signStr?: string;
|
|
4278
|
+
signStrType?: string;
|
|
3777
4279
|
static names(): {
|
|
3778
4280
|
[key: string]: string;
|
|
3779
4281
|
};
|
|
@@ -5054,6 +5556,150 @@ export default class Client {
|
|
|
5054
5556
|
getInnerFunddividemerchantEx(request: GetInnerFunddividemerchantRequest, headers: {
|
|
5055
5557
|
[key: string]: string;
|
|
5056
5558
|
}, runtime: $Util.RuntimeOptions): Promise<GetInnerFunddividemerchantResponse>;
|
|
5559
|
+
/**
|
|
5560
|
+
* Description: 查询商户和保司协议签署信息
|
|
5561
|
+
* Summary: 查询商户和保司协议签署信息
|
|
5562
|
+
*/
|
|
5563
|
+
queryInnerInsuresign(request: QueryInnerInsuresignRequest): Promise<QueryInnerInsuresignResponse>;
|
|
5564
|
+
/**
|
|
5565
|
+
* Description: 查询商户和保司协议签署信息
|
|
5566
|
+
* Summary: 查询商户和保司协议签署信息
|
|
5567
|
+
*/
|
|
5568
|
+
queryInnerInsuresignEx(request: QueryInnerInsuresignRequest, headers: {
|
|
5569
|
+
[key: string]: string;
|
|
5570
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerInsuresignResponse>;
|
|
5571
|
+
/**
|
|
5572
|
+
* Description: 生成商户和保司签约链接
|
|
5573
|
+
* Summary: 生成商户和保司签约链接
|
|
5574
|
+
*/
|
|
5575
|
+
createInnerInsuresign(request: CreateInnerInsuresignRequest): Promise<CreateInnerInsuresignResponse>;
|
|
5576
|
+
/**
|
|
5577
|
+
* Description: 生成商户和保司签约链接
|
|
5578
|
+
* Summary: 生成商户和保司签约链接
|
|
5579
|
+
*/
|
|
5580
|
+
createInnerInsuresignEx(request: CreateInnerInsuresignRequest, headers: {
|
|
5581
|
+
[key: string]: string;
|
|
5582
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerInsuresignResponse>;
|
|
5583
|
+
/**
|
|
5584
|
+
* Description: 查询保单信息
|
|
5585
|
+
* Summary: 查询保单信息
|
|
5586
|
+
*/
|
|
5587
|
+
pagequeryInnerInsureorder(request: PagequeryInnerInsureorderRequest): Promise<PagequeryInnerInsureorderResponse>;
|
|
5588
|
+
/**
|
|
5589
|
+
* Description: 查询保单信息
|
|
5590
|
+
* Summary: 查询保单信息
|
|
5591
|
+
*/
|
|
5592
|
+
pagequeryInnerInsureorderEx(request: PagequeryInnerInsureorderRequest, headers: {
|
|
5593
|
+
[key: string]: string;
|
|
5594
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerInsureorderResponse>;
|
|
5595
|
+
/**
|
|
5596
|
+
* Description: 商户控制台商品列表
|
|
5597
|
+
* Summary: 商品列表
|
|
5598
|
+
*/
|
|
5599
|
+
pagequeryInnerProduct(request: PagequeryInnerProductRequest): Promise<PagequeryInnerProductResponse>;
|
|
5600
|
+
/**
|
|
5601
|
+
* Description: 商户控制台商品列表
|
|
5602
|
+
* Summary: 商品列表
|
|
5603
|
+
*/
|
|
5604
|
+
pagequeryInnerProductEx(request: PagequeryInnerProductRequest, headers: {
|
|
5605
|
+
[key: string]: string;
|
|
5606
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerProductResponse>;
|
|
5607
|
+
/**
|
|
5608
|
+
* Description: 商户控制台商品详情
|
|
5609
|
+
* Summary: 商品详情
|
|
5610
|
+
*/
|
|
5611
|
+
detailInnerProduct(request: DetailInnerProductRequest): Promise<DetailInnerProductResponse>;
|
|
5612
|
+
/**
|
|
5613
|
+
* Description: 商户控制台商品详情
|
|
5614
|
+
* Summary: 商品详情
|
|
5615
|
+
*/
|
|
5616
|
+
detailInnerProductEx(request: DetailInnerProductRequest, headers: {
|
|
5617
|
+
[key: string]: string;
|
|
5618
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerProductResponse>;
|
|
5619
|
+
/**
|
|
5620
|
+
* Description: 商户控制台首页通知栏
|
|
5621
|
+
* Summary: 首页通知栏
|
|
5622
|
+
*/
|
|
5623
|
+
getInnerHomepagenotice(request: GetInnerHomepagenoticeRequest): Promise<GetInnerHomepagenoticeResponse>;
|
|
5624
|
+
/**
|
|
5625
|
+
* Description: 商户控制台首页通知栏
|
|
5626
|
+
* Summary: 首页通知栏
|
|
5627
|
+
*/
|
|
5628
|
+
getInnerHomepagenoticeEx(request: GetInnerHomepagenoticeRequest, headers: {
|
|
5629
|
+
[key: string]: string;
|
|
5630
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerHomepagenoticeResponse>;
|
|
5631
|
+
/**
|
|
5632
|
+
* Description: 商户控制台通知列表
|
|
5633
|
+
* Summary: 通知列表
|
|
5634
|
+
*/
|
|
5635
|
+
pagequeryInnerNotice(request: PagequeryInnerNoticeRequest): Promise<PagequeryInnerNoticeResponse>;
|
|
5636
|
+
/**
|
|
5637
|
+
* Description: 商户控制台通知列表
|
|
5638
|
+
* Summary: 通知列表
|
|
5639
|
+
*/
|
|
5640
|
+
pagequeryInnerNoticeEx(request: PagequeryInnerNoticeRequest, headers: {
|
|
5641
|
+
[key: string]: string;
|
|
5642
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerNoticeResponse>;
|
|
5643
|
+
/**
|
|
5644
|
+
* Description: 商户控制台通知详情
|
|
5645
|
+
* Summary: 通知详情
|
|
5646
|
+
*/
|
|
5647
|
+
detailInnerNotice(request: DetailInnerNoticeRequest): Promise<DetailInnerNoticeResponse>;
|
|
5648
|
+
/**
|
|
5649
|
+
* Description: 商户控制台通知详情
|
|
5650
|
+
* Summary: 通知详情
|
|
5651
|
+
*/
|
|
5652
|
+
detailInnerNoticeEx(request: DetailInnerNoticeRequest, headers: {
|
|
5653
|
+
[key: string]: string;
|
|
5654
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerNoticeResponse>;
|
|
5655
|
+
/**
|
|
5656
|
+
* Description: 商户控制台订单列表
|
|
5657
|
+
* Summary: 订单列表
|
|
5658
|
+
*/
|
|
5659
|
+
pagequeryInnerOrder(request: PagequeryInnerOrderRequest): Promise<PagequeryInnerOrderResponse>;
|
|
5660
|
+
/**
|
|
5661
|
+
* Description: 商户控制台订单列表
|
|
5662
|
+
* Summary: 订单列表
|
|
5663
|
+
*/
|
|
5664
|
+
pagequeryInnerOrderEx(request: PagequeryInnerOrderRequest, headers: {
|
|
5665
|
+
[key: string]: string;
|
|
5666
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerOrderResponse>;
|
|
5667
|
+
/**
|
|
5668
|
+
* Description: 一键投保
|
|
5669
|
+
* Summary: 投保
|
|
5670
|
+
*/
|
|
5671
|
+
createInsure(request: CreateInsureRequest): Promise<CreateInsureResponse>;
|
|
5672
|
+
/**
|
|
5673
|
+
* Description: 一键投保
|
|
5674
|
+
* Summary: 投保
|
|
5675
|
+
*/
|
|
5676
|
+
createInsureEx(request: CreateInsureRequest, headers: {
|
|
5677
|
+
[key: string]: string;
|
|
5678
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInsureResponse>;
|
|
5679
|
+
/**
|
|
5680
|
+
* Description: 保单查询
|
|
5681
|
+
* Summary: 保单查询
|
|
5682
|
+
*/
|
|
5683
|
+
queryInsure(request: QueryInsureRequest): Promise<QueryInsureResponse>;
|
|
5684
|
+
/**
|
|
5685
|
+
* Description: 保单查询
|
|
5686
|
+
* Summary: 保单查询
|
|
5687
|
+
*/
|
|
5688
|
+
queryInsureEx(request: QueryInsureRequest, headers: {
|
|
5689
|
+
[key: string]: string;
|
|
5690
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInsureResponse>;
|
|
5691
|
+
/**
|
|
5692
|
+
* Description: 保险代扣重试
|
|
5693
|
+
* Summary: 保险代扣重试
|
|
5694
|
+
*/
|
|
5695
|
+
retryInsurePay(request: RetryInsurePayRequest): Promise<RetryInsurePayResponse>;
|
|
5696
|
+
/**
|
|
5697
|
+
* Description: 保险代扣重试
|
|
5698
|
+
* Summary: 保险代扣重试
|
|
5699
|
+
*/
|
|
5700
|
+
retryInsurePayEx(request: RetryInsurePayRequest, headers: {
|
|
5701
|
+
[key: string]: string;
|
|
5702
|
+
}, runtime: $Util.RuntimeOptions): Promise<RetryInsurePayResponse>;
|
|
5057
5703
|
/**
|
|
5058
5704
|
* Description: 商户入驻
|
|
5059
5705
|
* Summary: 商户入驻
|