@antchain/riskplus 1.22.3 → 1.23.4
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 +215 -3
- package/dist/client.js +367 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +535 -6
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,209 @@ 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
|
+
static names(): { [key: string]: string } {
|
|
11089
|
+
return {
|
|
11090
|
+
authToken: 'auth_token',
|
|
11091
|
+
productInstanceId: 'product_instance_id',
|
|
11092
|
+
orderNo: 'order_no',
|
|
11093
|
+
prodType: 'prod_type',
|
|
11094
|
+
openId: 'open_id',
|
|
11095
|
+
mobile: 'mobile',
|
|
11096
|
+
projectCode: 'project_code',
|
|
11097
|
+
tradeAmount: 'trade_amount',
|
|
11098
|
+
cardNo: 'card_no',
|
|
11099
|
+
customerName: 'customer_name',
|
|
11100
|
+
};
|
|
11101
|
+
}
|
|
11102
|
+
|
|
11103
|
+
static types(): { [key: string]: any } {
|
|
11104
|
+
return {
|
|
11105
|
+
authToken: 'string',
|
|
11106
|
+
productInstanceId: 'string',
|
|
11107
|
+
orderNo: 'string',
|
|
11108
|
+
prodType: 'string',
|
|
11109
|
+
openId: 'string',
|
|
11110
|
+
mobile: 'string',
|
|
11111
|
+
projectCode: 'string',
|
|
11112
|
+
tradeAmount: 'string',
|
|
11113
|
+
cardNo: 'string',
|
|
11114
|
+
customerName: 'string',
|
|
11115
|
+
};
|
|
11116
|
+
}
|
|
11117
|
+
|
|
11118
|
+
constructor(map?: { [key: string]: any }) {
|
|
11119
|
+
super(map);
|
|
11120
|
+
}
|
|
11121
|
+
}
|
|
11122
|
+
|
|
11123
|
+
export class QueryDubbridgeInstallmentCreditamtResponse extends $tea.Model {
|
|
11124
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11125
|
+
reqMsgId?: string;
|
|
11126
|
+
// 结果码,一般OK表示调用成功
|
|
11127
|
+
resultCode?: string;
|
|
11128
|
+
// 异常信息的文本描述
|
|
11129
|
+
resultMsg?: string;
|
|
11130
|
+
// 授信申请状态:
|
|
11131
|
+
// 0- 通过
|
|
11132
|
+
// 1- 拒绝
|
|
11133
|
+
// 2- 审批中
|
|
11134
|
+
// 3- 失败
|
|
11135
|
+
//
|
|
11136
|
+
applyStatus?: string;
|
|
11137
|
+
// 额度状态:
|
|
11138
|
+
// 0- 正常
|
|
11139
|
+
// 1- 冻结
|
|
11140
|
+
// 2- 过期
|
|
11141
|
+
creditStatus?: string;
|
|
11142
|
+
// 授信总额度,单位:元
|
|
11143
|
+
creditAmount?: number;
|
|
11144
|
+
// 可用余额
|
|
11145
|
+
restAmount?: number;
|
|
11146
|
+
// 发放日期,yyyy-MM-dd
|
|
11147
|
+
payDate?: string;
|
|
11148
|
+
// 到期日期,yyyy-MM-dd
|
|
11149
|
+
expireDate?: string;
|
|
11150
|
+
// 授信年利率。精确到小数点后四位0.1250,表示年利率为12.5%
|
|
11151
|
+
rateValue?: number;
|
|
11152
|
+
// 资金方编号
|
|
11153
|
+
fundCode?: string;
|
|
11154
|
+
// 资金方简称
|
|
11155
|
+
abbreFundName?: string;
|
|
11156
|
+
// 1:现金贷、2:分期付
|
|
11157
|
+
prodType?: string;
|
|
11158
|
+
static names(): { [key: string]: string } {
|
|
11159
|
+
return {
|
|
11160
|
+
reqMsgId: 'req_msg_id',
|
|
11161
|
+
resultCode: 'result_code',
|
|
11162
|
+
resultMsg: 'result_msg',
|
|
11163
|
+
applyStatus: 'apply_status',
|
|
11164
|
+
creditStatus: 'credit_status',
|
|
11165
|
+
creditAmount: 'credit_amount',
|
|
11166
|
+
restAmount: 'rest_amount',
|
|
11167
|
+
payDate: 'pay_date',
|
|
11168
|
+
expireDate: 'expire_date',
|
|
11169
|
+
rateValue: 'rate_value',
|
|
11170
|
+
fundCode: 'fund_code',
|
|
11171
|
+
abbreFundName: 'abbre_fund_name',
|
|
11172
|
+
prodType: 'prod_type',
|
|
11173
|
+
};
|
|
11174
|
+
}
|
|
11175
|
+
|
|
11176
|
+
static types(): { [key: string]: any } {
|
|
11177
|
+
return {
|
|
11178
|
+
reqMsgId: 'string',
|
|
11179
|
+
resultCode: 'string',
|
|
11180
|
+
resultMsg: 'string',
|
|
11181
|
+
applyStatus: 'string',
|
|
11182
|
+
creditStatus: 'string',
|
|
11183
|
+
creditAmount: 'number',
|
|
11184
|
+
restAmount: 'number',
|
|
11185
|
+
payDate: 'string',
|
|
11186
|
+
expireDate: 'string',
|
|
11187
|
+
rateValue: 'number',
|
|
11188
|
+
fundCode: 'string',
|
|
11189
|
+
abbreFundName: 'string',
|
|
11190
|
+
prodType: 'string',
|
|
11191
|
+
};
|
|
11192
|
+
}
|
|
11193
|
+
|
|
11194
|
+
constructor(map?: { [key: string]: any }) {
|
|
11195
|
+
super(map);
|
|
11196
|
+
}
|
|
11197
|
+
}
|
|
11198
|
+
|
|
11199
|
+
export class CancelDubbridgeInstallmentOrderRequest extends $tea.Model {
|
|
11200
|
+
// OAuth模式下的授权token
|
|
11201
|
+
authToken?: string;
|
|
11202
|
+
productInstanceId?: string;
|
|
11203
|
+
// 订单号:request请求单号,每次请求唯一,如uuid
|
|
11204
|
+
orderNo: string;
|
|
11205
|
+
// 待支付的购物订单编号
|
|
11206
|
+
bizOrderNo: string;
|
|
11207
|
+
// 渠道方唯一标识
|
|
11208
|
+
openId?: string;
|
|
11209
|
+
// 天枢客户号
|
|
11210
|
+
customerNo?: string;
|
|
11211
|
+
static names(): { [key: string]: string } {
|
|
11212
|
+
return {
|
|
11213
|
+
authToken: 'auth_token',
|
|
11214
|
+
productInstanceId: 'product_instance_id',
|
|
11215
|
+
orderNo: 'order_no',
|
|
11216
|
+
bizOrderNo: 'biz_order_no',
|
|
11217
|
+
openId: 'open_id',
|
|
11218
|
+
customerNo: 'customer_no',
|
|
11219
|
+
};
|
|
11220
|
+
}
|
|
11221
|
+
|
|
11222
|
+
static types(): { [key: string]: any } {
|
|
11223
|
+
return {
|
|
11224
|
+
authToken: 'string',
|
|
11225
|
+
productInstanceId: 'string',
|
|
11226
|
+
orderNo: 'string',
|
|
11227
|
+
bizOrderNo: 'string',
|
|
11228
|
+
openId: 'string',
|
|
11229
|
+
customerNo: 'string',
|
|
11230
|
+
};
|
|
11231
|
+
}
|
|
11232
|
+
|
|
11233
|
+
constructor(map?: { [key: string]: any }) {
|
|
11234
|
+
super(map);
|
|
11235
|
+
}
|
|
11236
|
+
}
|
|
11237
|
+
|
|
11238
|
+
export class CancelDubbridgeInstallmentOrderResponse extends $tea.Model {
|
|
11239
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
11240
|
+
reqMsgId?: string;
|
|
11241
|
+
// 结果码,一般OK表示调用成功
|
|
11242
|
+
resultCode?: string;
|
|
11243
|
+
// 异常信息的文本描述
|
|
11244
|
+
resultMsg?: string;
|
|
11245
|
+
// 订单取消请求接受结果:
|
|
11246
|
+
// Y: 成功; N: 失败
|
|
11247
|
+
cancelResult?: string;
|
|
11248
|
+
static names(): { [key: string]: string } {
|
|
11249
|
+
return {
|
|
11250
|
+
reqMsgId: 'req_msg_id',
|
|
11251
|
+
resultCode: 'result_code',
|
|
11252
|
+
resultMsg: 'result_msg',
|
|
11253
|
+
cancelResult: 'cancel_result',
|
|
11254
|
+
};
|
|
11255
|
+
}
|
|
11256
|
+
|
|
11257
|
+
static types(): { [key: string]: any } {
|
|
11258
|
+
return {
|
|
11259
|
+
reqMsgId: 'string',
|
|
11260
|
+
resultCode: 'string',
|
|
11261
|
+
resultMsg: 'string',
|
|
11262
|
+
cancelResult: 'string',
|
|
11263
|
+
};
|
|
11264
|
+
}
|
|
11265
|
+
|
|
11266
|
+
constructor(map?: { [key: string]: any }) {
|
|
11267
|
+
super(map);
|
|
11268
|
+
}
|
|
11269
|
+
}
|
|
11270
|
+
|
|
11021
11271
|
export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
11022
11272
|
// OAuth模式下的授权token
|
|
11023
11273
|
authToken?: string;
|
|
@@ -13905,6 +14155,80 @@ export class QueryRdaasTaxSimpleauthdecisionResponse extends $tea.Model {
|
|
|
13905
14155
|
}
|
|
13906
14156
|
}
|
|
13907
14157
|
|
|
14158
|
+
export class ReceiveRfcParamsFileRequest extends $tea.Model {
|
|
14159
|
+
// OAuth模式下的授权token
|
|
14160
|
+
authToken?: string;
|
|
14161
|
+
productInstanceId?: string;
|
|
14162
|
+
// 文件ID
|
|
14163
|
+
//
|
|
14164
|
+
fileObject?: Readable;
|
|
14165
|
+
fileObjectName?: string;
|
|
14166
|
+
fileId: string;
|
|
14167
|
+
// 参数,jsonString
|
|
14168
|
+
params: string;
|
|
14169
|
+
// 请求类型:示例 OCR_IDENTIFY-->OCR识别业务
|
|
14170
|
+
type: string;
|
|
14171
|
+
static names(): { [key: string]: string } {
|
|
14172
|
+
return {
|
|
14173
|
+
authToken: 'auth_token',
|
|
14174
|
+
productInstanceId: 'product_instance_id',
|
|
14175
|
+
fileObject: 'fileObject',
|
|
14176
|
+
fileObjectName: 'fileObjectName',
|
|
14177
|
+
fileId: 'file_id',
|
|
14178
|
+
params: 'params',
|
|
14179
|
+
type: 'type',
|
|
14180
|
+
};
|
|
14181
|
+
}
|
|
14182
|
+
|
|
14183
|
+
static types(): { [key: string]: any } {
|
|
14184
|
+
return {
|
|
14185
|
+
authToken: 'string',
|
|
14186
|
+
productInstanceId: 'string',
|
|
14187
|
+
fileObject: 'Readable',
|
|
14188
|
+
fileObjectName: 'string',
|
|
14189
|
+
fileId: 'string',
|
|
14190
|
+
params: 'string',
|
|
14191
|
+
type: 'string',
|
|
14192
|
+
};
|
|
14193
|
+
}
|
|
14194
|
+
|
|
14195
|
+
constructor(map?: { [key: string]: any }) {
|
|
14196
|
+
super(map);
|
|
14197
|
+
}
|
|
14198
|
+
}
|
|
14199
|
+
|
|
14200
|
+
export class ReceiveRfcParamsFileResponse extends $tea.Model {
|
|
14201
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
14202
|
+
reqMsgId?: string;
|
|
14203
|
+
// 结果码,一般OK表示调用成功
|
|
14204
|
+
resultCode?: string;
|
|
14205
|
+
// 异常信息的文本描述
|
|
14206
|
+
resultMsg?: string;
|
|
14207
|
+
// 文件上传响应参数
|
|
14208
|
+
content?: string;
|
|
14209
|
+
static names(): { [key: string]: string } {
|
|
14210
|
+
return {
|
|
14211
|
+
reqMsgId: 'req_msg_id',
|
|
14212
|
+
resultCode: 'result_code',
|
|
14213
|
+
resultMsg: 'result_msg',
|
|
14214
|
+
content: 'content',
|
|
14215
|
+
};
|
|
14216
|
+
}
|
|
14217
|
+
|
|
14218
|
+
static types(): { [key: string]: any } {
|
|
14219
|
+
return {
|
|
14220
|
+
reqMsgId: 'string',
|
|
14221
|
+
resultCode: 'string',
|
|
14222
|
+
resultMsg: 'string',
|
|
14223
|
+
content: 'string',
|
|
14224
|
+
};
|
|
14225
|
+
}
|
|
14226
|
+
|
|
14227
|
+
constructor(map?: { [key: string]: any }) {
|
|
14228
|
+
super(map);
|
|
14229
|
+
}
|
|
14230
|
+
}
|
|
14231
|
+
|
|
13908
14232
|
export class QueryRbbGenericInvokeRequest extends $tea.Model {
|
|
13909
14233
|
// OAuth模式下的授权token
|
|
13910
14234
|
authToken?: string;
|
|
@@ -15470,6 +15794,79 @@ export class PushRbbInvoiceChargeResponse extends $tea.Model {
|
|
|
15470
15794
|
}
|
|
15471
15795
|
}
|
|
15472
15796
|
|
|
15797
|
+
export class ReceiveRbbParamsFileRequest extends $tea.Model {
|
|
15798
|
+
// OAuth模式下的授权token
|
|
15799
|
+
authToken?: string;
|
|
15800
|
+
productInstanceId?: string;
|
|
15801
|
+
// 文件ID
|
|
15802
|
+
fileObject?: Readable;
|
|
15803
|
+
fileObjectName?: string;
|
|
15804
|
+
fileId: string;
|
|
15805
|
+
// 参数,jsonString
|
|
15806
|
+
params: string;
|
|
15807
|
+
// 请求类型:示例 CREDIT_REPORTS-->征信报告上传
|
|
15808
|
+
type: string;
|
|
15809
|
+
static names(): { [key: string]: string } {
|
|
15810
|
+
return {
|
|
15811
|
+
authToken: 'auth_token',
|
|
15812
|
+
productInstanceId: 'product_instance_id',
|
|
15813
|
+
fileObject: 'fileObject',
|
|
15814
|
+
fileObjectName: 'fileObjectName',
|
|
15815
|
+
fileId: 'file_id',
|
|
15816
|
+
params: 'params',
|
|
15817
|
+
type: 'type',
|
|
15818
|
+
};
|
|
15819
|
+
}
|
|
15820
|
+
|
|
15821
|
+
static types(): { [key: string]: any } {
|
|
15822
|
+
return {
|
|
15823
|
+
authToken: 'string',
|
|
15824
|
+
productInstanceId: 'string',
|
|
15825
|
+
fileObject: 'Readable',
|
|
15826
|
+
fileObjectName: 'string',
|
|
15827
|
+
fileId: 'string',
|
|
15828
|
+
params: 'string',
|
|
15829
|
+
type: 'string',
|
|
15830
|
+
};
|
|
15831
|
+
}
|
|
15832
|
+
|
|
15833
|
+
constructor(map?: { [key: string]: any }) {
|
|
15834
|
+
super(map);
|
|
15835
|
+
}
|
|
15836
|
+
}
|
|
15837
|
+
|
|
15838
|
+
export class ReceiveRbbParamsFileResponse extends $tea.Model {
|
|
15839
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
15840
|
+
reqMsgId?: string;
|
|
15841
|
+
// 结果码,一般OK表示调用成功
|
|
15842
|
+
resultCode?: string;
|
|
15843
|
+
// 异常信息的文本描述
|
|
15844
|
+
resultMsg?: string;
|
|
15845
|
+
// 文件上传结果
|
|
15846
|
+
content?: string;
|
|
15847
|
+
static names(): { [key: string]: string } {
|
|
15848
|
+
return {
|
|
15849
|
+
reqMsgId: 'req_msg_id',
|
|
15850
|
+
resultCode: 'result_code',
|
|
15851
|
+
resultMsg: 'result_msg',
|
|
15852
|
+
content: 'content',
|
|
15853
|
+
};
|
|
15854
|
+
}
|
|
15855
|
+
|
|
15856
|
+
static types(): { [key: string]: any } {
|
|
15857
|
+
return {
|
|
15858
|
+
reqMsgId: 'string',
|
|
15859
|
+
resultCode: 'string',
|
|
15860
|
+
resultMsg: 'string',
|
|
15861
|
+
content: 'string',
|
|
15862
|
+
};
|
|
15863
|
+
}
|
|
15864
|
+
|
|
15865
|
+
constructor(map?: { [key: string]: any }) {
|
|
15866
|
+
super(map);
|
|
15867
|
+
}
|
|
15868
|
+
}
|
|
15869
|
+
|
|
15473
15870
|
export class PushRpaasReportAnswerRequest extends $tea.Model {
|
|
15474
15871
|
// OAuth模式下的授权token
|
|
15475
15872
|
authToken?: string;
|
|
@@ -21405,12 +21802,15 @@ export class QueryUmktOfflinedecisionResultResponse extends $tea.Model {
|
|
|
21405
21802
|
resultMsg?: string;
|
|
21406
21803
|
// 已完成的计划策略集合
|
|
21407
21804
|
decisionPlanIdList?: number[];
|
|
21805
|
+
// 批次维度圈客任务结果
|
|
21806
|
+
taskExecBatchInfo?: UmktOfflineDecisionTaskDetailInfo[];
|
|
21408
21807
|
static names(): { [key: string]: string } {
|
|
21409
21808
|
return {
|
|
21410
21809
|
reqMsgId: 'req_msg_id',
|
|
21411
21810
|
resultCode: 'result_code',
|
|
21412
21811
|
resultMsg: 'result_msg',
|
|
21413
21812
|
decisionPlanIdList: 'decision_plan_id_list',
|
|
21813
|
+
taskExecBatchInfo: 'task_exec_batch_info',
|
|
21414
21814
|
};
|
|
21415
21815
|
}
|
|
21416
21816
|
|
|
@@ -21420,6 +21820,7 @@ export class QueryUmktOfflinedecisionResultResponse extends $tea.Model {
|
|
|
21420
21820
|
resultCode: 'string',
|
|
21421
21821
|
resultMsg: 'string',
|
|
21422
21822
|
decisionPlanIdList: { 'type': 'array', 'itemType': 'number' },
|
|
21823
|
+
taskExecBatchInfo: { 'type': 'array', 'itemType': UmktOfflineDecisionTaskDetailInfo },
|
|
21423
21824
|
};
|
|
21424
21825
|
}
|
|
21425
21826
|
|
|
@@ -21440,6 +21841,8 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
|
|
|
21440
21841
|
// 格式:yyyy-MM-dd
|
|
21441
21842
|
// 默认当前时间的前一天
|
|
21442
21843
|
resultDate?: string;
|
|
21844
|
+
// 离线圈客任务id
|
|
21845
|
+
taskId?: number;
|
|
21443
21846
|
static names(): { [key: string]: string } {
|
|
21444
21847
|
return {
|
|
21445
21848
|
authToken: 'auth_token',
|
|
@@ -21447,6 +21850,7 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
|
|
|
21447
21850
|
offlineDecisionPlanId: 'offline_decision_plan_id',
|
|
21448
21851
|
decisionPlanId: 'decision_plan_id',
|
|
21449
21852
|
resultDate: 'result_date',
|
|
21853
|
+
taskId: 'task_id',
|
|
21450
21854
|
};
|
|
21451
21855
|
}
|
|
21452
21856
|
|
|
@@ -21457,6 +21861,7 @@ export class DownloadUmktOfflinedecisionResultRequest extends $tea.Model {
|
|
|
21457
21861
|
offlineDecisionPlanId: 'number',
|
|
21458
21862
|
decisionPlanId: 'number',
|
|
21459
21863
|
resultDate: 'string',
|
|
21864
|
+
taskId: 'number',
|
|
21460
21865
|
};
|
|
21461
21866
|
}
|
|
21462
21867
|
|
|
@@ -21539,6 +21944,8 @@ export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
|
21539
21944
|
offlineDecisionPlanCount?: number;
|
|
21540
21945
|
// 离线圈客计划详细
|
|
21541
21946
|
planDetailList?: OfflineDecisionPlanDetail[];
|
|
21947
|
+
// 执行批次维度任务详情信息
|
|
21948
|
+
taskExecBatchInfo?: UmktOfflineDecisionTaskDetailInfo[];
|
|
21542
21949
|
static names(): { [key: string]: string } {
|
|
21543
21950
|
return {
|
|
21544
21951
|
reqMsgId: 'req_msg_id',
|
|
@@ -21546,6 +21953,7 @@ export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
|
21546
21953
|
resultMsg: 'result_msg',
|
|
21547
21954
|
offlineDecisionPlanCount: 'offline_decision_plan_count',
|
|
21548
21955
|
planDetailList: 'plan_detail_list',
|
|
21956
|
+
taskExecBatchInfo: 'task_exec_batch_info',
|
|
21549
21957
|
};
|
|
21550
21958
|
}
|
|
21551
21959
|
|
|
@@ -21556,6 +21964,7 @@ export class QueryUmktOfflinedecisionPlandetailsResponse extends $tea.Model {
|
|
|
21556
21964
|
resultMsg: 'string',
|
|
21557
21965
|
offlineDecisionPlanCount: 'number',
|
|
21558
21966
|
planDetailList: { 'type': 'array', 'itemType': OfflineDecisionPlanDetail },
|
|
21967
|
+
taskExecBatchInfo: { 'type': 'array', 'itemType': UmktOfflineDecisionTaskDetailInfo },
|
|
21559
21968
|
};
|
|
21560
21969
|
}
|
|
21561
21970
|
|
|
@@ -21830,7 +22239,7 @@ export default class Client {
|
|
|
21830
22239
|
req_msg_id: AntchainUtil.getNonce(),
|
|
21831
22240
|
access_key: this._accessKeyId,
|
|
21832
22241
|
base_sdk_version: "TeaSDK-2.0",
|
|
21833
|
-
sdk_version: "1.
|
|
22242
|
+
sdk_version: "1.23.4",
|
|
21834
22243
|
_prod_code: "RISKPLUS",
|
|
21835
22244
|
_prod_channel: "undefined",
|
|
21836
22245
|
};
|
|
@@ -23287,6 +23696,44 @@ export default class Client {
|
|
|
23287
23696
|
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
23697
|
}
|
|
23289
23698
|
|
|
23699
|
+
/**
|
|
23700
|
+
* Description: 天枢系统授信额度查询接口-分期付
|
|
23701
|
+
* Summary: 天枢系统授信额度查询接口-分期付
|
|
23702
|
+
*/
|
|
23703
|
+
async queryDubbridgeInstallmentCreditamt(request: QueryDubbridgeInstallmentCreditamtRequest): Promise<QueryDubbridgeInstallmentCreditamtResponse> {
|
|
23704
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23705
|
+
let headers : {[key: string ]: string} = { };
|
|
23706
|
+
return await this.queryDubbridgeInstallmentCreditamtEx(request, headers, runtime);
|
|
23707
|
+
}
|
|
23708
|
+
|
|
23709
|
+
/**
|
|
23710
|
+
* Description: 天枢系统授信额度查询接口-分期付
|
|
23711
|
+
* Summary: 天枢系统授信额度查询接口-分期付
|
|
23712
|
+
*/
|
|
23713
|
+
async queryDubbridgeInstallmentCreditamtEx(request: QueryDubbridgeInstallmentCreditamtRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeInstallmentCreditamtResponse> {
|
|
23714
|
+
Util.validateModel(request);
|
|
23715
|
+
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({}));
|
|
23716
|
+
}
|
|
23717
|
+
|
|
23718
|
+
/**
|
|
23719
|
+
* Description: 天枢系统取消分期付订单-分期付
|
|
23720
|
+
* Summary: 天枢系统取消分期付订单-分期付
|
|
23721
|
+
*/
|
|
23722
|
+
async cancelDubbridgeInstallmentOrder(request: CancelDubbridgeInstallmentOrderRequest): Promise<CancelDubbridgeInstallmentOrderResponse> {
|
|
23723
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23724
|
+
let headers : {[key: string ]: string} = { };
|
|
23725
|
+
return await this.cancelDubbridgeInstallmentOrderEx(request, headers, runtime);
|
|
23726
|
+
}
|
|
23727
|
+
|
|
23728
|
+
/**
|
|
23729
|
+
* Description: 天枢系统取消分期付订单-分期付
|
|
23730
|
+
* Summary: 天枢系统取消分期付订单-分期付
|
|
23731
|
+
*/
|
|
23732
|
+
async cancelDubbridgeInstallmentOrderEx(request: CancelDubbridgeInstallmentOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CancelDubbridgeInstallmentOrderResponse> {
|
|
23733
|
+
Util.validateModel(request);
|
|
23734
|
+
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({}));
|
|
23735
|
+
}
|
|
23736
|
+
|
|
23290
23737
|
/**
|
|
23291
23738
|
* Description: 四要素认证首先调用此接口
|
|
23292
23739
|
* Summary: 芝麻四要素接口
|
|
@@ -24015,6 +24462,47 @@ export default class Client {
|
|
|
24015
24462
|
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
24463
|
}
|
|
24017
24464
|
|
|
24465
|
+
/**
|
|
24466
|
+
* Description: rfc外部文件上传
|
|
24467
|
+
* Summary: rfc外部文件上传
|
|
24468
|
+
*/
|
|
24469
|
+
async receiveRfcParamsFile(request: ReceiveRfcParamsFileRequest): Promise<ReceiveRfcParamsFileResponse> {
|
|
24470
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24471
|
+
let headers : {[key: string ]: string} = { };
|
|
24472
|
+
return await this.receiveRfcParamsFileEx(request, headers, runtime);
|
|
24473
|
+
}
|
|
24474
|
+
|
|
24475
|
+
/**
|
|
24476
|
+
* Description: rfc外部文件上传
|
|
24477
|
+
* Summary: rfc外部文件上传
|
|
24478
|
+
*/
|
|
24479
|
+
async receiveRfcParamsFileEx(request: ReceiveRfcParamsFileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReceiveRfcParamsFileResponse> {
|
|
24480
|
+
if (!Util.isUnset(request.fileObject)) {
|
|
24481
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
24482
|
+
authToken: request.authToken,
|
|
24483
|
+
apiCode: "riskplus.rfc.params.file.receive",
|
|
24484
|
+
fileName: request.fileObjectName,
|
|
24485
|
+
});
|
|
24486
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
24487
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
24488
|
+
let receiveRfcParamsFileResponse = new ReceiveRfcParamsFileResponse({
|
|
24489
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
24490
|
+
resultCode: uploadResp.resultCode,
|
|
24491
|
+
resultMsg: uploadResp.resultMsg,
|
|
24492
|
+
});
|
|
24493
|
+
return receiveRfcParamsFileResponse;
|
|
24494
|
+
}
|
|
24495
|
+
|
|
24496
|
+
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
24497
|
+
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
24498
|
+
request.fileId = uploadResp.fileId;
|
|
24499
|
+
request.fileObject = null;
|
|
24500
|
+
}
|
|
24501
|
+
|
|
24502
|
+
Util.validateModel(request);
|
|
24503
|
+
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({}));
|
|
24504
|
+
}
|
|
24505
|
+
|
|
24018
24506
|
/**
|
|
24019
24507
|
* Description: 风险大脑企业版通用查询接口
|
|
24020
24508
|
* Summary: 【已废弃】
|
|
@@ -24474,6 +24962,47 @@ export default class Client {
|
|
|
24474
24962
|
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
24963
|
}
|
|
24476
24964
|
|
|
24965
|
+
/**
|
|
24966
|
+
* Description: 通过接口进行报告上传
|
|
24967
|
+
* Summary: 征信报告上传接口
|
|
24968
|
+
*/
|
|
24969
|
+
async receiveRbbParamsFile(request: ReceiveRbbParamsFileRequest): Promise<ReceiveRbbParamsFileResponse> {
|
|
24970
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24971
|
+
let headers : {[key: string ]: string} = { };
|
|
24972
|
+
return await this.receiveRbbParamsFileEx(request, headers, runtime);
|
|
24973
|
+
}
|
|
24974
|
+
|
|
24975
|
+
/**
|
|
24976
|
+
* Description: 通过接口进行报告上传
|
|
24977
|
+
* Summary: 征信报告上传接口
|
|
24978
|
+
*/
|
|
24979
|
+
async receiveRbbParamsFileEx(request: ReceiveRbbParamsFileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReceiveRbbParamsFileResponse> {
|
|
24980
|
+
if (!Util.isUnset(request.fileObject)) {
|
|
24981
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
24982
|
+
authToken: request.authToken,
|
|
24983
|
+
apiCode: "riskplus.rbb.params.file.receive",
|
|
24984
|
+
fileName: request.fileObjectName,
|
|
24985
|
+
});
|
|
24986
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
24987
|
+
if (!AntchainUtil.isSuccess(uploadResp.resultCode, "ok")) {
|
|
24988
|
+
let receiveRbbParamsFileResponse = new ReceiveRbbParamsFileResponse({
|
|
24989
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
24990
|
+
resultCode: uploadResp.resultCode,
|
|
24991
|
+
resultMsg: uploadResp.resultMsg,
|
|
24992
|
+
});
|
|
24993
|
+
return receiveRbbParamsFileResponse;
|
|
24994
|
+
}
|
|
24995
|
+
|
|
24996
|
+
let uploadHeaders = AntchainUtil.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
24997
|
+
await AntchainUtil.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
24998
|
+
request.fileId = uploadResp.fileId;
|
|
24999
|
+
request.fileObject = null;
|
|
25000
|
+
}
|
|
25001
|
+
|
|
25002
|
+
Util.validateModel(request);
|
|
25003
|
+
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({}));
|
|
25004
|
+
}
|
|
25005
|
+
|
|
24477
25006
|
/**
|
|
24478
25007
|
* Description: 报告结果推送,算法调用
|
|
24479
25008
|
* Summary: 报告结果推送
|
|
@@ -25930,7 +26459,7 @@ export default class Client {
|
|
|
25930
26459
|
|
|
25931
26460
|
/**
|
|
25932
26461
|
* Description: 包含离线圈客关联计划和任务状态详情
|
|
25933
|
-
* Summary: 营销盾离线圈客计划执行详情
|
|
26462
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
25934
26463
|
*/
|
|
25935
26464
|
async queryUmktOfflinedecisionPlandetails(request: QueryUmktOfflinedecisionPlandetailsRequest): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
25936
26465
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -25940,7 +26469,7 @@ export default class Client {
|
|
|
25940
26469
|
|
|
25941
26470
|
/**
|
|
25942
26471
|
* Description: 包含离线圈客关联计划和任务状态详情
|
|
25943
|
-
* Summary: 营销盾离线圈客计划执行详情
|
|
26472
|
+
* Summary: 营销盾离线圈客计划执行详情
|
|
25944
26473
|
*/
|
|
25945
26474
|
async queryUmktOfflinedecisionPlandetailsEx(request: QueryUmktOfflinedecisionPlandetailsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktOfflinedecisionPlandetailsResponse> {
|
|
25946
26475
|
Util.validateModel(request);
|