@antchain/riskplus 1.22.4 → 1.23.5
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 +222 -5
- package/dist/client.js +379 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +557 -8
package/src/client.ts
CHANGED
|
@@ -2331,6 +2331,39 @@ export class CompanyInfo extends $tea.Model {
|
|
|
2331
2331
|
}
|
|
2332
2332
|
}
|
|
2333
2333
|
|
|
2334
|
+
// 营销盾离线圈客任务详细信息
|
|
2335
|
+
export class UmktOfflineDecisionTaskDetailInfo extends $tea.Model {
|
|
2336
|
+
// 任务id
|
|
2337
|
+
taskId: number;
|
|
2338
|
+
// 圈客计划id
|
|
2339
|
+
decisionPlanId: number;
|
|
2340
|
+
// 圈客结果状态
|
|
2341
|
+
decisionResultStatus: string;
|
|
2342
|
+
// 圈客结果状态描述
|
|
2343
|
+
statusRemark: string;
|
|
2344
|
+
static names(): { [key: string]: string } {
|
|
2345
|
+
return {
|
|
2346
|
+
taskId: 'task_id',
|
|
2347
|
+
decisionPlanId: 'decision_plan_id',
|
|
2348
|
+
decisionResultStatus: 'decision_result_status',
|
|
2349
|
+
statusRemark: 'status_remark',
|
|
2350
|
+
};
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2353
|
+
static types(): { [key: string]: any } {
|
|
2354
|
+
return {
|
|
2355
|
+
taskId: 'number',
|
|
2356
|
+
decisionPlanId: 'number',
|
|
2357
|
+
decisionResultStatus: 'string',
|
|
2358
|
+
statusRemark: 'string',
|
|
2359
|
+
};
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
constructor(map?: { [key: string]: any }) {
|
|
2363
|
+
super(map);
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2334
2367
|
// 营销盾事件信息同步详情
|
|
2335
2368
|
export class EventResultSyncDetail extends $tea.Model {
|
|
2336
2369
|
// 事件唯一id(单个租户全局唯一)
|
|
@@ -7382,12 +7415,15 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7382
7415
|
// OAuth模式下的授权token
|
|
7383
7416
|
authToken?: string;
|
|
7384
7417
|
productInstanceId?: string;
|
|
7418
|
+
// 1:现金贷(默认)
|
|
7419
|
+
// 2:分期付
|
|
7420
|
+
prodType?: string;
|
|
7385
7421
|
// 身份证号
|
|
7386
|
-
cardNo
|
|
7422
|
+
cardNo?: string;
|
|
7387
7423
|
// 手机号
|
|
7388
|
-
mobile
|
|
7424
|
+
mobile?: string;
|
|
7389
7425
|
// 姓名
|
|
7390
|
-
customName
|
|
7426
|
+
customName?: string;
|
|
7391
7427
|
// 合作方产品编号
|
|
7392
7428
|
prodNo?: string;
|
|
7393
7429
|
// 渠道类型
|
|
@@ -7422,10 +7458,13 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7422
7458
|
// 0:明文
|
|
7423
7459
|
// 1:md5
|
|
7424
7460
|
customNameType?: string;
|
|
7461
|
+
// 资产方用户唯一标识
|
|
7462
|
+
openId?: string;
|
|
7425
7463
|
static names(): { [key: string]: string } {
|
|
7426
7464
|
return {
|
|
7427
7465
|
authToken: 'auth_token',
|
|
7428
7466
|
productInstanceId: 'product_instance_id',
|
|
7467
|
+
prodType: 'prod_type',
|
|
7429
7468
|
cardNo: 'card_no',
|
|
7430
7469
|
mobile: 'mobile',
|
|
7431
7470
|
customName: 'custom_name',
|
|
@@ -7443,6 +7482,7 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7443
7482
|
mobileType: 'mobile_type',
|
|
7444
7483
|
cardNoType: 'card_no_type',
|
|
7445
7484
|
customNameType: 'custom_name_type',
|
|
7485
|
+
openId: 'open_id',
|
|
7446
7486
|
};
|
|
7447
7487
|
}
|
|
7448
7488
|
|
|
@@ -7450,6 +7490,7 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7450
7490
|
return {
|
|
7451
7491
|
authToken: 'string',
|
|
7452
7492
|
productInstanceId: 'string',
|
|
7493
|
+
prodType: 'string',
|
|
7453
7494
|
cardNo: 'string',
|
|
7454
7495
|
mobile: 'string',
|
|
7455
7496
|
customName: 'string',
|
|
@@ -7467,6 +7508,7 @@ export class QueryDubbridgeRouterFundrouterRequest extends $tea.Model {
|
|
|
7467
7508
|
mobileType: 'string',
|
|
7468
7509
|
cardNoType: 'string',
|
|
7469
7510
|
customNameType: 'string',
|
|
7511
|
+
openId: 'string',
|
|
7470
7512
|
};
|
|
7471
7513
|
}
|
|
7472
7514
|
|
|
@@ -9692,12 +9734,16 @@ export class QueryDubbridgeUsecreditStatusRequest extends $tea.Model {
|
|
|
9692
9734
|
originalOrderNo: string;
|
|
9693
9735
|
// 请求网络流水号
|
|
9694
9736
|
orderNo: string;
|
|
9737
|
+
// 1:现金贷(默认)
|
|
9738
|
+
// 2:分期付
|
|
9739
|
+
prodType?: string;
|
|
9695
9740
|
static names(): { [key: string]: string } {
|
|
9696
9741
|
return {
|
|
9697
9742
|
authToken: 'auth_token',
|
|
9698
9743
|
productInstanceId: 'product_instance_id',
|
|
9699
9744
|
originalOrderNo: 'original_order_no',
|
|
9700
9745
|
orderNo: 'order_no',
|
|
9746
|
+
prodType: 'prod_type',
|
|
9701
9747
|
};
|
|
9702
9748
|
}
|
|
9703
9749
|
|
|
@@ -9707,6 +9753,7 @@ export class QueryDubbridgeUsecreditStatusRequest extends $tea.Model {
|
|
|
9707
9753
|
productInstanceId: 'string',
|
|
9708
9754
|
originalOrderNo: 'string',
|
|
9709
9755
|
orderNo: 'string',
|
|
9756
|
+
prodType: 'string',
|
|
9710
9757
|
};
|
|
9711
9758
|
}
|
|
9712
9759
|
|
|
@@ -11018,6 +11065,229 @@ export class QueryDubbridgeRepaytypeInfoResponse extends $tea.Model {
|
|
|
11018
11065
|
}
|
|
11019
11066
|
}
|
|
11020
11067
|
|
|
11068
|
+
export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
11069
|
+
// OAuth模式下的授权token
|
|
11070
|
+
authToken?: string;
|
|
11071
|
+
productInstanceId?: string;
|
|
11072
|
+
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
11073
|
+
orderNo: string;
|
|
11074
|
+
// 1:现金贷、2:分期付
|
|
11075
|
+
prodType: string;
|
|
11076
|
+
// 资产方用户唯一标识
|
|
11077
|
+
openId: string;
|
|
11078
|
+
// 手机号
|
|
11079
|
+
mobile: string;
|
|
11080
|
+
// 项目编号
|
|
11081
|
+
projectCode: string;
|
|
11082
|
+
// 交易金额,单位:元,如199.88(用于筛选额度充足的机构)
|
|
11083
|
+
tradeAmount: string;
|
|
11084
|
+
// 身份证号
|
|
11085
|
+
cardNo?: string;
|
|
11086
|
+
// 客户姓名
|
|
11087
|
+
customerName?: string;
|
|
11088
|
+
// 导流平台
|
|
11089
|
+
trafficPlatform?: string;
|
|
11090
|
+
// 流量来源名称,导流平台背后具体的流量名称
|
|
11091
|
+
trafficSourceName?: string;
|
|
11092
|
+
// 广告位id,流量来源内各广告位标志
|
|
11093
|
+
trafficAdId?: string;
|
|
11094
|
+
// 营销活动编号
|
|
11095
|
+
trafficMktId?: string;
|
|
11096
|
+
// 点击id
|
|
11097
|
+
clickId?: string;
|
|
11098
|
+
static names(): { [key: string]: string } {
|
|
11099
|
+
return {
|
|
11100
|
+
authToken: 'auth_token',
|
|
11101
|
+
productInstanceId: 'product_instance_id',
|
|
11102
|
+
orderNo: 'order_no',
|
|
11103
|
+
prodType: 'prod_type',
|
|
11104
|
+
openId: 'open_id',
|
|
11105
|
+
mobile: 'mobile',
|
|
11106
|
+
projectCode: 'project_code',
|
|
11107
|
+
tradeAmount: 'trade_amount',
|
|
11108
|
+
cardNo: 'card_no',
|
|
11109
|
+
customerName: 'customer_name',
|
|
11110
|
+
trafficPlatform: 'traffic_platform',
|
|
11111
|
+
trafficSourceName: 'traffic_source_name',
|
|
11112
|
+
trafficAdId: 'traffic_ad_id',
|
|
11113
|
+
trafficMktId: 'traffic_mkt_id',
|
|
11114
|
+
clickId: 'click_id',
|
|
11115
|
+
};
|
|
11116
|
+
}
|
|
11117
|
+
|
|
11118
|
+
static types(): { [key: string]: any } {
|
|
11119
|
+
return {
|
|
11120
|
+
authToken: 'string',
|
|
11121
|
+
productInstanceId: 'string',
|
|
11122
|
+
orderNo: 'string',
|
|
11123
|
+
prodType: 'string',
|
|
11124
|
+
openId: 'string',
|
|
11125
|
+
mobile: 'string',
|
|
11126
|
+
projectCode: 'string',
|
|
11127
|
+
tradeAmount: 'string',
|
|
11128
|
+
cardNo: 'string',
|
|
11129
|
+
customerName: 'string',
|
|
11130
|
+
trafficPlatform: 'string',
|
|
11131
|
+
trafficSourceName: 'string',
|
|
11132
|
+
trafficAdId: 'string',
|
|
11133
|
+
trafficMktId: 'string',
|
|
11134
|
+
clickId: 'string',
|
|
11135
|
+
};
|
|
11136
|
+
}
|
|
11137
|
+
|
|
11138
|
+
constructor(map?: { [key: string]: any }) {
|
|
11139
|
+
super(map);
|
|
11140
|
+
}
|
|
11141
|
+
}
|
|
11142
|
+
|
|
11143
|
+
export class QueryDubbridgeInstallmentCreditamtResponse extends $tea.Model {
|
|
11144
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11145
|
+
reqMsgId?: string;
|
|
11146
|
+
// 结果码,一般OK表示调用成功
|
|
11147
|
+
resultCode?: string;
|
|
11148
|
+
// 异常信息的文本描述
|
|
11149
|
+
resultMsg?: string;
|
|
11150
|
+
// 授信申请状态:
|
|
11151
|
+
// 0- 通过
|
|
11152
|
+
// 1- 拒绝
|
|
11153
|
+
// 2- 审批中
|
|
11154
|
+
// 3- 失败
|
|
11155
|
+
//
|
|
11156
|
+
applyStatus?: string;
|
|
11157
|
+
// 额度状态:
|
|
11158
|
+
// 0- 正常
|
|
11159
|
+
// 1- 冻结
|
|
11160
|
+
// 2- 过期
|
|
11161
|
+
creditStatus?: string;
|
|
11162
|
+
// 授信总额度,单位:元
|
|
11163
|
+
creditAmount?: number;
|
|
11164
|
+
// 可用余额
|
|
11165
|
+
restAmount?: number;
|
|
11166
|
+
// 发放日期,yyyy-MM-dd
|
|
11167
|
+
payDate?: string;
|
|
11168
|
+
// 到期日期,yyyy-MM-dd
|
|
11169
|
+
expireDate?: string;
|
|
11170
|
+
// 授信年利率。精确到小数点后四位0.1250,表示年利率为12.5%
|
|
11171
|
+
rateValue?: number;
|
|
11172
|
+
// 资金方编号
|
|
11173
|
+
fundCode?: string;
|
|
11174
|
+
// 资金方简称
|
|
11175
|
+
abbreFundName?: string;
|
|
11176
|
+
// 1:现金贷、2:分期付
|
|
11177
|
+
prodType?: string;
|
|
11178
|
+
static names(): { [key: string]: string } {
|
|
11179
|
+
return {
|
|
11180
|
+
reqMsgId: 'req_msg_id',
|
|
11181
|
+
resultCode: 'result_code',
|
|
11182
|
+
resultMsg: 'result_msg',
|
|
11183
|
+
applyStatus: 'apply_status',
|
|
11184
|
+
creditStatus: 'credit_status',
|
|
11185
|
+
creditAmount: 'credit_amount',
|
|
11186
|
+
restAmount: 'rest_amount',
|
|
11187
|
+
payDate: 'pay_date',
|
|
11188
|
+
expireDate: 'expire_date',
|
|
11189
|
+
rateValue: 'rate_value',
|
|
11190
|
+
fundCode: 'fund_code',
|
|
11191
|
+
abbreFundName: 'abbre_fund_name',
|
|
11192
|
+
prodType: 'prod_type',
|
|
11193
|
+
};
|
|
11194
|
+
}
|
|
11195
|
+
|
|
11196
|
+
static types(): { [key: string]: any } {
|
|
11197
|
+
return {
|
|
11198
|
+
reqMsgId: 'string',
|
|
11199
|
+
resultCode: 'string',
|
|
11200
|
+
resultMsg: 'string',
|
|
11201
|
+
applyStatus: 'string',
|
|
11202
|
+
creditStatus: 'string',
|
|
11203
|
+
creditAmount: 'number',
|
|
11204
|
+
restAmount: 'number',
|
|
11205
|
+
payDate: 'string',
|
|
11206
|
+
expireDate: 'string',
|
|
11207
|
+
rateValue: 'number',
|
|
11208
|
+
fundCode: 'string',
|
|
11209
|
+
abbreFundName: 'string',
|
|
11210
|
+
prodType: 'string',
|
|
11211
|
+
};
|
|
11212
|
+
}
|
|
11213
|
+
|
|
11214
|
+
constructor(map?: { [key: string]: any }) {
|
|
11215
|
+
super(map);
|
|
11216
|
+
}
|
|
11217
|
+
}
|
|
11218
|
+
|
|
11219
|
+
export class CancelDubbridgeInstallmentOrderRequest extends $tea.Model {
|
|
11220
|
+
// OAuth模式下的授权token
|
|
11221
|
+
authToken?: string;
|
|
11222
|
+
productInstanceId?: string;
|
|
11223
|
+
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
11224
|
+
orderNo: string;
|
|
11225
|
+
// 待支付的购物订单编号
|
|
11226
|
+
bizOrderNo: string;
|
|
11227
|
+
// 渠道方唯一标识
|
|
11228
|
+
openId?: string;
|
|
11229
|
+
// 天枢客户号
|
|
11230
|
+
customerNo?: string;
|
|
11231
|
+
static names(): { [key: string]: string } {
|
|
11232
|
+
return {
|
|
11233
|
+
authToken: 'auth_token',
|
|
11234
|
+
productInstanceId: 'product_instance_id',
|
|
11235
|
+
orderNo: 'order_no',
|
|
11236
|
+
bizOrderNo: 'biz_order_no',
|
|
11237
|
+
openId: 'open_id',
|
|
11238
|
+
customerNo: 'customer_no',
|
|
11239
|
+
};
|
|
11240
|
+
}
|
|
11241
|
+
|
|
11242
|
+
static types(): { [key: string]: any } {
|
|
11243
|
+
return {
|
|
11244
|
+
authToken: 'string',
|
|
11245
|
+
productInstanceId: 'string',
|
|
11246
|
+
orderNo: 'string',
|
|
11247
|
+
bizOrderNo: 'string',
|
|
11248
|
+
openId: 'string',
|
|
11249
|
+
customerNo: 'string',
|
|
11250
|
+
};
|
|
11251
|
+
}
|
|
11252
|
+
|
|
11253
|
+
constructor(map?: { [key: string]: any }) {
|
|
11254
|
+
super(map);
|
|
11255
|
+
}
|
|
11256
|
+
}
|
|
11257
|
+
|
|
11258
|
+
export class CancelDubbridgeInstallmentOrderResponse extends $tea.Model {
|
|
11259
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11260
|
+
reqMsgId?: string;
|
|
11261
|
+
// 结果码,一般OK表示调用成功
|
|
11262
|
+
resultCode?: string;
|
|
11263
|
+
// 异常信息的文本描述
|
|
11264
|
+
resultMsg?: string;
|
|
11265
|
+
// 订单取消请求接受结果:
|
|
11266
|
+
// Y: 成功; N: 失败
|
|
11267
|
+
cancelResult?: string;
|
|
11268
|
+
static names(): { [key: string]: string } {
|
|
11269
|
+
return {
|
|
11270
|
+
reqMsgId: 'req_msg_id',
|
|
11271
|
+
resultCode: 'result_code',
|
|
11272
|
+
resultMsg: 'result_msg',
|
|
11273
|
+
cancelResult: 'cancel_result',
|
|
11274
|
+
};
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11277
|
+
static types(): { [key: string]: any } {
|
|
11278
|
+
return {
|
|
11279
|
+
reqMsgId: 'string',
|
|
11280
|
+
resultCode: 'string',
|
|
11281
|
+
resultMsg: 'string',
|
|
11282
|
+
cancelResult: 'string',
|
|
11283
|
+
};
|
|
11284
|
+
}
|
|
11285
|
+
|
|
11286
|
+
constructor(map?: { [key: string]: any }) {
|
|
11287
|
+
super(map);
|
|
11288
|
+
}
|
|
11289
|
+
}
|
|
11290
|
+
|
|
11021
11291
|
export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
11022
11292
|
// OAuth模式下的授权token
|
|
11023
11293
|
authToken?: string;
|
|
@@ -13905,6 +14175,80 @@ export class QueryRdaasTaxSimpleauthdecisionResponse extends $tea.Model {
|
|
|
13905
14175
|
}
|
|
13906
14176
|
}
|
|
13907
14177
|
|
|
14178
|
+
export class ReceiveRfcParamsFileRequest extends $tea.Model {
|
|
14179
|
+
// OAuth模式下的授权token
|
|
14180
|
+
authToken?: string;
|
|
14181
|
+
productInstanceId?: string;
|
|
14182
|
+
// 文件ID
|
|
14183
|
+
//
|
|
14184
|
+
fileObject?: Readable;
|
|
14185
|
+
fileObjectName?: string;
|
|
14186
|
+
fileId: string;
|
|
14187
|
+
// 参数,jsonString
|
|
14188
|
+
params: string;
|
|
14189
|
+
// 请求类型:示例 OCR_IDENTIFY-->OCR识别业务
|
|
14190
|
+
type: string;
|
|
14191
|
+
static names(): { [key: string]: string } {
|
|
14192
|
+
return {
|
|
14193
|
+
authToken: 'auth_token',
|
|
14194
|
+
productInstanceId: 'product_instance_id',
|
|
14195
|
+
fileObject: 'fileObject',
|
|
14196
|
+
fileObjectName: 'fileObjectName',
|
|
14197
|
+
fileId: 'file_id',
|
|
14198
|
+
params: 'params',
|
|
14199
|
+
type: 'type',
|
|
14200
|
+
};
|
|
14201
|
+
}
|
|
14202
|
+
|
|
14203
|
+
static types(): { [key: string]: any } {
|
|
14204
|
+
return {
|
|
14205
|
+
authToken: 'string',
|
|
14206
|
+
productInstanceId: 'string',
|
|
14207
|
+
fileObject: 'Readable',
|
|
14208
|
+
fileObjectName: 'string',
|
|
14209
|
+
fileId: 'string',
|
|
14210
|
+
params: 'string',
|
|
14211
|
+
type: 'string',
|
|
14212
|
+
};
|
|
14213
|
+
}
|
|
14214
|
+
|
|
14215
|
+
constructor(map?: { [key: string]: any }) {
|
|
14216
|
+
super(map);
|
|
14217
|
+
}
|
|
14218
|
+
}
|
|
14219
|
+
|
|
14220
|
+
export class ReceiveRfcParamsFileResponse extends $tea.Model {
|
|
14221
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
14222
|
+
reqMsgId?: string;
|
|
14223
|
+
// 结果码,一般OK表示调用成功
|
|
14224
|
+
resultCode?: string;
|
|
14225
|
+
// 异常信息的文本描述
|
|
14226
|
+
resultMsg?: string;
|
|
14227
|
+
// 文件上传响应参数
|
|
14228
|
+
content?: string;
|
|
14229
|
+
static names(): { [key: string]: string } {
|
|
14230
|
+
return {
|
|
14231
|
+
reqMsgId: 'req_msg_id',
|
|
14232
|
+
resultCode: 'result_code',
|
|
14233
|
+
resultMsg: 'result_msg',
|
|
14234
|
+
content: 'content',
|
|
14235
|
+
};
|
|
14236
|
+
}
|
|
14237
|
+
|
|
14238
|
+
static types(): { [key: string]: any } {
|
|
14239
|
+
return {
|
|
14240
|
+
reqMsgId: 'string',
|
|
14241
|
+
resultCode: 'string',
|
|
14242
|
+
resultMsg: 'string',
|
|
14243
|
+
content: 'string',
|
|
14244
|
+
};
|
|
14245
|
+
}
|
|
14246
|
+
|
|
14247
|
+
constructor(map?: { [key: string]: any }) {
|
|
14248
|
+
super(map);
|
|
14249
|
+
}
|
|
14250
|
+
}
|
|
14251
|
+
|
|
13908
14252
|
export class QueryRbbGenericInvokeRequest extends $tea.Model {
|
|
13909
14253
|
// OAuth模式下的授权token
|
|
13910
14254
|
authToken?: string;
|
|
@@ -15470,6 +15814,79 @@ export class PushRbbInvoiceChargeResponse extends $tea.Model {
|
|
|
15470
15814
|
}
|
|
15471
15815
|
}
|
|
15472
15816
|
|
|
15817
|
+
export class ReceiveRbbParamsFileRequest extends $tea.Model {
|
|
15818
|
+
// OAuth模式下的授权token
|
|
15819
|
+
authToken?: string;
|
|
15820
|
+
productInstanceId?: string;
|
|
15821
|
+
// 文件ID
|
|
15822
|
+
fileObject?: Readable;
|
|
15823
|
+
fileObjectName?: string;
|
|
15824
|
+
fileId: string;
|
|
15825
|
+
// 参数,jsonString
|
|
15826
|
+
params: string;
|
|
15827
|
+
// 请求类型:示例 CREDIT_REPORTS-->征信报告上传
|
|
15828
|
+
type: string;
|
|
15829
|
+
static names(): { [key: string]: string } {
|
|
15830
|
+
return {
|
|
15831
|
+
authToken: 'auth_token',
|
|
15832
|
+
productInstanceId: 'product_instance_id',
|
|
15833
|
+
fileObject: 'fileObject',
|
|
15834
|
+
fileObjectName: 'fileObjectName',
|
|
15835
|
+
fileId: 'file_id',
|
|
15836
|
+
params: 'params',
|
|
15837
|
+
type: 'type',
|
|
15838
|
+
};
|
|
15839
|
+
}
|
|
15840
|
+
|
|
15841
|
+
static types(): { [key: string]: any } {
|
|
15842
|
+
return {
|
|
15843
|
+
authToken: 'string',
|
|
15844
|
+
productInstanceId: 'string',
|
|
15845
|
+
fileObject: 'Readable',
|
|
15846
|
+
fileObjectName: 'string',
|
|
15847
|
+
fileId: 'string',
|
|
15848
|
+
params: 'string',
|
|
15849
|
+
type: 'string',
|
|
15850
|
+
};
|
|
15851
|
+
}
|
|
15852
|
+
|
|
15853
|
+
constructor(map?: { [key: string]: any }) {
|
|
15854
|
+
super(map);
|
|
15855
|
+
}
|
|
15856
|
+
}
|
|
15857
|
+
|
|
15858
|
+
export class ReceiveRbbParamsFileResponse extends $tea.Model {
|
|
15859
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
15860
|
+
reqMsgId?: string;
|
|
15861
|
+
// 结果码,一般OK表示调用成功
|
|
15862
|
+
resultCode?: string;
|
|
15863
|
+
// 异常信息的文本描述
|
|
15864
|
+
resultMsg?: string;
|
|
15865
|
+
// 文件上传结果
|
|
15866
|
+
content?: string;
|
|
15867
|
+
static names(): { [key: string]: string } {
|
|
15868
|
+
return {
|
|
15869
|
+
reqMsgId: 'req_msg_id',
|
|
15870
|
+
resultCode: 'result_code',
|
|
15871
|
+
resultMsg: 'result_msg',
|
|
15872
|
+
content: 'content',
|
|
15873
|
+
};
|
|
15874
|
+
}
|
|
15875
|
+
|
|
15876
|
+
static types(): { [key: string]: any } {
|
|
15877
|
+
return {
|
|
15878
|
+
reqMsgId: 'string',
|
|
15879
|
+
resultCode: 'string',
|
|
15880
|
+
resultMsg: 'string',
|
|
15881
|
+
content: 'string',
|
|
15882
|
+
};
|
|
15883
|
+
}
|
|
15884
|
+
|
|
15885
|
+
constructor(map?: { [key: string]: any }) {
|
|
15886
|
+
super(map);
|
|
15887
|
+
}
|
|
15888
|
+
}
|
|
15889
|
+
|
|
15473
15890
|
export class PushRpaasReportAnswerRequest extends $tea.Model {
|
|
15474
15891
|
// OAuth模式下的授权token
|
|
15475
15892
|
authToken?: string;
|
|
@@ -21405,12 +21822,15 @@ export class QueryUmktOfflinedecisionResultResponse extends $tea.Model {
|
|
|
21405
21822
|
resultMsg?: string;
|
|
21406
21823
|
// 已完成的计划策略集合
|
|
21407
21824
|
decisionPlanIdList?: number[];
|
|
21825
|
+
// 批次维度圈客任务结果
|
|
21826
|
+
taskExecBatchInfo?: UmktOfflineDecisionTaskDetailInfo[];
|
|
21408
21827
|
static names(): { [key: string]: string } {
|
|
21409
21828
|
return {
|
|
21410
21829
|
reqMsgId: 'req_msg_id',
|
|
21411
21830
|
resultCode: 'result_code',
|
|
21412
21831
|
resultMsg: 'result_msg',
|
|
21413
21832
|
decisionPlanIdList: 'decision_plan_id_list',
|
|
21833
|
+
taskExecBatchInfo: 'task_exec_batch_info',
|
|
21414
21834
|
};
|
|
21415
21835
|
}
|
|
21416
21836
|
|
|
@@ -21420,6 +21840,7 @@ export class QueryUmktOfflinedecisionResultResponse extends $tea.Model {
|
|
|
21420
21840
|
resultCode: 'string',
|
|
21421
21841
|
resultMsg: 'string',
|
|
21422
21842
|
decisionPlanIdList: { 'type': 'array', 'itemType': 'number' },
|
|
21843
|
+
taskExecBatchInfo: { 'type': 'array', 'itemType': UmktOfflineDecisionTaskDetailInfo },
|
|
21423
21844
|
};
|
|
21424
21845
|
}
|
|
21425
21846
|
|
|
@@ -21440,6 +21861,8 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
|
|
|
21440
21861
|
// 格式:yyyy-MM-dd
|
|
21441
21862
|
// 默认当前时间的前一天
|
|
21442
21863
|
resultDate?: string;
|
|
21864
|
+
// 离线圈客任务id
|
|
21865
|
+
taskId?: number;
|
|
21443
21866
|
static names(): { [key: string]: string } {
|
|
21444
21867
|
return {
|
|
21445
21868
|
authToken: 'auth_token',
|
|
@@ -21447,6 +21870,7 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
|
|
|
21447
21870
|
offlineDecisionPlanId: 'offline_decision_plan_id',
|
|
21448
21871
|
decisionPlanId: 'decision_plan_id',
|
|
21449
21872
|
resultDate: 'result_date',
|
|
21873
|
+
taskId: 'task_id',
|
|
21450
21874
|
};
|
|
21451
21875
|
}
|
|
21452
21876
|
|
|
@@ -21457,6 +21881,7 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
|
|
|
21457
21881
|
offlineDecisionPlanId: 'number',
|
|
21458
21882
|
decisionPlanId: 'number',
|
|
21459
21883
|
resultDate: 'string',
|
|
21884
|
+
taskId: 'number',
|
|
21460
21885
|
};
|
|
21461
21886
|
}
|
|
21462
21887
|
|
|
@@ -21539,6 +21964,8 @@ export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
|
21539
21964
|
offlineDecisionPlanCount?: number;
|
|
21540
21965
|
// 离线圈客计划详细
|
|
21541
21966
|
planDetailList?: OfflineDecisionPlanDetail[];
|
|
21967
|
+
// 执行批次维度任务详情信息
|
|
21968
|
+
taskExecBatchInfo?: UmktOfflineDecisionTaskDetailInfo[];
|
|
21542
21969
|
static names(): { [key: string]: string } {
|
|
21543
21970
|
return {
|
|
21544
21971
|
reqMsgId: 'req_msg_id',
|
|
@@ -21546,6 +21973,7 @@ export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
|
21546
21973
|
resultMsg: 'result_msg',
|
|
21547
21974
|
offlineDecisionPlanCount: 'offline_decision_plan_count',
|
|
21548
21975
|
planDetailList: 'plan_detail_list',
|
|
21976
|
+
taskExecBatchInfo: 'task_exec_batch_info',
|
|
21549
21977
|
};
|
|
21550
21978
|
}
|
|
21551
21979
|
|
|
@@ -21556,6 +21984,7 @@ export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
|
21556
21984
|
resultMsg: 'string',
|
|
21557
21985
|
offlineDecisionPlanCount: 'number',
|
|
21558
21986
|
planDetailList: { 'type': 'array', 'itemType': OfflineDecisionPlanDetail },
|
|
21987
|
+
taskExecBatchInfo: { 'type': 'array', 'itemType': UmktOfflineDecisionTaskDetailInfo },
|
|
21559
21988
|
};
|
|
21560
21989
|
}
|
|
21561
21990
|
|
|
@@ -21830,7 +22259,7 @@ export default class Client {
|
|
|
21830
22259
|
req_msg_id: AntchainUtil.getNonce(),
|
|
21831
22260
|
access_key: this._accessKeyId,
|
|
21832
22261
|
base_sdk_version: "TeaSDK-2.0",
|
|
21833
|
-
sdk_version: "1.
|
|
22262
|
+
sdk_version: "1.23.5",
|
|
21834
22263
|
_prod_code: "RISKPLUS",
|
|
21835
22264
|
_prod_channel: "undefined",
|
|
21836
22265
|
};
|
|
@@ -23287,6 +23716,44 @@ export default class Client {
|
|
|
23287
23716
|
return $tea.cast<QueryDubbridgeRepaytypeInfoResponse>(await this.doRequest("1.0", "riskplus.dubbridge.repaytype.info.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeRepaytypeInfoResponse({}));
|
|
23288
23717
|
}
|
|
23289
23718
|
|
|
23719
|
+
/**
|
|
23720
|
+
* Description: 天枢系统授信额度查询接口-分期付
|
|
23721
|
+
* Summary: 天枢系统授信额度查询接口-分期付
|
|
23722
|
+
*/
|
|
23723
|
+
async queryDubbridgeInstallmentCreditamt(request: QueryDubbridgeInstallmentCreditamtRequest): Promise<QueryDubbridgeInstallmentCreditamtResponse> {
|
|
23724
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23725
|
+
let headers : {[key: string ]: string} = { };
|
|
23726
|
+
return await this.queryDubbridgeInstallmentCreditamtEx(request, headers, runtime);
|
|
23727
|
+
}
|
|
23728
|
+
|
|
23729
|
+
/**
|
|
23730
|
+
* Description: 天枢系统授信额度查询接口-分期付
|
|
23731
|
+
* Summary: 天枢系统授信额度查询接口-分期付
|
|
23732
|
+
*/
|
|
23733
|
+
async queryDubbridgeInstallmentCreditamtEx(request: QueryDubbridgeInstallmentCreditamtRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeInstallmentCreditamtResponse> {
|
|
23734
|
+
Util.validateModel(request);
|
|
23735
|
+
return $tea.cast<QueryDubbridgeInstallmentCreditamtResponse>(await this.doRequest("1.0", "riskplus.dubbridge.installment.creditamt.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeInstallmentCreditamtResponse({}));
|
|
23736
|
+
}
|
|
23737
|
+
|
|
23738
|
+
/**
|
|
23739
|
+
* Description: 天枢系统取消分期付订单-分期付
|
|
23740
|
+
* Summary: 天枢系统取消分期付订单-分期付
|
|
23741
|
+
*/
|
|
23742
|
+
async cancelDubbridgeInstallmentOrder(request: CancelDubbridgeInstallmentOrderRequest): Promise<CancelDubbridgeInstallmentOrderResponse> {
|
|
23743
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23744
|
+
let headers : {[key: string ]: string} = { };
|
|
23745
|
+
return await this.cancelDubbridgeInstallmentOrderEx(request, headers, runtime);
|
|
23746
|
+
}
|
|
23747
|
+
|
|
23748
|
+
/**
|
|
23749
|
+
* Description: 天枢系统取消分期付订单-分期付
|
|
23750
|
+
* Summary: 天枢系统取消分期付订单-分期付
|
|
23751
|
+
*/
|
|
23752
|
+
async cancelDubbridgeInstallmentOrderEx(request: CancelDubbridgeInstallmentOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CancelDubbridgeInstallmentOrderResponse> {
|
|
23753
|
+
Util.validateModel(request);
|
|
23754
|
+
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({}));
|
|
23755
|
+
}
|
|
23756
|
+
|
|
23290
23757
|
/**
|
|
23291
23758
|
* Description: 四要素认证首先调用此接口
|
|
23292
23759
|
* Summary: 芝麻四要素接口
|
|
@@ -23865,7 +24332,7 @@ export default class Client {
|
|
|
23865
24332
|
|
|
23866
24333
|
/**
|
|
23867
24334
|
* Description: 蚁盾业务回流事件推送
|
|
23868
|
-
* Summary:
|
|
24335
|
+
* Summary: 蚁盾业务回流事件推送
|
|
23869
24336
|
*/
|
|
23870
24337
|
async pushQmpBackflowEvent(request: PushQmpBackflowEventRequest): Promise<PushQmpBackflowEventResponse> {
|
|
23871
24338
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -23875,7 +24342,7 @@ export default class Client {
|
|
|
23875
24342
|
|
|
23876
24343
|
/**
|
|
23877
24344
|
* Description: 蚁盾业务回流事件推送
|
|
23878
|
-
* Summary:
|
|
24345
|
+
* Summary: 蚁盾业务回流事件推送
|
|
23879
24346
|
*/
|
|
23880
24347
|
async pushQmpBackflowEventEx(request: PushQmpBackflowEventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowEventResponse> {
|
|
23881
24348
|
Util.validateModel(request);
|
|
@@ -24015,6 +24482,47 @@ export default class Client {
|
|
|
24015
24482
|
return $tea.cast<QueryRdaasTaxSimpleauthdecisionResponse>(await this.doRequest("1.0", "riskplus.rdaas.tax.simpleauthdecision.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryRdaasTaxSimpleauthdecisionResponse({}));
|
|
24016
24483
|
}
|
|
24017
24484
|
|
|
24485
|
+
/**
|
|
24486
|
+
* Description: rfc外部文件上传
|
|
24487
|
+
* Summary: rfc外部文件上传
|
|
24488
|
+
*/
|
|
24489
|
+
async receiveRfcParamsFile(request: ReceiveRfcParamsFileRequest): Promise<ReceiveRfcParamsFileResponse> {
|
|
24490
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24491
|
+
let headers : {[key: string ]: string} = { };
|
|
24492
|
+
return await this.receiveRfcParamsFileEx(request, headers, runtime);
|
|
24493
|
+
}
|
|
24494
|
+
|
|
24495
|
+
/**
|
|
24496
|
+
* Description: rfc外部文件上传
|
|
24497
|
+
* Summary: rfc外部文件上传
|
|
24498
|
+
*/
|
|
24499
|
+
async receiveRfcParamsFileEx(request: ReceiveRfcParamsFileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReceiveRfcParamsFileResponse> {
|
|
24500
|
+
if (!Util.isUnset(request.fileObject)) {
|
|
24501
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
24502
|
+
authToken: request.authToken,
|
|
24503
|
+
apiCode: "riskplus.rfc.params.file.receive",
|
|
24504
|
+
fileName: request.fileObjectName,
|
|
24505
|
+
});
|
|
24506
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
24507
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
24508
|
+
let receiveRfcParamsFileResponse = new ReceiveRfcParamsFileResponse({
|
|
24509
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
24510
|
+
resultCode: uploadResp.resultCode,
|
|
24511
|
+
resultMsg: uploadResp.resultMsg,
|
|
24512
|
+
});
|
|
24513
|
+
return receiveRfcParamsFileResponse;
|
|
24514
|
+
}
|
|
24515
|
+
|
|
24516
|
+
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
24517
|
+
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
24518
|
+
request.fileId = uploadResp.fileId;
|
|
24519
|
+
request.fileObject = null;
|
|
24520
|
+
}
|
|
24521
|
+
|
|
24522
|
+
Util.validateModel(request);
|
|
24523
|
+
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({}));
|
|
24524
|
+
}
|
|
24525
|
+
|
|
24018
24526
|
/**
|
|
24019
24527
|
* Description: 风险大脑企业版通用查询接口
|
|
24020
24528
|
* Summary: 【已废弃】
|
|
@@ -24474,6 +24982,47 @@ export default class Client {
|
|
|
24474
24982
|
return $tea.cast<PushRbbInvoiceChargeResponse>(await this.doRequest("1.0", "riskplus.rbb.invoice.charge.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushRbbInvoiceChargeResponse({}));
|
|
24475
24983
|
}
|
|
24476
24984
|
|
|
24985
|
+
/**
|
|
24986
|
+
* Description: 通过接口进行报告上传
|
|
24987
|
+
* Summary: 征信报告上传接口
|
|
24988
|
+
*/
|
|
24989
|
+
async receiveRbbParamsFile(request: ReceiveRbbParamsFileRequest): Promise<ReceiveRbbParamsFileResponse> {
|
|
24990
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24991
|
+
let headers : {[key: string ]: string} = { };
|
|
24992
|
+
return await this.receiveRbbParamsFileEx(request, headers, runtime);
|
|
24993
|
+
}
|
|
24994
|
+
|
|
24995
|
+
/**
|
|
24996
|
+
* Description: 通过接口进行报告上传
|
|
24997
|
+
* Summary: 征信报告上传接口
|
|
24998
|
+
*/
|
|
24999
|
+
async receiveRbbParamsFileEx(request: ReceiveRbbParamsFileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReceiveRbbParamsFileResponse> {
|
|
25000
|
+
if (!Util.isUnset(request.fileObject)) {
|
|
25001
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
25002
|
+
authToken: request.authToken,
|
|
25003
|
+
apiCode: "riskplus.rbb.params.file.receive",
|
|
25004
|
+
fileName: request.fileObjectName,
|
|
25005
|
+
});
|
|
25006
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
25007
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
25008
|
+
let receiveRbbParamsFileResponse = new ReceiveRbbParamsFileResponse({
|
|
25009
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
25010
|
+
resultCode: uploadResp.resultCode,
|
|
25011
|
+
resultMsg: uploadResp.resultMsg,
|
|
25012
|
+
});
|
|
25013
|
+
return receiveRbbParamsFileResponse;
|
|
25014
|
+
}
|
|
25015
|
+
|
|
25016
|
+
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
25017
|
+
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
25018
|
+
request.fileId = uploadResp.fileId;
|
|
25019
|
+
request.fileObject = null;
|
|
25020
|
+
}
|
|
25021
|
+
|
|
25022
|
+
Util.validateModel(request);
|
|
25023
|
+
return $tea.cast<ReceiveRbbParamsFileResponse>(await this.doRequest("1.0", "riskplus.rbb.params.file.receive", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ReceiveRbbParamsFileResponse({}));
|
|
25024
|
+
}
|
|
25025
|
+
|
|
24477
25026
|
/**
|
|
24478
25027
|
* Description: 报告结果推送,算法调用
|
|
24479
25028
|
* Summary: 报告结果推送
|
|
@@ -25930,7 +26479,7 @@ export default class Client {
|
|
|
25930
26479
|
|
|
25931
26480
|
/**
|
|
25932
26481
|
* Description: 包含离线圈客关联计划和任务状态详情
|
|
25933
|
-
* Summary: 营销盾离线圈客计划执行详情
|
|
26482
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
25934
26483
|
*/
|
|
25935
26484
|
async queryUmktOfflinedecisionPlandetails(request: QueryUmktOfflinedecisionPlandetailsRequest): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
25936
26485
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -25940,7 +26489,7 @@ export default class Client {
|
|
|
25940
26489
|
|
|
25941
26490
|
/**
|
|
25942
26491
|
* Description: 包含离线圈客关联计划和任务状态详情
|
|
25943
|
-
* Summary: 营销盾离线圈客计划执行详情
|
|
26492
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
25944
26493
|
*/
|
|
25945
26494
|
async queryUmktOfflinedecisionPlandetailsEx(request: QueryUmktOfflinedecisionPlandetailsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
25946
26495
|
Util.validateModel(request);
|