@antchain/riskplus 1.23.9 → 1.24.0
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 +293 -16
- package/dist/client.js +491 -35
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +861 -174
package/src/client.ts
CHANGED
|
@@ -153,6 +153,51 @@ export class OutParams extends $tea.Model {
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
// 安全场景参数
|
|
157
|
+
export class SecurityScene extends $tea.Model {
|
|
158
|
+
// 接入渠道
|
|
159
|
+
accessChannel?: string;
|
|
160
|
+
// 事件信息
|
|
161
|
+
ctuParams?: string;
|
|
162
|
+
// 产品名称
|
|
163
|
+
productName?: string;
|
|
164
|
+
// 产品节点
|
|
165
|
+
productNode?: string;
|
|
166
|
+
// 扩展参数
|
|
167
|
+
securitySceneParams?: string;
|
|
168
|
+
// 系统名称
|
|
169
|
+
systemName?: string;
|
|
170
|
+
// 总金额
|
|
171
|
+
totalFee?: string;
|
|
172
|
+
static names(): { [key: string]: string } {
|
|
173
|
+
return {
|
|
174
|
+
accessChannel: 'access_channel',
|
|
175
|
+
ctuParams: 'ctu_params',
|
|
176
|
+
productName: 'product_name',
|
|
177
|
+
productNode: 'product_node',
|
|
178
|
+
securitySceneParams: 'security_scene_params',
|
|
179
|
+
systemName: 'system_name',
|
|
180
|
+
totalFee: 'total_fee',
|
|
181
|
+
};
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
static types(): { [key: string]: any } {
|
|
185
|
+
return {
|
|
186
|
+
accessChannel: 'string',
|
|
187
|
+
ctuParams: 'string',
|
|
188
|
+
productName: 'string',
|
|
189
|
+
productNode: 'string',
|
|
190
|
+
securitySceneParams: 'string',
|
|
191
|
+
systemName: 'string',
|
|
192
|
+
totalFee: 'string',
|
|
193
|
+
};
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
constructor(map?: { [key: string]: any }) {
|
|
197
|
+
super(map);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
156
201
|
// 天枢系统Contact结构体
|
|
157
202
|
export class Contact extends $tea.Model {
|
|
158
203
|
// 联系人类型
|
|
@@ -268,6 +313,63 @@ export class BackflowEventRecordProperty extends $tea.Model {
|
|
|
268
313
|
}
|
|
269
314
|
}
|
|
270
315
|
|
|
316
|
+
// 月供
|
|
317
|
+
export class TermDetail extends $tea.Model {
|
|
318
|
+
// 期数
|
|
319
|
+
term: string;
|
|
320
|
+
// 期供金额
|
|
321
|
+
termAmount: number;
|
|
322
|
+
// 当期本金
|
|
323
|
+
termPrincipal: number;
|
|
324
|
+
// 当期利息(分期产生的利息/手续费)
|
|
325
|
+
termFee: number;
|
|
326
|
+
// 应还款日期
|
|
327
|
+
settleDate: string;
|
|
328
|
+
// 罚息
|
|
329
|
+
penalty?: number;
|
|
330
|
+
// 担保费
|
|
331
|
+
guaranteeFee?: number;
|
|
332
|
+
// 违约金
|
|
333
|
+
liquidatedDamages?: number;
|
|
334
|
+
// 服务费
|
|
335
|
+
serverFee?: number;
|
|
336
|
+
// 减免金额
|
|
337
|
+
deductAmount?: number;
|
|
338
|
+
static names(): { [key: string]: string } {
|
|
339
|
+
return {
|
|
340
|
+
term: 'term',
|
|
341
|
+
termAmount: 'term_amount',
|
|
342
|
+
termPrincipal: 'term_principal',
|
|
343
|
+
termFee: 'term_fee',
|
|
344
|
+
settleDate: 'settle_date',
|
|
345
|
+
penalty: 'penalty',
|
|
346
|
+
guaranteeFee: 'guarantee_fee',
|
|
347
|
+
liquidatedDamages: 'liquidated_damages',
|
|
348
|
+
serverFee: 'server_fee',
|
|
349
|
+
deductAmount: 'deduct_amount',
|
|
350
|
+
};
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
static types(): { [key: string]: any } {
|
|
354
|
+
return {
|
|
355
|
+
term: 'string',
|
|
356
|
+
termAmount: 'number',
|
|
357
|
+
termPrincipal: 'number',
|
|
358
|
+
termFee: 'number',
|
|
359
|
+
settleDate: 'string',
|
|
360
|
+
penalty: 'number',
|
|
361
|
+
guaranteeFee: 'number',
|
|
362
|
+
liquidatedDamages: 'number',
|
|
363
|
+
serverFee: 'number',
|
|
364
|
+
deductAmount: 'number',
|
|
365
|
+
};
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
constructor(map?: { [key: string]: any }) {
|
|
369
|
+
super(map);
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
271
373
|
// 营销盾批量查询单条结果
|
|
272
374
|
export class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
273
375
|
// 用户凭证
|
|
@@ -745,43 +847,23 @@ export class RuleDetail extends $tea.Model {
|
|
|
745
847
|
}
|
|
746
848
|
}
|
|
747
849
|
|
|
748
|
-
//
|
|
749
|
-
export class
|
|
750
|
-
//
|
|
751
|
-
|
|
752
|
-
//
|
|
753
|
-
|
|
754
|
-
// 产品名称
|
|
755
|
-
productName?: string;
|
|
756
|
-
// 产品节点
|
|
757
|
-
productNode?: string;
|
|
758
|
-
// 扩展参数
|
|
759
|
-
securitySceneParams?: string;
|
|
760
|
-
// 系统名称
|
|
761
|
-
systemName?: string;
|
|
762
|
-
// 总金额
|
|
763
|
-
totalFee?: string;
|
|
850
|
+
// 补充信息
|
|
851
|
+
export class Additional extends $tea.Model {
|
|
852
|
+
// 骑手标识;1-骑手
|
|
853
|
+
deliveryman?: string;
|
|
854
|
+
// 关键词
|
|
855
|
+
keyWord?: string;
|
|
764
856
|
static names(): { [key: string]: string } {
|
|
765
857
|
return {
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
productName: 'product_name',
|
|
769
|
-
productNode: 'product_node',
|
|
770
|
-
securitySceneParams: 'security_scene_params',
|
|
771
|
-
systemName: 'system_name',
|
|
772
|
-
totalFee: 'total_fee',
|
|
858
|
+
deliveryman: 'deliveryman',
|
|
859
|
+
keyWord: 'key_word',
|
|
773
860
|
};
|
|
774
861
|
}
|
|
775
862
|
|
|
776
863
|
static types(): { [key: string]: any } {
|
|
777
864
|
return {
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
productName: 'string',
|
|
781
|
-
productNode: 'string',
|
|
782
|
-
securitySceneParams: 'string',
|
|
783
|
-
systemName: 'string',
|
|
784
|
-
totalFee: 'string',
|
|
865
|
+
deliveryman: 'string',
|
|
866
|
+
keyWord: 'string',
|
|
785
867
|
};
|
|
786
868
|
}
|
|
787
869
|
|
|
@@ -1076,6 +1158,27 @@ export class RtopCompanyRiskFactor extends $tea.Model {
|
|
|
1076
1158
|
}
|
|
1077
1159
|
}
|
|
1078
1160
|
|
|
1161
|
+
// 测试
|
|
1162
|
+
export class TestStruct extends $tea.Model {
|
|
1163
|
+
// 测试
|
|
1164
|
+
testField: SecurityScene[];
|
|
1165
|
+
static names(): { [key: string]: string } {
|
|
1166
|
+
return {
|
|
1167
|
+
testField: 'test_field',
|
|
1168
|
+
};
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
static types(): { [key: string]: any } {
|
|
1172
|
+
return {
|
|
1173
|
+
testField: { 'type': 'array', 'itemType': SecurityScene },
|
|
1174
|
+
};
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
constructor(map?: { [key: string]: any }) {
|
|
1178
|
+
super(map);
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1079
1182
|
// 天枢系统专用Material结构体
|
|
1080
1183
|
export class Material extends $tea.Model {
|
|
1081
1184
|
// 资料类型0-风控报告1-合同2-图片3-附件
|
|
@@ -3050,6 +3153,39 @@ export class RiskStormLabelResp extends $tea.Model {
|
|
|
3050
3153
|
}
|
|
3051
3154
|
}
|
|
3052
3155
|
|
|
3156
|
+
// 补充材料
|
|
3157
|
+
export class SupplementFile extends $tea.Model {
|
|
3158
|
+
// 材料类型:
|
|
3159
|
+
// 301-行驶证正本
|
|
3160
|
+
// 302-行驶证副本
|
|
3161
|
+
// 303-车辆产证(摩托车二手车)
|
|
3162
|
+
//
|
|
3163
|
+
fileType: string;
|
|
3164
|
+
// 材料url
|
|
3165
|
+
fileUrl: string;
|
|
3166
|
+
// 材料名称/描述
|
|
3167
|
+
fileDesc: string;
|
|
3168
|
+
static names(): { [key: string]: string } {
|
|
3169
|
+
return {
|
|
3170
|
+
fileType: 'file_type',
|
|
3171
|
+
fileUrl: 'file_url',
|
|
3172
|
+
fileDesc: 'file_desc',
|
|
3173
|
+
};
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
static types(): { [key: string]: any } {
|
|
3177
|
+
return {
|
|
3178
|
+
fileType: 'string',
|
|
3179
|
+
fileUrl: 'string',
|
|
3180
|
+
fileDesc: 'string',
|
|
3181
|
+
};
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
constructor(map?: { [key: string]: any }) {
|
|
3185
|
+
super(map);
|
|
3186
|
+
}
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3053
3189
|
// 芝麻四要素认证接口
|
|
3054
3190
|
export class ZhimaIdentifyResp extends $tea.Model {
|
|
3055
3191
|
// 唯一ID,接口正常的话有此字段
|
|
@@ -3757,6 +3893,75 @@ export class CustomerBankCardInfo extends $tea.Model {
|
|
|
3757
3893
|
}
|
|
3758
3894
|
}
|
|
3759
3895
|
|
|
3896
|
+
// 期数费用
|
|
3897
|
+
export class InstallmentTrial extends $tea.Model {
|
|
3898
|
+
// 总期数
|
|
3899
|
+
totalPeriod: string;
|
|
3900
|
+
// 分期应还总金额
|
|
3901
|
+
totalAmount: number;
|
|
3902
|
+
// 总利息(分期产生的利息/手续费)
|
|
3903
|
+
totalFee: number;
|
|
3904
|
+
// 期费率,精确到小数点后四位0.1250,表示年利率为12.5%
|
|
3905
|
+
feeRate: number;
|
|
3906
|
+
// 年利率,精确到小数点后四位0.1250,表示年利率为12.5%
|
|
3907
|
+
yearRate: number;
|
|
3908
|
+
// 月供列表
|
|
3909
|
+
termDetailList: TermDetail[];
|
|
3910
|
+
// 是否最优标识
|
|
3911
|
+
optimal?: boolean;
|
|
3912
|
+
// 总罚息
|
|
3913
|
+
totalPenalty?: number;
|
|
3914
|
+
// 总担保费
|
|
3915
|
+
totalGuaranteeFee?: number;
|
|
3916
|
+
// 总违约金
|
|
3917
|
+
totalLiquidatedDamages?: number;
|
|
3918
|
+
// 总服务费
|
|
3919
|
+
totalServerFee?: number;
|
|
3920
|
+
// 费率折扣,0.95:九五折;0:免息;1/null:不打折
|
|
3921
|
+
discount?: number;
|
|
3922
|
+
// 总减免金额
|
|
3923
|
+
totalDeductAmount?: number;
|
|
3924
|
+
static names(): { [key: string]: string } {
|
|
3925
|
+
return {
|
|
3926
|
+
totalPeriod: 'total_period',
|
|
3927
|
+
totalAmount: 'total_amount',
|
|
3928
|
+
totalFee: 'total_fee',
|
|
3929
|
+
feeRate: 'fee_rate',
|
|
3930
|
+
yearRate: 'year_rate',
|
|
3931
|
+
termDetailList: 'term_detail_list',
|
|
3932
|
+
optimal: 'optimal',
|
|
3933
|
+
totalPenalty: 'total_penalty',
|
|
3934
|
+
totalGuaranteeFee: 'total_guarantee_fee',
|
|
3935
|
+
totalLiquidatedDamages: 'total_liquidated_damages',
|
|
3936
|
+
totalServerFee: 'total_server_fee',
|
|
3937
|
+
discount: 'discount',
|
|
3938
|
+
totalDeductAmount: 'total_deduct_amount',
|
|
3939
|
+
};
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
static types(): { [key: string]: any } {
|
|
3943
|
+
return {
|
|
3944
|
+
totalPeriod: 'string',
|
|
3945
|
+
totalAmount: 'number',
|
|
3946
|
+
totalFee: 'number',
|
|
3947
|
+
feeRate: 'number',
|
|
3948
|
+
yearRate: 'number',
|
|
3949
|
+
termDetailList: { 'type': 'array', 'itemType': TermDetail },
|
|
3950
|
+
optimal: 'boolean',
|
|
3951
|
+
totalPenalty: 'number',
|
|
3952
|
+
totalGuaranteeFee: 'number',
|
|
3953
|
+
totalLiquidatedDamages: 'number',
|
|
3954
|
+
totalServerFee: 'number',
|
|
3955
|
+
discount: 'number',
|
|
3956
|
+
totalDeductAmount: 'number',
|
|
3957
|
+
};
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
constructor(map?: { [key: string]: any }) {
|
|
3961
|
+
super(map);
|
|
3962
|
+
}
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3760
3965
|
// 营销盾离线圈客执行批次信息
|
|
3761
3966
|
export class UmktOfflineDecisionTaskExecBatchInfo extends $tea.Model {
|
|
3762
3967
|
// 执行批次
|
|
@@ -4038,6 +4243,51 @@ export class DefinInnerChannelNotifyResult extends $tea.Model {
|
|
|
4038
4243
|
}
|
|
4039
4244
|
}
|
|
4040
4245
|
|
|
4246
|
+
// 门店信息
|
|
4247
|
+
export class StoreInfo extends $tea.Model {
|
|
4248
|
+
// 门店ID
|
|
4249
|
+
storeId: string;
|
|
4250
|
+
// 蚂蚁数科入驻账号
|
|
4251
|
+
loginTenant: string;
|
|
4252
|
+
// 收款账号
|
|
4253
|
+
payeeBankCard: string;
|
|
4254
|
+
// 收款人
|
|
4255
|
+
payeeName: string;
|
|
4256
|
+
// 门店名称
|
|
4257
|
+
storeName: string;
|
|
4258
|
+
// 销售ID
|
|
4259
|
+
salesman?: string;
|
|
4260
|
+
// 销售设备编号
|
|
4261
|
+
device?: string;
|
|
4262
|
+
static names(): { [key: string]: string } {
|
|
4263
|
+
return {
|
|
4264
|
+
storeId: 'store_id',
|
|
4265
|
+
loginTenant: 'login_tenant',
|
|
4266
|
+
payeeBankCard: 'payee_bank_card',
|
|
4267
|
+
payeeName: 'payee_name',
|
|
4268
|
+
storeName: 'store_name',
|
|
4269
|
+
salesman: 'salesman',
|
|
4270
|
+
device: 'device',
|
|
4271
|
+
};
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
static types(): { [key: string]: any } {
|
|
4275
|
+
return {
|
|
4276
|
+
storeId: 'string',
|
|
4277
|
+
loginTenant: 'string',
|
|
4278
|
+
payeeBankCard: 'string',
|
|
4279
|
+
payeeName: 'string',
|
|
4280
|
+
storeName: 'string',
|
|
4281
|
+
salesman: 'string',
|
|
4282
|
+
device: 'string',
|
|
4283
|
+
};
|
|
4284
|
+
}
|
|
4285
|
+
|
|
4286
|
+
constructor(map?: { [key: string]: any }) {
|
|
4287
|
+
super(map);
|
|
4288
|
+
}
|
|
4289
|
+
}
|
|
4290
|
+
|
|
4041
4291
|
// 批量决策单主体查询结果
|
|
4042
4292
|
export class BatchQueryResult extends $tea.Model {
|
|
4043
4293
|
// 查询主体
|
|
@@ -4546,6 +4796,87 @@ export class CustomRelationStatus extends $tea.Model {
|
|
|
4546
4796
|
}
|
|
4547
4797
|
}
|
|
4548
4798
|
|
|
4799
|
+
// 订单车辆信息
|
|
4800
|
+
export class VehicleInfo extends $tea.Model {
|
|
4801
|
+
// 流量方购物订单号
|
|
4802
|
+
bizOrderNo?: string;
|
|
4803
|
+
// 订单[分期]金额,单位:元
|
|
4804
|
+
tradeAmount?: string;
|
|
4805
|
+
// 首付金额,单位:元
|
|
4806
|
+
downPayment?: string;
|
|
4807
|
+
// 新车指导价,单位:元
|
|
4808
|
+
guidePrice?: string;
|
|
4809
|
+
// 售价,单位:元
|
|
4810
|
+
sellingPrice?: string;
|
|
4811
|
+
// 车驾号/SN码,车辆唯一标识
|
|
4812
|
+
sn?: string;
|
|
4813
|
+
// SKU ID
|
|
4814
|
+
sku?: string;
|
|
4815
|
+
// 品牌
|
|
4816
|
+
brand?: string;
|
|
4817
|
+
// 车型
|
|
4818
|
+
model?: string;
|
|
4819
|
+
// 年款,yyyy
|
|
4820
|
+
modelYear?: string;
|
|
4821
|
+
// 颜色
|
|
4822
|
+
color?: string;
|
|
4823
|
+
// 续航里程
|
|
4824
|
+
range?: string;
|
|
4825
|
+
// 配件信息
|
|
4826
|
+
parts?: string;
|
|
4827
|
+
// 公里数,Odometer
|
|
4828
|
+
odo?: string;
|
|
4829
|
+
// 首次上牌时间
|
|
4830
|
+
firstRegDate?: string;
|
|
4831
|
+
// 过户次数,Ownership Transfer Records
|
|
4832
|
+
otr?: string;
|
|
4833
|
+
static names(): { [key: string]: string } {
|
|
4834
|
+
return {
|
|
4835
|
+
bizOrderNo: 'biz_order_no',
|
|
4836
|
+
tradeAmount: 'trade_amount',
|
|
4837
|
+
downPayment: 'down_payment',
|
|
4838
|
+
guidePrice: 'guide_price',
|
|
4839
|
+
sellingPrice: 'selling_price',
|
|
4840
|
+
sn: 'sn',
|
|
4841
|
+
sku: 'sku',
|
|
4842
|
+
brand: 'brand',
|
|
4843
|
+
model: 'model',
|
|
4844
|
+
modelYear: 'model_year',
|
|
4845
|
+
color: 'color',
|
|
4846
|
+
range: 'range',
|
|
4847
|
+
parts: 'parts',
|
|
4848
|
+
odo: 'odo',
|
|
4849
|
+
firstRegDate: 'first_reg_date',
|
|
4850
|
+
otr: 'otr',
|
|
4851
|
+
};
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
static types(): { [key: string]: any } {
|
|
4855
|
+
return {
|
|
4856
|
+
bizOrderNo: 'string',
|
|
4857
|
+
tradeAmount: 'string',
|
|
4858
|
+
downPayment: 'string',
|
|
4859
|
+
guidePrice: 'string',
|
|
4860
|
+
sellingPrice: 'string',
|
|
4861
|
+
sn: 'string',
|
|
4862
|
+
sku: 'string',
|
|
4863
|
+
brand: 'string',
|
|
4864
|
+
model: 'string',
|
|
4865
|
+
modelYear: 'string',
|
|
4866
|
+
color: 'string',
|
|
4867
|
+
range: 'string',
|
|
4868
|
+
parts: 'string',
|
|
4869
|
+
odo: 'string',
|
|
4870
|
+
firstRegDate: 'string',
|
|
4871
|
+
otr: 'string',
|
|
4872
|
+
};
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4875
|
+
constructor(map?: { [key: string]: any }) {
|
|
4876
|
+
super(map);
|
|
4877
|
+
}
|
|
4878
|
+
}
|
|
4879
|
+
|
|
4549
4880
|
// 企管盾票税决策服务
|
|
4550
4881
|
export class RdaasTaxDecsionService extends $tea.Model {
|
|
4551
4882
|
// 决策服务id
|
|
@@ -7524,21 +7855,41 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7524
7855
|
// OAuth模式下的授权token
|
|
7525
7856
|
authToken?: string;
|
|
7526
7857
|
productInstanceId?: string;
|
|
7858
|
+
// 订单号
|
|
7859
|
+
orderNo?: string;
|
|
7527
7860
|
// 1:现金贷(默认)
|
|
7528
7861
|
// 2:分期付
|
|
7529
7862
|
prodType?: string;
|
|
7530
|
-
//
|
|
7531
|
-
|
|
7863
|
+
// 资产方用户唯一标识
|
|
7864
|
+
openId?: string;
|
|
7532
7865
|
// 手机号
|
|
7533
7866
|
mobile?: string;
|
|
7867
|
+
// 资产方购物订单号,如二轮车/摩托车订单号;购物场景时传递
|
|
7868
|
+
bizOrderNo?: string;
|
|
7869
|
+
// 身份证号
|
|
7870
|
+
cardNo?: string;
|
|
7534
7871
|
// 姓名
|
|
7535
7872
|
customName?: string;
|
|
7536
|
-
//
|
|
7537
|
-
|
|
7873
|
+
// 默认:0
|
|
7874
|
+
// 0:明文
|
|
7875
|
+
// 1:md5
|
|
7876
|
+
mobileType?: string;
|
|
7877
|
+
// 默认:0
|
|
7878
|
+
// 0:明文
|
|
7879
|
+
// 1:md5
|
|
7880
|
+
cardNoType?: string;
|
|
7881
|
+
// 默认:0
|
|
7882
|
+
// 0:明文
|
|
7883
|
+
// 1:md5
|
|
7884
|
+
customNameType?: string;
|
|
7538
7885
|
// 渠道类型
|
|
7539
7886
|
channelType?: string;
|
|
7540
7887
|
// 客户类型
|
|
7541
7888
|
customType?: string;
|
|
7889
|
+
// 合作方产品编号
|
|
7890
|
+
prodNo?: string;
|
|
7891
|
+
// 授信过期的资金方编码
|
|
7892
|
+
expiredPlatformNo?: string;
|
|
7542
7893
|
// 导流平台
|
|
7543
7894
|
trafficPlatform?: string;
|
|
7544
7895
|
// 流量名称
|
|
@@ -7549,49 +7900,35 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7549
7900
|
trafficMktId?: string;
|
|
7550
7901
|
// 预留
|
|
7551
7902
|
clickId?: string;
|
|
7552
|
-
// 订单号
|
|
7553
|
-
orderNo?: string;
|
|
7554
7903
|
// 风险字段
|
|
7555
7904
|
riskData?: string;
|
|
7556
7905
|
// 扩展字段
|
|
7557
7906
|
extInfo?: string;
|
|
7558
|
-
// 默认:0
|
|
7559
|
-
// 0:明文
|
|
7560
|
-
// 1:md5
|
|
7561
|
-
mobileType?: string;
|
|
7562
|
-
// 默认:0
|
|
7563
|
-
// 0:明文
|
|
7564
|
-
// 1:md5
|
|
7565
|
-
cardNoType?: string;
|
|
7566
|
-
// 默认:0
|
|
7567
|
-
// 0:明文
|
|
7568
|
-
// 1:md5
|
|
7569
|
-
customNameType?: string;
|
|
7570
|
-
// 资产方用户唯一标识
|
|
7571
|
-
openId?: string;
|
|
7572
7907
|
static names(): { [key: string]: string } {
|
|
7573
7908
|
return {
|
|
7574
7909
|
authToken: 'auth_token',
|
|
7575
7910
|
productInstanceId: 'product_instance_id',
|
|
7911
|
+
orderNo: 'order_no',
|
|
7576
7912
|
prodType: 'prod_type',
|
|
7577
|
-
|
|
7913
|
+
openId: 'open_id',
|
|
7578
7914
|
mobile: 'mobile',
|
|
7915
|
+
bizOrderNo: 'biz_order_no',
|
|
7916
|
+
cardNo: 'card_no',
|
|
7579
7917
|
customName: 'custom_name',
|
|
7580
|
-
|
|
7918
|
+
mobileType: 'mobile_type',
|
|
7919
|
+
cardNoType: 'card_no_type',
|
|
7920
|
+
customNameType: 'custom_name_type',
|
|
7581
7921
|
channelType: 'channel_type',
|
|
7582
7922
|
customType: 'custom_type',
|
|
7923
|
+
prodNo: 'prod_no',
|
|
7924
|
+
expiredPlatformNo: 'expired_platform_no',
|
|
7583
7925
|
trafficPlatform: 'traffic_platform',
|
|
7584
7926
|
trafficSourceName: 'traffic_source_name',
|
|
7585
7927
|
trafficAdId: 'traffic_ad_id',
|
|
7586
7928
|
trafficMktId: 'traffic_mkt_id',
|
|
7587
7929
|
clickId: 'click_id',
|
|
7588
|
-
orderNo: 'order_no',
|
|
7589
7930
|
riskData: 'risk_data',
|
|
7590
7931
|
extInfo: 'ext_info',
|
|
7591
|
-
mobileType: 'mobile_type',
|
|
7592
|
-
cardNoType: 'card_no_type',
|
|
7593
|
-
customNameType: 'custom_name_type',
|
|
7594
|
-
openId: 'open_id',
|
|
7595
7932
|
};
|
|
7596
7933
|
}
|
|
7597
7934
|
|
|
@@ -7599,25 +7936,27 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7599
7936
|
return {
|
|
7600
7937
|
authToken: 'string',
|
|
7601
7938
|
productInstanceId: 'string',
|
|
7939
|
+
orderNo: 'string',
|
|
7602
7940
|
prodType: 'string',
|
|
7603
|
-
|
|
7941
|
+
openId: 'string',
|
|
7604
7942
|
mobile: 'string',
|
|
7943
|
+
bizOrderNo: 'string',
|
|
7944
|
+
cardNo: 'string',
|
|
7605
7945
|
customName: 'string',
|
|
7606
|
-
|
|
7946
|
+
mobileType: 'string',
|
|
7947
|
+
cardNoType: 'string',
|
|
7948
|
+
customNameType: 'string',
|
|
7607
7949
|
channelType: 'string',
|
|
7608
7950
|
customType: 'string',
|
|
7951
|
+
prodNo: 'string',
|
|
7952
|
+
expiredPlatformNo: 'string',
|
|
7609
7953
|
trafficPlatform: 'string',
|
|
7610
7954
|
trafficSourceName: 'string',
|
|
7611
7955
|
trafficAdId: 'string',
|
|
7612
7956
|
trafficMktId: 'string',
|
|
7613
7957
|
clickId: 'string',
|
|
7614
|
-
orderNo: 'string',
|
|
7615
7958
|
riskData: 'string',
|
|
7616
7959
|
extInfo: 'string',
|
|
7617
|
-
mobileType: 'string',
|
|
7618
|
-
cardNoType: 'string',
|
|
7619
|
-
customNameType: 'string',
|
|
7620
|
-
openId: 'string',
|
|
7621
7960
|
};
|
|
7622
7961
|
}
|
|
7623
7962
|
|
|
@@ -9843,20 +10182,23 @@ export class QueryDubbridgeUsecreditStatusRequest extends $tea.Model {
|
|
|
9843
10182
|
// OAuth模式下的授权token
|
|
9844
10183
|
authToken?: string;
|
|
9845
10184
|
productInstanceId?: string;
|
|
9846
|
-
// 用信申请订单号
|
|
9847
|
-
originalOrderNo: string;
|
|
9848
10185
|
// 请求网络流水号
|
|
9849
10186
|
orderNo: string;
|
|
9850
10187
|
// 1:现金贷(默认)
|
|
9851
10188
|
// 2:分期付
|
|
9852
10189
|
prodType?: string;
|
|
10190
|
+
// prod_type=1时,用信申请的订单号
|
|
10191
|
+
originalOrderNo: string;
|
|
10192
|
+
// 资产方购物订单号
|
|
10193
|
+
bizOrderNo?: string;
|
|
9853
10194
|
static names(): { [key: string]: string } {
|
|
9854
10195
|
return {
|
|
9855
10196
|
authToken: 'auth_token',
|
|
9856
10197
|
productInstanceId: 'product_instance_id',
|
|
9857
|
-
originalOrderNo: 'original_order_no',
|
|
9858
10198
|
orderNo: 'order_no',
|
|
9859
10199
|
prodType: 'prod_type',
|
|
10200
|
+
originalOrderNo: 'original_order_no',
|
|
10201
|
+
bizOrderNo: 'biz_order_no',
|
|
9860
10202
|
};
|
|
9861
10203
|
}
|
|
9862
10204
|
|
|
@@ -9864,9 +10206,10 @@ export class QueryDubbridgeUsecreditStatusRequest extends $tea.Model {
|
|
|
9864
10206
|
return {
|
|
9865
10207
|
authToken: 'string',
|
|
9866
10208
|
productInstanceId: 'string',
|
|
9867
|
-
originalOrderNo: 'string',
|
|
9868
10209
|
orderNo: 'string',
|
|
9869
10210
|
prodType: 'string',
|
|
10211
|
+
originalOrderNo: 'string',
|
|
10212
|
+
bizOrderNo: 'string',
|
|
9870
10213
|
};
|
|
9871
10214
|
}
|
|
9872
10215
|
|
|
@@ -11169,7 +11512,235 @@ export class QueryDubbridgeRepaytypeInfoResponse extends $tea.Model {
|
|
|
11169
11512
|
reqMsgId: 'string',
|
|
11170
11513
|
resultCode: 'string',
|
|
11171
11514
|
resultMsg: 'string',
|
|
11172
|
-
repayTypeInfoList: { 'type': 'array', 'itemType': PlatformRepayTypeInfo },
|
|
11515
|
+
repayTypeInfoList: { 'type': 'array', 'itemType': PlatformRepayTypeInfo },
|
|
11516
|
+
};
|
|
11517
|
+
}
|
|
11518
|
+
|
|
11519
|
+
constructor(map?: { [key: string]: any }) {
|
|
11520
|
+
super(map);
|
|
11521
|
+
}
|
|
11522
|
+
}
|
|
11523
|
+
|
|
11524
|
+
export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
11525
|
+
// OAuth模式下的授权token
|
|
11526
|
+
authToken?: string;
|
|
11527
|
+
productInstanceId?: string;
|
|
11528
|
+
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
11529
|
+
orderNo: string;
|
|
11530
|
+
// 1:现金贷、2:分期付
|
|
11531
|
+
prodType: string;
|
|
11532
|
+
// 资产方用户唯一标识
|
|
11533
|
+
openId: string;
|
|
11534
|
+
// 手机号
|
|
11535
|
+
mobile: string;
|
|
11536
|
+
// 项目编号
|
|
11537
|
+
projectCode: string;
|
|
11538
|
+
// 交易金额,单位:元,如199.88(用于筛选额度充足的机构)
|
|
11539
|
+
tradeAmount: string;
|
|
11540
|
+
// 身份证号
|
|
11541
|
+
cardNo?: string;
|
|
11542
|
+
// 客户姓名
|
|
11543
|
+
customerName?: string;
|
|
11544
|
+
// 导流平台
|
|
11545
|
+
trafficPlatform?: string;
|
|
11546
|
+
// 流量来源名称,导流平台背后具体的流量名称
|
|
11547
|
+
trafficSourceName?: string;
|
|
11548
|
+
// 广告位id,流量来源内各广告位标志
|
|
11549
|
+
trafficAdId?: string;
|
|
11550
|
+
// 营销活动编号
|
|
11551
|
+
trafficMktId?: string;
|
|
11552
|
+
// 点击id
|
|
11553
|
+
clickId?: string;
|
|
11554
|
+
static names(): { [key: string]: string } {
|
|
11555
|
+
return {
|
|
11556
|
+
authToken: 'auth_token',
|
|
11557
|
+
productInstanceId: 'product_instance_id',
|
|
11558
|
+
orderNo: 'order_no',
|
|
11559
|
+
prodType: 'prod_type',
|
|
11560
|
+
openId: 'open_id',
|
|
11561
|
+
mobile: 'mobile',
|
|
11562
|
+
projectCode: 'project_code',
|
|
11563
|
+
tradeAmount: 'trade_amount',
|
|
11564
|
+
cardNo: 'card_no',
|
|
11565
|
+
customerName: 'customer_name',
|
|
11566
|
+
trafficPlatform: 'traffic_platform',
|
|
11567
|
+
trafficSourceName: 'traffic_source_name',
|
|
11568
|
+
trafficAdId: 'traffic_ad_id',
|
|
11569
|
+
trafficMktId: 'traffic_mkt_id',
|
|
11570
|
+
clickId: 'click_id',
|
|
11571
|
+
};
|
|
11572
|
+
}
|
|
11573
|
+
|
|
11574
|
+
static types(): { [key: string]: any } {
|
|
11575
|
+
return {
|
|
11576
|
+
authToken: 'string',
|
|
11577
|
+
productInstanceId: 'string',
|
|
11578
|
+
orderNo: 'string',
|
|
11579
|
+
prodType: 'string',
|
|
11580
|
+
openId: 'string',
|
|
11581
|
+
mobile: 'string',
|
|
11582
|
+
projectCode: 'string',
|
|
11583
|
+
tradeAmount: 'string',
|
|
11584
|
+
cardNo: 'string',
|
|
11585
|
+
customerName: 'string',
|
|
11586
|
+
trafficPlatform: 'string',
|
|
11587
|
+
trafficSourceName: 'string',
|
|
11588
|
+
trafficAdId: 'string',
|
|
11589
|
+
trafficMktId: 'string',
|
|
11590
|
+
clickId: 'string',
|
|
11591
|
+
};
|
|
11592
|
+
}
|
|
11593
|
+
|
|
11594
|
+
constructor(map?: { [key: string]: any }) {
|
|
11595
|
+
super(map);
|
|
11596
|
+
}
|
|
11597
|
+
}
|
|
11598
|
+
|
|
11599
|
+
export class QueryDubbridgeInstallmentCreditamtResponse extends $tea.Model {
|
|
11600
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11601
|
+
reqMsgId?: string;
|
|
11602
|
+
// 结果码,一般OK表示调用成功
|
|
11603
|
+
resultCode?: string;
|
|
11604
|
+
// 异常信息的文本描述
|
|
11605
|
+
resultMsg?: string;
|
|
11606
|
+
// 授信申请状态:
|
|
11607
|
+
// 0- 通过
|
|
11608
|
+
// 1- 拒绝
|
|
11609
|
+
// 2- 审批中
|
|
11610
|
+
// 3- 失败
|
|
11611
|
+
//
|
|
11612
|
+
applyStatus?: string;
|
|
11613
|
+
// 额度状态:
|
|
11614
|
+
// 0- 正常
|
|
11615
|
+
// 1- 冻结
|
|
11616
|
+
// 2- 过期
|
|
11617
|
+
creditStatus?: string;
|
|
11618
|
+
// 授信总额度,单位:元
|
|
11619
|
+
creditAmount?: number;
|
|
11620
|
+
// 可用余额
|
|
11621
|
+
restAmount?: number;
|
|
11622
|
+
// 发放日期,yyyy-MM-dd
|
|
11623
|
+
payDate?: string;
|
|
11624
|
+
// 到期日期,yyyy-MM-dd
|
|
11625
|
+
expireDate?: string;
|
|
11626
|
+
// 授信年利率。精确到小数点后四位0.1250,表示年利率为12.5%
|
|
11627
|
+
rateValue?: number;
|
|
11628
|
+
// 资金方编号
|
|
11629
|
+
fundCode?: string;
|
|
11630
|
+
// 资金方简称
|
|
11631
|
+
abbreFundName?: string;
|
|
11632
|
+
// 1:现金贷、2:分期付
|
|
11633
|
+
prodType?: string;
|
|
11634
|
+
static names(): { [key: string]: string } {
|
|
11635
|
+
return {
|
|
11636
|
+
reqMsgId: 'req_msg_id',
|
|
11637
|
+
resultCode: 'result_code',
|
|
11638
|
+
resultMsg: 'result_msg',
|
|
11639
|
+
applyStatus: 'apply_status',
|
|
11640
|
+
creditStatus: 'credit_status',
|
|
11641
|
+
creditAmount: 'credit_amount',
|
|
11642
|
+
restAmount: 'rest_amount',
|
|
11643
|
+
payDate: 'pay_date',
|
|
11644
|
+
expireDate: 'expire_date',
|
|
11645
|
+
rateValue: 'rate_value',
|
|
11646
|
+
fundCode: 'fund_code',
|
|
11647
|
+
abbreFundName: 'abbre_fund_name',
|
|
11648
|
+
prodType: 'prod_type',
|
|
11649
|
+
};
|
|
11650
|
+
}
|
|
11651
|
+
|
|
11652
|
+
static types(): { [key: string]: any } {
|
|
11653
|
+
return {
|
|
11654
|
+
reqMsgId: 'string',
|
|
11655
|
+
resultCode: 'string',
|
|
11656
|
+
resultMsg: 'string',
|
|
11657
|
+
applyStatus: 'string',
|
|
11658
|
+
creditStatus: 'string',
|
|
11659
|
+
creditAmount: 'number',
|
|
11660
|
+
restAmount: 'number',
|
|
11661
|
+
payDate: 'string',
|
|
11662
|
+
expireDate: 'string',
|
|
11663
|
+
rateValue: 'number',
|
|
11664
|
+
fundCode: 'string',
|
|
11665
|
+
abbreFundName: 'string',
|
|
11666
|
+
prodType: 'string',
|
|
11667
|
+
};
|
|
11668
|
+
}
|
|
11669
|
+
|
|
11670
|
+
constructor(map?: { [key: string]: any }) {
|
|
11671
|
+
super(map);
|
|
11672
|
+
}
|
|
11673
|
+
}
|
|
11674
|
+
|
|
11675
|
+
export class CancelDubbridgeInstallmentOrderRequest extends $tea.Model {
|
|
11676
|
+
// OAuth模式下的授权token
|
|
11677
|
+
authToken?: string;
|
|
11678
|
+
productInstanceId?: string;
|
|
11679
|
+
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
11680
|
+
orderNo: string;
|
|
11681
|
+
// 1:现金贷、2:分期付
|
|
11682
|
+
//
|
|
11683
|
+
prodType?: string;
|
|
11684
|
+
// 待支付的购物订单编号
|
|
11685
|
+
bizOrderNo: string;
|
|
11686
|
+
// 渠道方唯一标识
|
|
11687
|
+
openId?: string;
|
|
11688
|
+
// 天枢客户号
|
|
11689
|
+
customerNo?: string;
|
|
11690
|
+
static names(): { [key: string]: string } {
|
|
11691
|
+
return {
|
|
11692
|
+
authToken: 'auth_token',
|
|
11693
|
+
productInstanceId: 'product_instance_id',
|
|
11694
|
+
orderNo: 'order_no',
|
|
11695
|
+
prodType: 'prod_type',
|
|
11696
|
+
bizOrderNo: 'biz_order_no',
|
|
11697
|
+
openId: 'open_id',
|
|
11698
|
+
customerNo: 'customer_no',
|
|
11699
|
+
};
|
|
11700
|
+
}
|
|
11701
|
+
|
|
11702
|
+
static types(): { [key: string]: any } {
|
|
11703
|
+
return {
|
|
11704
|
+
authToken: 'string',
|
|
11705
|
+
productInstanceId: 'string',
|
|
11706
|
+
orderNo: 'string',
|
|
11707
|
+
prodType: 'string',
|
|
11708
|
+
bizOrderNo: 'string',
|
|
11709
|
+
openId: 'string',
|
|
11710
|
+
customerNo: 'string',
|
|
11711
|
+
};
|
|
11712
|
+
}
|
|
11713
|
+
|
|
11714
|
+
constructor(map?: { [key: string]: any }) {
|
|
11715
|
+
super(map);
|
|
11716
|
+
}
|
|
11717
|
+
}
|
|
11718
|
+
|
|
11719
|
+
export class CancelDubbridgeInstallmentOrderResponse extends $tea.Model {
|
|
11720
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11721
|
+
reqMsgId?: string;
|
|
11722
|
+
// 结果码,一般OK表示调用成功
|
|
11723
|
+
resultCode?: string;
|
|
11724
|
+
// 异常信息的文本描述
|
|
11725
|
+
resultMsg?: string;
|
|
11726
|
+
// 订单取消请求接受结果:
|
|
11727
|
+
// Y: 成功; N: 失败
|
|
11728
|
+
cancelResult?: string;
|
|
11729
|
+
static names(): { [key: string]: string } {
|
|
11730
|
+
return {
|
|
11731
|
+
reqMsgId: 'req_msg_id',
|
|
11732
|
+
resultCode: 'result_code',
|
|
11733
|
+
resultMsg: 'result_msg',
|
|
11734
|
+
cancelResult: 'cancel_result',
|
|
11735
|
+
};
|
|
11736
|
+
}
|
|
11737
|
+
|
|
11738
|
+
static types(): { [key: string]: any } {
|
|
11739
|
+
return {
|
|
11740
|
+
reqMsgId: 'string',
|
|
11741
|
+
resultCode: 'string',
|
|
11742
|
+
resultMsg: 'string',
|
|
11743
|
+
cancelResult: 'string',
|
|
11173
11744
|
};
|
|
11174
11745
|
}
|
|
11175
11746
|
|
|
@@ -11178,36 +11749,29 @@ export class QueryDubbridgeRepaytypeInfoResponse extends $tea.Model {
|
|
|
11178
11749
|
}
|
|
11179
11750
|
}
|
|
11180
11751
|
|
|
11181
|
-
export class
|
|
11752
|
+
export class PushDubbridgeInstallmentSupplementRequest extends $tea.Model {
|
|
11182
11753
|
// OAuth模式下的授权token
|
|
11183
11754
|
authToken?: string;
|
|
11184
11755
|
productInstanceId?: string;
|
|
11185
11756
|
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
11186
11757
|
orderNo: string;
|
|
11187
|
-
// 1
|
|
11758
|
+
// 业务类型:1-现金贷;2-分期付
|
|
11759
|
+
//
|
|
11188
11760
|
prodType: string;
|
|
11189
11761
|
// 资产方用户唯一标识
|
|
11190
11762
|
openId: string;
|
|
11191
|
-
//
|
|
11192
|
-
|
|
11193
|
-
//
|
|
11194
|
-
|
|
11195
|
-
//
|
|
11196
|
-
|
|
11197
|
-
//
|
|
11198
|
-
|
|
11199
|
-
//
|
|
11200
|
-
|
|
11201
|
-
//
|
|
11202
|
-
|
|
11203
|
-
// 流量来源名称,导流平台背后具体的流量名称
|
|
11204
|
-
trafficSourceName?: string;
|
|
11205
|
-
// 广告位id,流量来源内各广告位标志
|
|
11206
|
-
trafficAdId?: string;
|
|
11207
|
-
// 营销活动编号
|
|
11208
|
-
trafficMktId?: string;
|
|
11209
|
-
// 点击id
|
|
11210
|
-
clickId?: string;
|
|
11763
|
+
// 资产方购物订单号,如二轮车/摩托车订单号
|
|
11764
|
+
bizOrderNo: string;
|
|
11765
|
+
// 材料场景:2-支用前、3-支用后
|
|
11766
|
+
fileScene: string;
|
|
11767
|
+
// 材料列表
|
|
11768
|
+
fileList?: SupplementFile[];
|
|
11769
|
+
// 门店信息
|
|
11770
|
+
storeInfo?: StoreInfo;
|
|
11771
|
+
// 订单车辆信息
|
|
11772
|
+
vehicleInfo?: VehicleInfo;
|
|
11773
|
+
// 补充信息
|
|
11774
|
+
additional?: Additional;
|
|
11211
11775
|
static names(): { [key: string]: string } {
|
|
11212
11776
|
return {
|
|
11213
11777
|
authToken: 'auth_token',
|
|
@@ -11215,16 +11779,12 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11215
11779
|
orderNo: 'order_no',
|
|
11216
11780
|
prodType: 'prod_type',
|
|
11217
11781
|
openId: 'open_id',
|
|
11218
|
-
|
|
11219
|
-
|
|
11220
|
-
|
|
11221
|
-
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
trafficSourceName: 'traffic_source_name',
|
|
11225
|
-
trafficAdId: 'traffic_ad_id',
|
|
11226
|
-
trafficMktId: 'traffic_mkt_id',
|
|
11227
|
-
clickId: 'click_id',
|
|
11782
|
+
bizOrderNo: 'biz_order_no',
|
|
11783
|
+
fileScene: 'file_scene',
|
|
11784
|
+
fileList: 'file_list',
|
|
11785
|
+
storeInfo: 'store_info',
|
|
11786
|
+
vehicleInfo: 'vehicle_info',
|
|
11787
|
+
additional: 'additional',
|
|
11228
11788
|
};
|
|
11229
11789
|
}
|
|
11230
11790
|
|
|
@@ -11235,16 +11795,12 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11235
11795
|
orderNo: 'string',
|
|
11236
11796
|
prodType: 'string',
|
|
11237
11797
|
openId: 'string',
|
|
11238
|
-
|
|
11239
|
-
|
|
11240
|
-
|
|
11241
|
-
|
|
11242
|
-
|
|
11243
|
-
|
|
11244
|
-
trafficSourceName: 'string',
|
|
11245
|
-
trafficAdId: 'string',
|
|
11246
|
-
trafficMktId: 'string',
|
|
11247
|
-
clickId: 'string',
|
|
11798
|
+
bizOrderNo: 'string',
|
|
11799
|
+
fileScene: 'string',
|
|
11800
|
+
fileList: { 'type': 'array', 'itemType': SupplementFile },
|
|
11801
|
+
storeInfo: StoreInfo,
|
|
11802
|
+
vehicleInfo: VehicleInfo,
|
|
11803
|
+
additional: Additional,
|
|
11248
11804
|
};
|
|
11249
11805
|
}
|
|
11250
11806
|
|
|
@@ -11253,56 +11809,18 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11253
11809
|
}
|
|
11254
11810
|
}
|
|
11255
11811
|
|
|
11256
|
-
export class
|
|
11812
|
+
export class PushDubbridgeInstallmentSupplementResponse extends $tea.Model {
|
|
11257
11813
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11258
11814
|
reqMsgId?: string;
|
|
11259
11815
|
// 结果码,一般OK表示调用成功
|
|
11260
11816
|
resultCode?: string;
|
|
11261
11817
|
// 异常信息的文本描述
|
|
11262
11818
|
resultMsg?: string;
|
|
11263
|
-
// 授信申请状态:
|
|
11264
|
-
// 0- 通过
|
|
11265
|
-
// 1- 拒绝
|
|
11266
|
-
// 2- 审批中
|
|
11267
|
-
// 3- 失败
|
|
11268
|
-
//
|
|
11269
|
-
applyStatus?: string;
|
|
11270
|
-
// 额度状态:
|
|
11271
|
-
// 0- 正常
|
|
11272
|
-
// 1- 冻结
|
|
11273
|
-
// 2- 过期
|
|
11274
|
-
creditStatus?: string;
|
|
11275
|
-
// 授信总额度,单位:元
|
|
11276
|
-
creditAmount?: number;
|
|
11277
|
-
// 可用余额
|
|
11278
|
-
restAmount?: number;
|
|
11279
|
-
// 发放日期,yyyy-MM-dd
|
|
11280
|
-
payDate?: string;
|
|
11281
|
-
// 到期日期,yyyy-MM-dd
|
|
11282
|
-
expireDate?: string;
|
|
11283
|
-
// 授信年利率。精确到小数点后四位0.1250,表示年利率为12.5%
|
|
11284
|
-
rateValue?: number;
|
|
11285
|
-
// 资金方编号
|
|
11286
|
-
fundCode?: string;
|
|
11287
|
-
// 资金方简称
|
|
11288
|
-
abbreFundName?: string;
|
|
11289
|
-
// 1:现金贷、2:分期付
|
|
11290
|
-
prodType?: string;
|
|
11291
11819
|
static names(): { [key: string]: string } {
|
|
11292
11820
|
return {
|
|
11293
11821
|
reqMsgId: 'req_msg_id',
|
|
11294
11822
|
resultCode: 'result_code',
|
|
11295
11823
|
resultMsg: 'result_msg',
|
|
11296
|
-
applyStatus: 'apply_status',
|
|
11297
|
-
creditStatus: 'credit_status',
|
|
11298
|
-
creditAmount: 'credit_amount',
|
|
11299
|
-
restAmount: 'rest_amount',
|
|
11300
|
-
payDate: 'pay_date',
|
|
11301
|
-
expireDate: 'expire_date',
|
|
11302
|
-
rateValue: 'rate_value',
|
|
11303
|
-
fundCode: 'fund_code',
|
|
11304
|
-
abbreFundName: 'abbre_fund_name',
|
|
11305
|
-
prodType: 'prod_type',
|
|
11306
11824
|
};
|
|
11307
11825
|
}
|
|
11308
11826
|
|
|
@@ -11311,16 +11829,6 @@ export class QueryDubbridgeInstallmentCreditamtResponse extends $tea.Model {
|
|
|
11311
11829
|
reqMsgId: 'string',
|
|
11312
11830
|
resultCode: 'string',
|
|
11313
11831
|
resultMsg: 'string',
|
|
11314
|
-
applyStatus: 'string',
|
|
11315
|
-
creditStatus: 'string',
|
|
11316
|
-
creditAmount: 'number',
|
|
11317
|
-
restAmount: 'number',
|
|
11318
|
-
payDate: 'string',
|
|
11319
|
-
expireDate: 'string',
|
|
11320
|
-
rateValue: 'number',
|
|
11321
|
-
fundCode: 'string',
|
|
11322
|
-
abbreFundName: 'string',
|
|
11323
|
-
prodType: 'string',
|
|
11324
11832
|
};
|
|
11325
11833
|
}
|
|
11326
11834
|
|
|
@@ -11329,26 +11837,38 @@ export class QueryDubbridgeInstallmentCreditamtResponse extends $tea.Model {
|
|
|
11329
11837
|
}
|
|
11330
11838
|
}
|
|
11331
11839
|
|
|
11332
|
-
export class
|
|
11840
|
+
export class QueryDubbridgeInstallmentTrialRequest extends $tea.Model {
|
|
11333
11841
|
// OAuth模式下的授权token
|
|
11334
11842
|
authToken?: string;
|
|
11335
11843
|
productInstanceId?: string;
|
|
11336
|
-
//
|
|
11844
|
+
// 订单号
|
|
11337
11845
|
orderNo: string;
|
|
11338
|
-
//
|
|
11846
|
+
// 业务类型,1:现金贷;2:分期付
|
|
11847
|
+
prodType: string;
|
|
11848
|
+
// 资产方购物订单号
|
|
11339
11849
|
bizOrderNo: string;
|
|
11340
|
-
// 渠道方唯一标识
|
|
11341
|
-
openId?: string;
|
|
11342
11850
|
// 天枢客户号
|
|
11343
11851
|
customerNo?: string;
|
|
11852
|
+
// 资产方用户唯一标识
|
|
11853
|
+
openId: string;
|
|
11854
|
+
// 资金方编码
|
|
11855
|
+
fundCode: string;
|
|
11856
|
+
// 订单交易金额
|
|
11857
|
+
tradeAmount: string;
|
|
11858
|
+
// 优惠券id
|
|
11859
|
+
couponId?: string;
|
|
11344
11860
|
static names(): { [key: string]: string } {
|
|
11345
11861
|
return {
|
|
11346
11862
|
authToken: 'auth_token',
|
|
11347
11863
|
productInstanceId: 'product_instance_id',
|
|
11348
11864
|
orderNo: 'order_no',
|
|
11865
|
+
prodType: 'prod_type',
|
|
11349
11866
|
bizOrderNo: 'biz_order_no',
|
|
11350
|
-
openId: 'open_id',
|
|
11351
11867
|
customerNo: 'customer_no',
|
|
11868
|
+
openId: 'open_id',
|
|
11869
|
+
fundCode: 'fund_code',
|
|
11870
|
+
tradeAmount: 'trade_amount',
|
|
11871
|
+
couponId: 'coupon_id',
|
|
11352
11872
|
};
|
|
11353
11873
|
}
|
|
11354
11874
|
|
|
@@ -11357,9 +11877,13 @@ export class CancelDubbridgeInstallmentOrderRequest extends $tea.Model {
|
|
|
11357
11877
|
authToken: 'string',
|
|
11358
11878
|
productInstanceId: 'string',
|
|
11359
11879
|
orderNo: 'string',
|
|
11880
|
+
prodType: 'string',
|
|
11360
11881
|
bizOrderNo: 'string',
|
|
11361
|
-
openId: 'string',
|
|
11362
11882
|
customerNo: 'string',
|
|
11883
|
+
openId: 'string',
|
|
11884
|
+
fundCode: 'string',
|
|
11885
|
+
tradeAmount: 'string',
|
|
11886
|
+
couponId: 'string',
|
|
11363
11887
|
};
|
|
11364
11888
|
}
|
|
11365
11889
|
|
|
@@ -11368,22 +11892,27 @@ export class CancelDubbridgeInstallmentOrderRequest extends $tea.Model {
|
|
|
11368
11892
|
}
|
|
11369
11893
|
}
|
|
11370
11894
|
|
|
11371
|
-
export class
|
|
11895
|
+
export class QueryDubbridgeInstallmentTrialResponse extends $tea.Model {
|
|
11372
11896
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11373
11897
|
reqMsgId?: string;
|
|
11374
11898
|
// 结果码,一般OK表示调用成功
|
|
11375
11899
|
resultCode?: string;
|
|
11376
11900
|
// 异常信息的文本描述
|
|
11377
11901
|
resultMsg?: string;
|
|
11378
|
-
//
|
|
11379
|
-
|
|
11380
|
-
|
|
11902
|
+
// 授信额度
|
|
11903
|
+
creditAmount?: string;
|
|
11904
|
+
// 可用额度
|
|
11905
|
+
restAmount?: string;
|
|
11906
|
+
// 期数费用列表
|
|
11907
|
+
installmentList?: InstallmentTrial[];
|
|
11381
11908
|
static names(): { [key: string]: string } {
|
|
11382
11909
|
return {
|
|
11383
11910
|
reqMsgId: 'req_msg_id',
|
|
11384
11911
|
resultCode: 'result_code',
|
|
11385
11912
|
resultMsg: 'result_msg',
|
|
11386
|
-
|
|
11913
|
+
creditAmount: 'credit_amount',
|
|
11914
|
+
restAmount: 'rest_amount',
|
|
11915
|
+
installmentList: 'installment_list',
|
|
11387
11916
|
};
|
|
11388
11917
|
}
|
|
11389
11918
|
|
|
@@ -11392,7 +11921,9 @@ export class CancelDubbridgeInstallmentOrderResponse extends $tea.Model {
|
|
|
11392
11921
|
reqMsgId: 'string',
|
|
11393
11922
|
resultCode: 'string',
|
|
11394
11923
|
resultMsg: 'string',
|
|
11395
|
-
|
|
11924
|
+
creditAmount: 'string',
|
|
11925
|
+
restAmount: 'string',
|
|
11926
|
+
installmentList: { 'type': 'array', 'itemType': InstallmentTrial },
|
|
11396
11927
|
};
|
|
11397
11928
|
}
|
|
11398
11929
|
|
|
@@ -14441,6 +14972,79 @@ export class ReceiveRfcParamsFileResponse extends $tea.Model {
|
|
|
14441
14972
|
}
|
|
14442
14973
|
}
|
|
14443
14974
|
|
|
14975
|
+
export class UploadRfcAiboundFileRequest extends $tea.Model {
|
|
14976
|
+
// OAuth模式下的授权token
|
|
14977
|
+
authToken?: string;
|
|
14978
|
+
productInstanceId?: string;
|
|
14979
|
+
// 文件ID
|
|
14980
|
+
fileObject?: Readable;
|
|
14981
|
+
fileObjectName?: string;
|
|
14982
|
+
fileId: string;
|
|
14983
|
+
// 参数,jsonString
|
|
14984
|
+
params: string;
|
|
14985
|
+
// 外呼为 AI_BOUND
|
|
14986
|
+
type: string;
|
|
14987
|
+
static names(): { [key: string]: string } {
|
|
14988
|
+
return {
|
|
14989
|
+
authToken: 'auth_token',
|
|
14990
|
+
productInstanceId: 'product_instance_id',
|
|
14991
|
+
fileObject: 'fileObject',
|
|
14992
|
+
fileObjectName: 'fileObjectName',
|
|
14993
|
+
fileId: 'file_id',
|
|
14994
|
+
params: 'params',
|
|
14995
|
+
type: 'type',
|
|
14996
|
+
};
|
|
14997
|
+
}
|
|
14998
|
+
|
|
14999
|
+
static types(): { [key: string]: any } {
|
|
15000
|
+
return {
|
|
15001
|
+
authToken: 'string',
|
|
15002
|
+
productInstanceId: 'string',
|
|
15003
|
+
fileObject: 'Readable',
|
|
15004
|
+
fileObjectName: 'string',
|
|
15005
|
+
fileId: 'string',
|
|
15006
|
+
params: 'string',
|
|
15007
|
+
type: 'string',
|
|
15008
|
+
};
|
|
15009
|
+
}
|
|
15010
|
+
|
|
15011
|
+
constructor(map?: { [key: string]: any }) {
|
|
15012
|
+
super(map);
|
|
15013
|
+
}
|
|
15014
|
+
}
|
|
15015
|
+
|
|
15016
|
+
export class UploadRfcAiboundFileResponse extends $tea.Model {
|
|
15017
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
15018
|
+
reqMsgId?: string;
|
|
15019
|
+
// 结果码,一般OK表示调用成功
|
|
15020
|
+
resultCode?: string;
|
|
15021
|
+
// 异常信息的文本描述
|
|
15022
|
+
resultMsg?: string;
|
|
15023
|
+
// 文件上传响应参数
|
|
15024
|
+
content?: string;
|
|
15025
|
+
static names(): { [key: string]: string } {
|
|
15026
|
+
return {
|
|
15027
|
+
reqMsgId: 'req_msg_id',
|
|
15028
|
+
resultCode: 'result_code',
|
|
15029
|
+
resultMsg: 'result_msg',
|
|
15030
|
+
content: 'content',
|
|
15031
|
+
};
|
|
15032
|
+
}
|
|
15033
|
+
|
|
15034
|
+
static types(): { [key: string]: any } {
|
|
15035
|
+
return {
|
|
15036
|
+
reqMsgId: 'string',
|
|
15037
|
+
resultCode: 'string',
|
|
15038
|
+
resultMsg: 'string',
|
|
15039
|
+
content: 'string',
|
|
15040
|
+
};
|
|
15041
|
+
}
|
|
15042
|
+
|
|
15043
|
+
constructor(map?: { [key: string]: any }) {
|
|
15044
|
+
super(map);
|
|
15045
|
+
}
|
|
15046
|
+
}
|
|
15047
|
+
|
|
14444
15048
|
export class QueryRbbGenericInvokeRequest extends $tea.Model {
|
|
14445
15049
|
// OAuth模式下的授权token
|
|
14446
15050
|
authToken?: string;
|
|
@@ -21978,6 +22582,8 @@ export class UploadUmktOfflinedecisionRequest extends $tea.Model {
|
|
|
21978
22582
|
fileObject?: Readable;
|
|
21979
22583
|
fileObjectName?: string;
|
|
21980
22584
|
fileId: string;
|
|
22585
|
+
// 非必填, 默认OFFLINE_DECISION
|
|
22586
|
+
relationType?: string;
|
|
21981
22587
|
static names(): { [key: string]: string } {
|
|
21982
22588
|
return {
|
|
21983
22589
|
authToken: 'auth_token',
|
|
@@ -21987,6 +22593,7 @@ export class UploadUmktOfflinedecisionRequest extends $tea.Model {
|
|
|
21987
22593
|
fileObject: 'fileObject',
|
|
21988
22594
|
fileObjectName: 'fileObjectName',
|
|
21989
22595
|
fileId: 'file_id',
|
|
22596
|
+
relationType: 'relation_type',
|
|
21990
22597
|
};
|
|
21991
22598
|
}
|
|
21992
22599
|
|
|
@@ -21999,6 +22606,7 @@ export class UploadUmktOfflinedecisionRequest extends $tea.Model {
|
|
|
21999
22606
|
fileObject: 'Readable',
|
|
22000
22607
|
fileObjectName: 'string',
|
|
22001
22608
|
fileId: 'string',
|
|
22609
|
+
relationType: 'string',
|
|
22002
22610
|
};
|
|
22003
22611
|
}
|
|
22004
22612
|
|
|
@@ -22514,7 +23122,7 @@ export default class Client {
|
|
|
22514
23122
|
req_msg_id: AntchainUtil.getNonce(),
|
|
22515
23123
|
access_key: this._accessKeyId,
|
|
22516
23124
|
base_sdk_version: "TeaSDK-2.0",
|
|
22517
|
-
sdk_version: "1.
|
|
23125
|
+
sdk_version: "1.24.0",
|
|
22518
23126
|
_prod_code: "RISKPLUS",
|
|
22519
23127
|
_prod_channel: "undefined",
|
|
22520
23128
|
};
|
|
@@ -24009,6 +24617,44 @@ export default class Client {
|
|
|
24009
24617
|
return $tea.cast<CancelDubbridgeInstallmentOrderResponse>(await this.doRequest("1.0", "riskplus.dubbridge.installment.order.cancel", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CancelDubbridgeInstallmentOrderResponse({}));
|
|
24010
24618
|
}
|
|
24011
24619
|
|
|
24620
|
+
/**
|
|
24621
|
+
* Description: 天枢系统支用后补充材料推送-分期付
|
|
24622
|
+
* Summary: 天枢系统支用后补充材料推送-分期付
|
|
24623
|
+
*/
|
|
24624
|
+
async pushDubbridgeInstallmentSupplement(request: PushDubbridgeInstallmentSupplementRequest): Promise<PushDubbridgeInstallmentSupplementResponse> {
|
|
24625
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24626
|
+
let headers : {[key: string ]: string} = { };
|
|
24627
|
+
return await this.pushDubbridgeInstallmentSupplementEx(request, headers, runtime);
|
|
24628
|
+
}
|
|
24629
|
+
|
|
24630
|
+
/**
|
|
24631
|
+
* Description: 天枢系统支用后补充材料推送-分期付
|
|
24632
|
+
* Summary: 天枢系统支用后补充材料推送-分期付
|
|
24633
|
+
*/
|
|
24634
|
+
async pushDubbridgeInstallmentSupplementEx(request: PushDubbridgeInstallmentSupplementRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushDubbridgeInstallmentSupplementResponse> {
|
|
24635
|
+
Util.validateModel(request);
|
|
24636
|
+
return $tea.cast<PushDubbridgeInstallmentSupplementResponse>(await this.doRequest("1.0", "riskplus.dubbridge.installment.supplement.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushDubbridgeInstallmentSupplementResponse({}));
|
|
24637
|
+
}
|
|
24638
|
+
|
|
24639
|
+
/**
|
|
24640
|
+
* Description: 天枢系统分期试算
|
|
24641
|
+
* Summary: 天枢系统分期试算
|
|
24642
|
+
*/
|
|
24643
|
+
async queryDubbridgeInstallmentTrial(request: QueryDubbridgeInstallmentTrialRequest): Promise<QueryDubbridgeInstallmentTrialResponse> {
|
|
24644
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24645
|
+
let headers : {[key: string ]: string} = { };
|
|
24646
|
+
return await this.queryDubbridgeInstallmentTrialEx(request, headers, runtime);
|
|
24647
|
+
}
|
|
24648
|
+
|
|
24649
|
+
/**
|
|
24650
|
+
* Description: 天枢系统分期试算
|
|
24651
|
+
* Summary: 天枢系统分期试算
|
|
24652
|
+
*/
|
|
24653
|
+
async queryDubbridgeInstallmentTrialEx(request: QueryDubbridgeInstallmentTrialRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeInstallmentTrialResponse> {
|
|
24654
|
+
Util.validateModel(request);
|
|
24655
|
+
return $tea.cast<QueryDubbridgeInstallmentTrialResponse>(await this.doRequest("1.0", "riskplus.dubbridge.installment.trial.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeInstallmentTrialResponse({}));
|
|
24656
|
+
}
|
|
24657
|
+
|
|
24012
24658
|
/**
|
|
24013
24659
|
* Description: 四要素认证首先调用此接口
|
|
24014
24660
|
* Summary: 芝麻四要素接口
|
|
@@ -24797,6 +25443,47 @@ export default class Client {
|
|
|
24797
25443
|
return $tea.cast<ReceiveRfcParamsFileResponse>(await this.doRequest("1.0", "riskplus.rfc.params.file.receive", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ReceiveRfcParamsFileResponse({}));
|
|
24798
25444
|
}
|
|
24799
25445
|
|
|
25446
|
+
/**
|
|
25447
|
+
* Description: rfc外呼名单文件上传接口
|
|
25448
|
+
* Summary: rfc外呼名单上传接口
|
|
25449
|
+
*/
|
|
25450
|
+
async uploadRfcAiboundFile(request: UploadRfcAiboundFileRequest): Promise<UploadRfcAiboundFileResponse> {
|
|
25451
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
25452
|
+
let headers : {[key: string ]: string} = { };
|
|
25453
|
+
return await this.uploadRfcAiboundFileEx(request, headers, runtime);
|
|
25454
|
+
}
|
|
25455
|
+
|
|
25456
|
+
/**
|
|
25457
|
+
* Description: rfc外呼名单文件上传接口
|
|
25458
|
+
* Summary: rfc外呼名单上传接口
|
|
25459
|
+
*/
|
|
25460
|
+
async uploadRfcAiboundFileEx(request: UploadRfcAiboundFileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UploadRfcAiboundFileResponse> {
|
|
25461
|
+
if (!Util.isUnset(request.fileObject)) {
|
|
25462
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
25463
|
+
authToken: request.authToken,
|
|
25464
|
+
apiCode: "riskplus.rfc.aibound.file.upload",
|
|
25465
|
+
fileName: request.fileObjectName,
|
|
25466
|
+
});
|
|
25467
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
25468
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
25469
|
+
let uploadRfcAiboundFileResponse = new UploadRfcAiboundFileResponse({
|
|
25470
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
25471
|
+
resultCode: uploadResp.resultCode,
|
|
25472
|
+
resultMsg: uploadResp.resultMsg,
|
|
25473
|
+
});
|
|
25474
|
+
return uploadRfcAiboundFileResponse;
|
|
25475
|
+
}
|
|
25476
|
+
|
|
25477
|
+
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
25478
|
+
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
25479
|
+
request.fileId = uploadResp.fileId;
|
|
25480
|
+
request.fileObject = null;
|
|
25481
|
+
}
|
|
25482
|
+
|
|
25483
|
+
Util.validateModel(request);
|
|
25484
|
+
return $tea.cast<UploadRfcAiboundFileResponse>(await this.doRequest("1.0", "riskplus.rfc.aibound.file.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadRfcAiboundFileResponse({}));
|
|
25485
|
+
}
|
|
25486
|
+
|
|
24800
25487
|
/**
|
|
24801
25488
|
* Description: 风险大脑企业版通用查询接口
|
|
24802
25489
|
* Summary: 【已废弃】
|