@antchain/riskplus 1.26.3 → 1.26.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 +119 -1
- package/dist/client.js +194 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +305 -5
package/dist/client.d.ts
CHANGED
|
@@ -1232,6 +1232,7 @@ export declare class JobInfo extends $tea.Model {
|
|
|
1232
1232
|
companyStreet?: string;
|
|
1233
1233
|
companyAddress?: string;
|
|
1234
1234
|
yearSalary?: number;
|
|
1235
|
+
induInvol?: string;
|
|
1235
1236
|
static names(): {
|
|
1236
1237
|
[key: string]: string;
|
|
1237
1238
|
};
|
|
@@ -2301,6 +2302,90 @@ export declare class NotifyBenefithubRiskLoginResponse extends $tea.Model {
|
|
|
2301
2302
|
[key: string]: any;
|
|
2302
2303
|
});
|
|
2303
2304
|
}
|
|
2305
|
+
export declare class NotifyBenefithubRiskPayunilateralRequest extends $tea.Model {
|
|
2306
|
+
authToken?: string;
|
|
2307
|
+
productInstanceId?: string;
|
|
2308
|
+
bizType: string;
|
|
2309
|
+
paymentNo: string;
|
|
2310
|
+
status: string;
|
|
2311
|
+
orderAmount: string;
|
|
2312
|
+
paymentAmount: string;
|
|
2313
|
+
paymentTime: string;
|
|
2314
|
+
paymentMethodType: string;
|
|
2315
|
+
capNum: string;
|
|
2316
|
+
merchantNo?: string;
|
|
2317
|
+
orderType: string;
|
|
2318
|
+
orderSource: string;
|
|
2319
|
+
platformCode: string;
|
|
2320
|
+
userUniqueId: string;
|
|
2321
|
+
productCode: string;
|
|
2322
|
+
static names(): {
|
|
2323
|
+
[key: string]: string;
|
|
2324
|
+
};
|
|
2325
|
+
static types(): {
|
|
2326
|
+
[key: string]: any;
|
|
2327
|
+
};
|
|
2328
|
+
constructor(map?: {
|
|
2329
|
+
[key: string]: any;
|
|
2330
|
+
});
|
|
2331
|
+
}
|
|
2332
|
+
export declare class NotifyBenefithubRiskPayunilateralResponse extends $tea.Model {
|
|
2333
|
+
reqMsgId?: string;
|
|
2334
|
+
resultCode?: string;
|
|
2335
|
+
resultMsg?: string;
|
|
2336
|
+
resultData?: string;
|
|
2337
|
+
static names(): {
|
|
2338
|
+
[key: string]: string;
|
|
2339
|
+
};
|
|
2340
|
+
static types(): {
|
|
2341
|
+
[key: string]: any;
|
|
2342
|
+
};
|
|
2343
|
+
constructor(map?: {
|
|
2344
|
+
[key: string]: any;
|
|
2345
|
+
});
|
|
2346
|
+
}
|
|
2347
|
+
export declare class QueryBenefithubReportInformationRequest extends $tea.Model {
|
|
2348
|
+
authToken?: string;
|
|
2349
|
+
productInstanceId?: string;
|
|
2350
|
+
orderNo: string;
|
|
2351
|
+
platformCode: string;
|
|
2352
|
+
productCode: string;
|
|
2353
|
+
userUniqueId: string;
|
|
2354
|
+
static names(): {
|
|
2355
|
+
[key: string]: string;
|
|
2356
|
+
};
|
|
2357
|
+
static types(): {
|
|
2358
|
+
[key: string]: any;
|
|
2359
|
+
};
|
|
2360
|
+
constructor(map?: {
|
|
2361
|
+
[key: string]: any;
|
|
2362
|
+
});
|
|
2363
|
+
}
|
|
2364
|
+
export declare class QueryBenefithubReportInformationResponse extends $tea.Model {
|
|
2365
|
+
reqMsgId?: string;
|
|
2366
|
+
resultCode?: string;
|
|
2367
|
+
resultMsg?: string;
|
|
2368
|
+
uuid?: string;
|
|
2369
|
+
orderNo?: string;
|
|
2370
|
+
platformCode?: string;
|
|
2371
|
+
productCode?: string;
|
|
2372
|
+
reportNo?: string;
|
|
2373
|
+
reportTime?: string;
|
|
2374
|
+
reportEndTime?: string;
|
|
2375
|
+
reportContent?: string;
|
|
2376
|
+
status?: string;
|
|
2377
|
+
name?: string;
|
|
2378
|
+
idCard?: string;
|
|
2379
|
+
static names(): {
|
|
2380
|
+
[key: string]: string;
|
|
2381
|
+
};
|
|
2382
|
+
static types(): {
|
|
2383
|
+
[key: string]: any;
|
|
2384
|
+
};
|
|
2385
|
+
constructor(map?: {
|
|
2386
|
+
[key: string]: any;
|
|
2387
|
+
});
|
|
2388
|
+
}
|
|
2304
2389
|
export declare class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
|
|
2305
2390
|
authToken?: string;
|
|
2306
2391
|
productInstanceId?: string;
|
|
@@ -4188,6 +4273,7 @@ export declare class CountDubbridgeRepayTrialRequest extends $tea.Model {
|
|
|
4188
4273
|
originalOrderNo: string;
|
|
4189
4274
|
repayType: string;
|
|
4190
4275
|
orderNo: string;
|
|
4276
|
+
periodList?: number[];
|
|
4191
4277
|
static names(): {
|
|
4192
4278
|
[key: string]: string;
|
|
4193
4279
|
};
|
|
@@ -4208,6 +4294,7 @@ export declare class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
4208
4294
|
serviceCharge?: number;
|
|
4209
4295
|
realGuaranteeFee?: number;
|
|
4210
4296
|
realLiquidatedDamages?: number;
|
|
4297
|
+
repayResultList?: RepayResult[];
|
|
4211
4298
|
static names(): {
|
|
4212
4299
|
[key: string]: string;
|
|
4213
4300
|
};
|
|
@@ -4221,11 +4308,18 @@ export declare class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
4221
4308
|
export declare class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
4222
4309
|
authToken?: string;
|
|
4223
4310
|
productInstanceId?: string;
|
|
4311
|
+
orderNo: string;
|
|
4224
4312
|
originalOrderNo: string;
|
|
4225
4313
|
repayType: string;
|
|
4226
|
-
|
|
4314
|
+
periodList?: number[];
|
|
4227
4315
|
validRepayAmount?: string;
|
|
4228
4316
|
bankCardNo?: string;
|
|
4317
|
+
paymentFlag?: string;
|
|
4318
|
+
accountName?: string;
|
|
4319
|
+
reservedMobile?: string;
|
|
4320
|
+
accountOpenBank?: string;
|
|
4321
|
+
deductionCode?: string;
|
|
4322
|
+
signingAgreementNum?: string;
|
|
4229
4323
|
static names(): {
|
|
4230
4324
|
[key: string]: string;
|
|
4231
4325
|
};
|
|
@@ -10368,6 +10462,30 @@ export default class Client {
|
|
|
10368
10462
|
notifyBenefithubRiskLoginEx(request: NotifyBenefithubRiskLoginRequest, headers: {
|
|
10369
10463
|
[key: string]: string;
|
|
10370
10464
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskLoginResponse>;
|
|
10465
|
+
/**
|
|
10466
|
+
* Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
|
|
10467
|
+
* Summary: 奇富组件支付结果通知
|
|
10468
|
+
*/
|
|
10469
|
+
notifyBenefithubRiskPayunilateral(request: NotifyBenefithubRiskPayunilateralRequest): Promise<NotifyBenefithubRiskPayunilateralResponse>;
|
|
10470
|
+
/**
|
|
10471
|
+
* Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
|
|
10472
|
+
* Summary: 奇富组件支付结果通知
|
|
10473
|
+
*/
|
|
10474
|
+
notifyBenefithubRiskPayunilateralEx(request: NotifyBenefithubRiskPayunilateralRequest, headers: {
|
|
10475
|
+
[key: string]: string;
|
|
10476
|
+
}, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskPayunilateralResponse>;
|
|
10477
|
+
/**
|
|
10478
|
+
* Description: 渠道主动查询报告详情接口
|
|
10479
|
+
* Summary: 渠道查询报告详情
|
|
10480
|
+
*/
|
|
10481
|
+
queryBenefithubReportInformation(request: QueryBenefithubReportInformationRequest): Promise<QueryBenefithubReportInformationResponse>;
|
|
10482
|
+
/**
|
|
10483
|
+
* Description: 渠道主动查询报告详情接口
|
|
10484
|
+
* Summary: 渠道查询报告详情
|
|
10485
|
+
*/
|
|
10486
|
+
queryBenefithubReportInformationEx(request: QueryBenefithubReportInformationRequest, headers: {
|
|
10487
|
+
[key: string]: string;
|
|
10488
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryBenefithubReportInformationResponse>;
|
|
10371
10489
|
/**
|
|
10372
10490
|
* Description: 信护盾产品批量查询
|
|
10373
10491
|
* Summary: 信护盾产品批量查询
|
package/dist/client.js
CHANGED
|
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
22
22
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.DownloadUmktOfflineCampaignResponse = exports.DownloadUmktOfflineCampaignRequest = exports.UploadUmktOfflineImportrecordResponse = exports.UploadUmktOfflineImportrecordRequest = exports.QueryUmktOfflinedecisionPlandetailsResponse = exports.QueryUmktOfflinedecisionPlandetailsRequest = exports.DownloadUmktOfflinedecisionResultResponse = exports.DownloadUmktOfflinedecisionResultRequest = exports.QueryUmktOfflinedecisionResultResponse = exports.QueryUmktOfflinedecisionResultRequest = exports.UploadUmktOfflinedecisionResponse = exports.UploadUmktOfflinedecisionRequest = exports.QueryUmktCardsmsAnalysisResponse = exports.QueryUmktCardsmsAnalysisRequest = exports.PushUmktBackflowJsondataResponse = exports.PushUmktBackflowJsondataRequest = exports.BatchqueryUmktTaskDetailResponse = exports.BatchqueryUmktTaskDetailRequest = exports.PushUmktCustomerGroupResponse = exports.PushUmktCustomerGroupRequest = exports.PushUmktCommonDataResponse = exports.PushUmktCommonDataRequest = exports.PushRiskplusUmktCommonbackflowResponse = exports.PushRiskplusUmktCommonbackflowRequest = exports.BatchqueryUmktActionplanDetailResponse = exports.BatchqueryUmktActionplanDetailRequest = exports.BatchqueryUmktRobotcallDetailResponse = exports.BatchqueryUmktRobotcallDetailRequest = exports.BatchqueryUmktTenantActionplaninfoResponse = exports.BatchqueryUmktTenantActionplaninfoRequest = exports.CallbackUmktSmsReportResponse = exports.CallbackUmktSmsReportRequest = exports.CallbackUmktSmsUpResponse = exports.CallbackUmktSmsUpRequest = exports.CallbackUmktRobotcallResponse = exports.CallbackUmktRobotcallRequest = exports.ApplyUmktRtBatchmarketingResponse = exports.ApplyUmktRtBatchmarketingRequest = exports.ApplyUmktRealtimemarketingResponse = exports.ApplyUmktRealtimemarketingRequest = exports.QueryUmktRobotcallDetailResponse = exports.QueryUmktRobotcallDetailRequest = exports.QueryUmktTenantActionplaninfoResponse = exports.QueryUmktTenantActionplaninfoRequest = exports.QueryUmktRobotcallStatisticinfoResponse = exports.QueryUmktRobotcallStatisticinfoRequest = exports.BatchqueryUmktRtTopnResponse = exports.BatchqueryUmktRtTopnRequest = exports.ApplyUmktPhonenumberstatusforsmsResponse = exports.ApplyUmktPhonenumberstatusforsmsRequest = exports.BatchqueryUmktRtMixedmarketingResponse = exports.BatchqueryUmktRtMixedmarketingRequest = exports.QueryUmktCpaassmsTemplateResponse = exports.QueryUmktCpaassmsTemplateRequest = exports.SendUmktDigitalsmsBatchResponse = exports.SendUmktDigitalsmsBatchRequest = exports.SendUmktTextsmsBatchResponse = exports.SendUmktTextsmsBatchRequest = exports.QueryUmktCardsmsSupportResponse = exports.QueryUmktCardsmsSupportRequest = exports.SendUmktCardsmsBatchResponse = exports.SendUmktCardsmsBatchRequest = exports.PushUmktBackflowEventResponse = exports.PushUmktBackflowEventRequest = exports.QueryUmktRtMarketingResponse = exports.QueryUmktRtMarketingRequest = exports.CancelUmktDataaccessOfflinetaskResponse = exports.CancelUmktDataaccessOfflinetaskRequest = exports.QueryUmktDataaccessStatisticResponse = exports.QueryUmktDataaccessStatisticRequest = exports.ApplyUmktRobotcallResponse = exports.ApplyUmktRobotcallRequest = exports.QueryUmktScenestrategyTestResponse = exports.QueryUmktScenestrategyTestRequest = exports.BatchqueryUmktRtTailmarketingResponse = exports.BatchqueryUmktRtTailmarketingRequest = exports.ImportUmktSceneUploadResponse = exports.ImportUmktSceneUploadRequest = exports.SyncUmktRtEventresultResponse = exports.SyncUmktRtEventresultRequest = exports.BatchqueryUmktRtMarketingResponse = exports.BatchqueryUmktRtMarketingRequest = exports.UploadUmktParamsFileResponse = exports.UploadUmktParamsFileRequest = exports.QueryTdisaasSecurityPolicyResponse = exports.QueryTdisaasSecurityPolicyRequest = exports.PushTdiquickmsgBackflowJsondataResponse = exports.PushTdiquickmsgBackflowJsondataRequest = exports.PushTdiquickmsgBackflowEventResponse = exports.PushTdiquickmsgBackflowEventRequest = exports.QueryTdiquickmsgRobotcallStatisticinfoResponse = exports.QueryTdiquickmsgRobotcallStatisticinfoRequest = exports.CallbackTdiquickmsgSmsUpResponse = exports.CallbackTdiquickmsgSmsUpRequest = exports.CallbackTdiquickmsgRobotcallResponse = exports.CallbackTdiquickmsgRobotcallRequest = exports.CallbackTdiquickmsgSmsResponse = exports.CallbackTdiquickmsgSmsRequest = exports.ApplyTdiquickmsgRobotcallResponse = exports.ApplyTdiquickmsgRobotcallRequest = exports.ApplyTdiquickmsgRtBatchmarketingResponse = exports.ApplyTdiquickmsgRtBatchmarketingRequest = exports.QuerySnapshotEventResponse = exports.QuerySnapshotEventRequest = exports.QueryRpSecurityPolicyResponse = exports.QueryRpSecurityPolicyRequest = exports.ListRtopStarCompanyResponse = exports.ListRtopStarCompanyRequest = exports.QueryRtopTagImageResponse = exports.QueryRtopTagImageRequest = exports.ListRtopCompanyRelatedResponse = exports.ListRtopCompanyRelatedRequest = exports.QueryRtopCompanyRiskResponse = exports.QueryRtopCompanyRiskRequest = exports.QueryRtopRisklabelConfigResponse = exports.QueryRtopRisklabelConfigRequest = exports.QueryRtopCompanyListResponse = exports.QueryRtopCompanyListRequest = exports.QueryRtopCompanyRiskyResponse = exports.QueryRtopCompanyRiskyRequest = exports.QueryRtopCompanyAlarmResponse = exports.QueryRtopCompanyAlarmRequest = exports.QueryRtopCompanyFeedbackResponse = exports.QueryRtopCompanyFeedbackRequest = exports.PullRegtechNewsResponse = exports.PullRegtechNewsRequest = exports.QueryRtopRisklabelFilterResponse = exports.QueryRtopRisklabelFilterRequest = exports.QueryRtopCompanyResponse = exports.QueryRtopCompanyRequest = exports.QueryRtopRisklabelResponse = exports.QueryRtopRisklabelRequest = exports.CreateRtopTokenResponse = exports.CreateRtopTokenRequest = exports.ExecRtopGenericInvokeResponse = exports.ExecRtopGenericInvokeRequest = exports.QueryRtopCompanyRiskinfoResponse = exports.QueryRtopCompanyRiskinfoRequest = exports.GetRtopCompanyDetailResponse = exports.GetRtopCompanyDetailRequest = exports.QueryRtopCrowdriskSumResponse = exports.QueryRtopCrowdriskSumRequest = exports.QueryRtopRiskstormResponse = exports.QueryRtopRiskstormRequest = exports.QueryRtopCrowdriskDetailResponse = exports.QueryRtopCrowdriskDetailRequest = exports.ListRtopCrowdriskResponse = exports.ListRtopCrowdriskRequest = exports.QueryRtopCrowdriskStatisticResponse = exports.QueryRtopCrowdriskStatisticRequest = exports.GetRtopCompanyMonitorResponse = exports.GetRtopCompanyMonitorRequest = exports.ListRtopCompanyOpinionsResponse = exports.ListRtopCompanyOpinionsRequest = exports.QueryRtopCompanyOpinionResponse = exports.QueryRtopCompanyOpinionRequest = exports.NotifyRpgwUserSignresultResponse = exports.NotifyRpgwUserSignresultRequest = exports.SyncRpgwUserOrderinfoResponse = exports.SyncRpgwUserOrderinfoRequest = exports.WithdrawRpgwUserCommissionResponse = exports.WithdrawRpgwUserCommissionRequest = exports.QueryRpgwUserSignurlResponse = exports.QueryRpgwUserSignurlRequest = exports.RegisterRpgwUserEinvoiceResponse = exports.RegisterRpgwUserEinvoiceRequest = exports.QueryRpgwSignUrlResponse = exports.QueryRpgwSignUrlRequest = exports.QueryRpaasOpenServiceResponse = exports.QueryRpaasOpenServiceRequest = exports.PushRpaasReportAnswerResponse = exports.PushRpaasReportAnswerRequest = exports.ReceiveRbbOverseacompanyProfileResponse = exports.ReceiveRbbOverseacompanyProfileRequest = exports.ReceiveRbbParamsFileResponse = exports.ReceiveRbbParamsFileRequest = exports.PushRbbInvoiceChargeResponse = exports.PushRbbInvoiceChargeRequest = exports.PushRbbCustomerStatusResponse = exports.PushRbbCustomerStatusRequest = exports.GetRbbTaxinvoiceDataResponse = exports.GetRbbTaxinvoiceDataRequest = exports.PushRbbCustomerInformationResponse = exports.PushRbbCustomerInformationRequest = exports.OperateRbbCreditResponse = exports.OperateRbbCreditRequest = exports.UploadRbbFileAmapResponse = exports.UploadRbbFileAmapRequest = exports.PushRbbCustomerCompanyinfoResponse = exports.PushRbbCustomerCompanyinfoRequest = exports.QueryRbbObtsZsearchResponse = exports.QueryRbbObtsZsearchRequest = exports.QueryRbbCompanyGuardResponse = exports.QueryRbbCompanyGuardRequest = exports.ApplyRbbCompanyGuardResponse = exports.ApplyRbbCompanyGuardRequest = exports.FinishRbbRegdatasyncScheduleResponse = exports.FinishRbbRegdatasyncScheduleRequest = exports.StartRbbRegdatasyncScheduleResponse = exports.StartRbbRegdatasyncScheduleRequest = exports.QueryRbbRegdatasyncPreparedResponse = exports.QueryRbbRegdatasyncPreparedRequest = exports.QueryRbbCompanyCreditResponse = exports.QueryRbbCompanyCreditRequest = exports.ApplyRbbCompanyCreditResponse = exports.ApplyRbbCompanyCreditRequest = exports.ExecRbbCompanyGuardResponse = exports.ExecRbbCompanyGuardRequest = exports.CreateRbbUserResponse = exports.CreateRbbUserRequest = exports.CreateRbbTenantResponse = exports.CreateRbbTenantRequest = exports.GetRbbLoginTokenResponse = exports.GetRbbLoginTokenRequest = exports.QueryRbbGeneralResponse = exports.QueryRbbGeneralRequest = exports.CreateRbbApiGwtokenResponse = exports.CreateRbbApiGwtokenRequest = exports.CreateRbbTokenResponse = exports.CreateRbbTokenRequest = exports.QueryRbbGenericInvokeResponse = exports.QueryRbbGenericInvokeRequest = exports.QueryRfcOdpsLindormResponse = exports.QueryRfcOdpsLindormRequest = exports.UploadRfcAiboundFileResponse = exports.UploadRfcAiboundFileRequest = exports.ReceiveRfcParamsFileResponse = exports.ReceiveRfcParamsFileRequest = exports.QueryRdaasTaxSimpleauthdecisionResponse = exports.QueryRdaasTaxSimpleauthdecisionRequest = exports.QueryRdaasTaxRpadecisionindicatorResponse = exports.QueryRdaasTaxRpadecisionindicatorRequest = exports.QueryRdaasTaxRpadecisionserviceResponse = exports.QueryRdaasTaxRpadecisionserviceRequest = exports.NotifyRdaasTaxCallbackResponse = exports.NotifyRdaasTaxCallbackRequest = exports.SyncRdaasTaxAuthorderResponse = exports.SyncRdaasTaxAuthorderRequest = exports.SyncRdaasTaxAuthinfoResponse = exports.SyncRdaasTaxAuthinfoRequest = exports.QueryQmpOfflinehostplanDecisionresultResponse = exports.QueryQmpOfflinehostplanDecisionresultRequest = exports.UploadQmpOfflinehostplanResponse = exports.UploadQmpOfflinehostplanRequest = exports.BatchqueryQmpRtMixedmarketingResponse = exports.BatchqueryQmpRtMixedmarketingRequest = exports.PushQmpBackflowJsondataResponse = exports.PushQmpBackflowJsondataRequest = exports.PushQmpBackflowEventResponse = exports.PushQmpBackflowEventRequest = exports.QueryQmpTextsmsTemplateResponse = exports.QueryQmpTextsmsTemplateRequest = exports.QueryQmpCpaassmsTemplateResponse = exports.QueryQmpCpaassmsTemplateRequest = exports.QueryQmpTenantActionplaninfoResponse = exports.QueryQmpTenantActionplaninfoRequest = exports.BatchqueryQmpTenantActionplaninfoResponse = exports.BatchqueryQmpTenantActionplaninfoRequest = exports.ApplyQmpPhonenumberstatusforsmsResponse = exports.ApplyQmpPhonenumberstatusforsmsRequest = exports.BatchqueryQmpActionplanDetailResponse = exports.BatchqueryQmpActionplanDetailRequest = exports.QueryQmpCardsmsSupportResponse = exports.QueryQmpCardsmsSupportRequest = exports.BatchqueryQmpTaskDetailResponse = exports.BatchqueryQmpTaskDetailRequest = exports.QueryQmpRobotcallStatisticinfoResponse = exports.QueryQmpRobotcallStatisticinfoRequest = exports.QueryQmpDataaccessStatisticResponse = exports.QueryQmpDataaccessStatisticRequest = exports.QueryQmpRobotcallDetailResponse = exports.QueryQmpRobotcallDetailRequest = exports.CallbackQmpRobotcallResponse = exports.CallbackQmpRobotcallRequest = exports.SendQmpDigitalsmsBatchResponse = exports.SendQmpDigitalsmsBatchRequest = exports.CallbackQmpSmsReportResponse = exports.CallbackQmpSmsReportRequest = exports.CallbackQmpSmsUpResponse = exports.CallbackQmpSmsUpRequest = exports.SendQmpCardsmsBatchResponse = exports.SendQmpCardsmsBatchRequest = exports.ApplyQmpRobotcallResponse = exports.ApplyQmpRobotcallRequest = exports.SendQmpTextsmsBatchResponse = exports.SendQmpTextsmsBatchRequest = exports.ApplyQmpRtBatchmarketingResponse = exports.ApplyQmpRtBatchmarketingRequest = exports.CallbackMdipYunfengdieParamsResponse = exports.CallbackMdipYunfengdieParamsRequest = exports.ListMdipDefaultSupplierResponse = exports.ListMdipDefaultSupplierRequest = exports.QueryMdipDataservicePocResponse = exports.QueryMdipDataservicePocRequest = exports.CallbackMdipAuditResponse = exports.CallbackMdipAuditRequest = exports.ReceiveMdipParamsRbbfileResponse = exports.ReceiveMdipParamsRbbfileRequest = exports.ReceiveMdipParamsFileResponse = exports.ReceiveMdipParamsFileRequest = exports.QueryMdipDataserviceResponse = exports.QueryMdipDataserviceRequest = exports.QueryFinserviceZhimaIdentifyResponse = exports.QueryFinserviceZhimaIdentifyRequest = exports.VerifyFinserviceZhimaIdentifyResponse = exports.VerifyFinserviceZhimaIdentifyRequest = exports.QueryDubbridgeInstallmentTrialResponse = exports.QueryDubbridgeInstallmentTrialRequest = exports.PushDubbridgeInstallmentSupplementResponse = exports.PushDubbridgeInstallmentSupplementRequest = exports.CancelDubbridgeInstallmentOrderResponse = exports.CancelDubbridgeInstallmentOrderRequest = exports.QueryDubbridgeInstallmentCreditamtResponse = exports.QueryDubbridgeInstallmentCreditamtRequest = exports.QueryDubbridgeRepaytypeInfoResponse = exports.QueryDubbridgeRepaytypeInfoRequest = exports.QueryDubbridgeMarketingCouponlistResponse = exports.QueryDubbridgeMarketingCouponlistRequest = exports.QueryDubbridgeUserAggregationinfoResponse = exports.QueryDubbridgeUserAggregationinfoRequest = exports.QueryDubbridgeAccountUsecreditResponse = exports.QueryDubbridgeAccountUsecreditRequest = exports.QueryDubbridgeAgreementPreviewResponse = exports.QueryDubbridgeAgreementPreviewRequest = exports.QueryDubbridgeSettlementCertificateResponse = exports.QueryDubbridgeSettlementCertificateRequest = exports.QueryDubbridgeRouterUserselectResponse = exports.QueryDubbridgeRouterUserselectRequest = exports.QueryDubbridgeCustomerBankcardlistResponse = exports.QueryDubbridgeCustomerBankcardlistRequest = exports.QueryDubbridgeLoanUpgradestatusResponse = exports.QueryDubbridgeLoanUpgradestatusRequest = exports.QueryDubbridgeUserUpgradestatusResponse = exports.QueryDubbridgeUserUpgradestatusRequest = exports.QueryDubbridgeCreditPermitResponse = exports.QueryDubbridgeCreditPermitRequest = exports.QueryDubbridgeRepayResultResponse = exports.QueryDubbridgeRepayResultRequest = exports.NotifyDubbridgeCallbackResponse = exports.NotifyDubbridgeCallbackRequest = exports.UpdateDubbridgeFileResponse = exports.UpdateDubbridgeFileRequest = exports.QueryDubbridgeCustomerCommonagreementsignResponse = exports.QueryDubbridgeCustomerCommonagreementsignRequest = exports.QueryDubbridgeReceiptStatusResponse = exports.QueryDubbridgeReceiptStatusRequest = exports.QueryDubbridgeUsecreditStatusResponse = exports.QueryDubbridgeUsecreditStatusRequest = exports.ApplyDubbridgeUsecreditResponse = exports.ApplyDubbridgeUsecreditRequest = exports.QueryDubbridgeSearchContractResponse = exports.QueryDubbridgeSearchContractRequest = exports.RepayDubbridgeRepayWithholdResponse = exports.RepayDubbridgeRepayWithholdRequest = exports.CountDubbridgeRepayTrialResponse = exports.CountDubbridgeRepayTrialRequest = exports.CountDubbridgeRepayReftrialResponse = exports.CountDubbridgeRepayReftrialRequest = exports.QueryDubbridgeRepayListResponse = exports.QueryDubbridgeRepayListRequest = exports.QueryDubbridgeRepayInfoResponse = exports.QueryDubbridgeRepayInfoRequest = exports.RepayDubbridgeRepayCheckstandResponse = exports.RepayDubbridgeRepayCheckstandRequest = exports.QueryDubbridgeReceiptOverdueResponse = exports.QueryDubbridgeReceiptOverdueRequest = exports.UpdateDubbridgeCustomerInfoResponse = exports.UpdateDubbridgeCustomerInfoRequest = exports.QueryDubbridgeCustomerAgreementsignResponse = exports.QueryDubbridgeCustomerAgreementsignRequest = exports.UpdateDubbridgeAccountCustomResponse = exports.UpdateDubbridgeAccountCustomRequest = exports.QueryDubbridgeAccountCustomResponse = exports.QueryDubbridgeAccountCustomRequest = exports.QueryDubbridgeAccountStatusResponse = exports.QueryDubbridgeAccountStatusRequest = exports.ApplyDubbridgeCustomerAgreementsignResponse = exports.ApplyDubbridgeCustomerAgreementsignRequest = exports.QueryDubbridgeRiskinfoBusinessinfoResponse = exports.QueryDubbridgeRiskinfoBusinessinfoRequest = exports.UpdateDubbridgeInstitutionCreditResponse = exports.UpdateDubbridgeInstitutionCreditRequest = exports.QueryDubbridgeRiskinfoCommonResponse = exports.QueryDubbridgeRiskinfoCommonRequest = exports.QueryDubbridgeRiskinfoEnterprisescoreResponse = exports.QueryDubbridgeRiskinfoEnterprisescoreRequest = exports.QueryDubbridgeCreditStatusResponse = exports.QueryDubbridgeCreditStatusRequest = exports.NotifyDubbridgeDefininnerchannelResponse = exports.NotifyDubbridgeDefininnerchannelRequest = exports.VerifyDubbridgeCustomerBankcardResponse = exports.VerifyDubbridgeCustomerBankcardRequest = exports.BindDubbridgeCustomerBankcardResponse = exports.BindDubbridgeCustomerBankcardRequest = exports.UploadDubbridgeFileResponse = exports.UploadDubbridgeFileRequest = exports.ApplyDubbridgeCreditResponse = exports.ApplyDubbridgeCreditRequest = exports.QueryDubbridgeRouterFundrouterResponse = exports.QueryDubbridgeRouterFundrouterRequest = exports.SendDubbridgeSmsBatchResponse = exports.SendDubbridgeSmsBatchRequest = exports.SendDubbridgeSmsResponse = exports.SendDubbridgeSmsRequest = exports.QueryDubheReceiptOverdueResponse = exports.QueryDubheReceiptOverdueRequest = exports.QueryDubheSearchContractResponse = exports.QueryDubheSearchContractRequest = exports.RepayDubheRepayWithholdResponse = exports.RepayDubheRepayWithholdRequest = exports.QueryDubheCustomerAgreementsignResponse = exports.QueryDubheCustomerAgreementsignRequest = exports.ApplyDubheCustomerAgreementsignResponse = exports.ApplyDubheCustomerAgreementsignRequest = exports.UpdateDubheCustomerInfoResponse = exports.UpdateDubheCustomerInfoRequest = exports.QueryDubheRepayInfoResponse = exports.QueryDubheRepayInfoRequest = exports.RepayDubheRepayCheckstandResponse = exports.RepayDubheRepayCheckstandRequest = exports.CountDubheRepayTrialResponse = exports.CountDubheRepayTrialRequest = exports.QueryDubheUsecreditStatusResponse = exports.QueryDubheUsecreditStatusRequest = exports.ApplyDubheUsecreditResponse = exports.ApplyDubheUsecreditRequest = exports.QueryDubheRepayListResponse = exports.QueryDubheRepayListRequest = exports.CountDubheRepayReftrialResponse = exports.CountDubheRepayReftrialRequest = exports.QueryDubheCreditStatusResponse = exports.QueryDubheCreditStatusRequest = exports.ApplyDubheCreditResponse = exports.ApplyDubheCreditRequest = exports.QueryDubheRouterFundrouterResponse = exports.QueryDubheRouterFundrouterRequest = exports.QueryDubheTestResponse = exports.QueryDubheTestRequest = exports.QueryCreditshieldProductBatchResponse = exports.QueryCreditshieldProductBatchRequest = exports.QueryBatchSecurityPolicyResponse = exports.QueryBatchSecurityPolicyRequest = exports.QuerySaasSecurityPolicyResponse = exports.QuerySaasSecurityPolicyRequest = exports.ExecSecurityRiskdataserviceResponse = exports.ExecSecurityRiskdataserviceRequest = exports.CheckSecurityDataResponse = exports.CheckSecurityDataRequest = exports.QuerySecurityDataResponse = exports.QuerySecurityDataRequest = exports.CheckSecurityRdsResponse = exports.CheckSecurityRdsRequest = exports.ConfirmSecurityPolicyResponse = exports.ConfirmSecurityPolicyRequest = exports.SendSecurityDataResponse = exports.SendSecurityDataRequest = exports.QuerySecurityPolicyResponse = exports.QuerySecurityPolicyRequest = exports.QueryCreditshieldProductIvrfcResponse = exports.QueryCreditshieldProductIvrfcRequest = exports.QueryCreditshieldProductCallbackResponse = exports.QueryCreditshieldProductCallbackRequest = exports.BatchqueryCreditshieldProductInfoResponse = exports.BatchqueryCreditshieldProductInfoRequest = exports.NotifyBenefithubRiskLoginResponse = exports.NotifyBenefithubRiskLoginRequest = exports.ReceiveBenefithubRiskPayResponse = exports.ReceiveBenefithubRiskPayRequest = exports.XNameValuePair = exports.TenantActionPlanInfo = exports.CustomStatus = exports.RepayTrail = exports.EventInfo = exports.CreditAmount = exports.RepayInfo = exports.UserClassifyInfo = exports.OfflineDecisionPlanDetail = exports.RtopCrowdRiskFeatureResp = exports.CertificateInfo = exports.RtopRegionalDistribution = exports.FundChainLockResult = exports.RtopCompanyOpinionCount = exports.CustomerUmktInfoModel = exports.ServiceContext = exports.RdaasTaxDecsionService = exports.VehicleInfo = exports.CustomRelationStatus = exports.ShortUrlInfo = exports.RtopGenderDistribution = exports.RtopCompanyAlarm = exports.AICallbackMessage = exports.Contract = exports.PayMethodLockResult = exports.CommonRobotCallDetail = exports.BatchQueryResult = exports.StoreInfo = exports.DefinInnerChannelNotifyResult = exports.GetAgreementUrlResponseData = exports.RdaasTaxDecsionServiceIndicator = exports.OverdueInfoResponse = exports.QueryResult = exports.Supplier = exports.UmktOfflineDecisionTaskExecBatchInfo = exports.InstallmentTrial = exports.CustomerBankCardInfo = exports.CustomerDetail = exports.DfSceneInfos = exports.PersonalInfo = exports.RtopDateDistribution = exports.PlatformRepayTypeInfo = exports.RtopStarCompanyInfo = exports.CommonNotyfyResult = exports.RepayRef = exports.ReceiptInfo = exports.SmsReponse = exports.RtopCompanyOpinionDetail = exports.VariableDetails = exports.CpaasSmsTemplate = exports.ZhimaIdentifyResp = exports.SupplementFile = exports.RiskStormLabelResp = exports.LiveInfo = exports.JobInfo = exports.RobotCallCustomerParam = exports.RiskLabelFilterConfigInfo = exports.GwFundRouterResult = exports.ModelDetails = exports.CustomerUmktInfosModel = exports.DubheFileInfo = exports.RtopPopulationDistribution = exports.RtopRiskGeneNode = exports.ApplyInfo = exports.RtopTagImage = exports.CustomInfoResult = exports.RpcommonResp = exports.EventResultSyncDetail = exports.CompanyInfo = exports.CustomerInfo = exports.RtopAgeDistribution = exports.SecurityResultInfos = exports.StrategyDetails = exports.RiskLabelConfigInfo = exports.StatisticResult = exports.RtopCrowdRiskSummaryResp = exports.ZhimaQueryResp = exports.RtopRiskyCompany = exports.StrategyUploadResult = exports.QueryInfo = exports.CustomerRpspInfosModel = exports.RtopRiskStormCompanyAnnualReport = exports.RtopCompanyRiskInfo = exports.RtopMonitorCompanyFeature = exports.RuntimeResult = exports.RtopCompanyFeedback = exports.RiskLabelInfo = exports.ActionPlanDetailInfo = exports.SceneInfos = exports.UserAggregationInfo = exports.SecurityDataQueryStruct = exports.RepayInfos = exports.RiskData = exports.CustomReceiptStatus = exports.Material = exports.TestStruct = exports.RtopCompanyRiskFactor = exports.BackflowEventRecord = exports.SmsTemplate = exports.UpdateCustomerRelationResponseData = exports.RiskInfo = exports.RepayResult = exports.Additional = exports.RuleDetail = exports.StatisticInfoDetail = exports.RtopRiskTag = exports.UmktInfoModel = exports.CouponInfo = exports.RpspInfoModel = exports.DecisionFlow = exports.RtopCrowdRiskFeatureTag = exports.ActionParamInfo = exports.UmktOfflineDecisionTaskDetailInfo = exports.RtopTypeDistribution = exports.BaseCustomerUmktInfoModel = exports.TermDetail = exports.BackflowEventRecordProperty = exports.RiskDetail = exports.BatchQueryOutputModelInfo = exports.Contact = exports.SecurityScene = exports.OutParams = exports.InfoCodes = exports.RtopLevelDistribution = exports.Config = void 0;
|
|
25
|
+
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.DownloadUmktOfflineCampaignResponse = exports.DownloadUmktOfflineCampaignRequest = exports.UploadUmktOfflineImportrecordResponse = exports.UploadUmktOfflineImportrecordRequest = exports.QueryUmktOfflinedecisionPlandetailsResponse = exports.QueryUmktOfflinedecisionPlandetailsRequest = exports.DownloadUmktOfflinedecisionResultResponse = exports.DownloadUmktOfflinedecisionResultRequest = exports.QueryUmktOfflinedecisionResultResponse = exports.QueryUmktOfflinedecisionResultRequest = exports.UploadUmktOfflinedecisionResponse = exports.UploadUmktOfflinedecisionRequest = exports.QueryUmktCardsmsAnalysisResponse = exports.QueryUmktCardsmsAnalysisRequest = exports.PushUmktBackflowJsondataResponse = exports.PushUmktBackflowJsondataRequest = exports.BatchqueryUmktTaskDetailResponse = exports.BatchqueryUmktTaskDetailRequest = exports.PushUmktCustomerGroupResponse = exports.PushUmktCustomerGroupRequest = exports.PushUmktCommonDataResponse = exports.PushUmktCommonDataRequest = exports.PushRiskplusUmktCommonbackflowResponse = exports.PushRiskplusUmktCommonbackflowRequest = exports.BatchqueryUmktActionplanDetailResponse = exports.BatchqueryUmktActionplanDetailRequest = exports.BatchqueryUmktRobotcallDetailResponse = exports.BatchqueryUmktRobotcallDetailRequest = exports.BatchqueryUmktTenantActionplaninfoResponse = exports.BatchqueryUmktTenantActionplaninfoRequest = exports.CallbackUmktSmsReportResponse = exports.CallbackUmktSmsReportRequest = exports.CallbackUmktSmsUpResponse = exports.CallbackUmktSmsUpRequest = exports.CallbackUmktRobotcallResponse = exports.CallbackUmktRobotcallRequest = exports.ApplyUmktRtBatchmarketingResponse = exports.ApplyUmktRtBatchmarketingRequest = exports.ApplyUmktRealtimemarketingResponse = exports.ApplyUmktRealtimemarketingRequest = exports.QueryUmktRobotcallDetailResponse = exports.QueryUmktRobotcallDetailRequest = exports.QueryUmktTenantActionplaninfoResponse = exports.QueryUmktTenantActionplaninfoRequest = exports.QueryUmktRobotcallStatisticinfoResponse = exports.QueryUmktRobotcallStatisticinfoRequest = exports.BatchqueryUmktRtTopnResponse = exports.BatchqueryUmktRtTopnRequest = exports.ApplyUmktPhonenumberstatusforsmsResponse = exports.ApplyUmktPhonenumberstatusforsmsRequest = exports.BatchqueryUmktRtMixedmarketingResponse = exports.BatchqueryUmktRtMixedmarketingRequest = exports.QueryUmktCpaassmsTemplateResponse = exports.QueryUmktCpaassmsTemplateRequest = exports.SendUmktDigitalsmsBatchResponse = exports.SendUmktDigitalsmsBatchRequest = exports.SendUmktTextsmsBatchResponse = exports.SendUmktTextsmsBatchRequest = exports.QueryUmktCardsmsSupportResponse = exports.QueryUmktCardsmsSupportRequest = exports.SendUmktCardsmsBatchResponse = exports.SendUmktCardsmsBatchRequest = exports.PushUmktBackflowEventResponse = exports.PushUmktBackflowEventRequest = exports.QueryUmktRtMarketingResponse = exports.QueryUmktRtMarketingRequest = exports.CancelUmktDataaccessOfflinetaskResponse = exports.CancelUmktDataaccessOfflinetaskRequest = exports.QueryUmktDataaccessStatisticResponse = exports.QueryUmktDataaccessStatisticRequest = exports.ApplyUmktRobotcallResponse = exports.ApplyUmktRobotcallRequest = exports.QueryUmktScenestrategyTestResponse = exports.QueryUmktScenestrategyTestRequest = exports.BatchqueryUmktRtTailmarketingResponse = exports.BatchqueryUmktRtTailmarketingRequest = exports.ImportUmktSceneUploadResponse = exports.ImportUmktSceneUploadRequest = exports.SyncUmktRtEventresultResponse = exports.SyncUmktRtEventresultRequest = exports.BatchqueryUmktRtMarketingResponse = exports.BatchqueryUmktRtMarketingRequest = exports.UploadUmktParamsFileResponse = exports.UploadUmktParamsFileRequest = exports.QueryTdisaasSecurityPolicyResponse = exports.QueryTdisaasSecurityPolicyRequest = exports.PushTdiquickmsgBackflowJsondataResponse = exports.PushTdiquickmsgBackflowJsondataRequest = exports.PushTdiquickmsgBackflowEventResponse = exports.PushTdiquickmsgBackflowEventRequest = exports.QueryTdiquickmsgRobotcallStatisticinfoResponse = exports.QueryTdiquickmsgRobotcallStatisticinfoRequest = exports.CallbackTdiquickmsgSmsUpResponse = exports.CallbackTdiquickmsgSmsUpRequest = exports.CallbackTdiquickmsgRobotcallResponse = exports.CallbackTdiquickmsgRobotcallRequest = exports.CallbackTdiquickmsgSmsResponse = exports.CallbackTdiquickmsgSmsRequest = exports.ApplyTdiquickmsgRobotcallResponse = exports.ApplyTdiquickmsgRobotcallRequest = exports.ApplyTdiquickmsgRtBatchmarketingResponse = exports.ApplyTdiquickmsgRtBatchmarketingRequest = exports.QuerySnapshotEventResponse = exports.QuerySnapshotEventRequest = exports.QueryRpSecurityPolicyResponse = exports.QueryRpSecurityPolicyRequest = exports.ListRtopStarCompanyResponse = exports.ListRtopStarCompanyRequest = exports.QueryRtopTagImageResponse = exports.QueryRtopTagImageRequest = exports.ListRtopCompanyRelatedResponse = exports.ListRtopCompanyRelatedRequest = exports.QueryRtopCompanyRiskResponse = exports.QueryRtopCompanyRiskRequest = exports.QueryRtopRisklabelConfigResponse = exports.QueryRtopRisklabelConfigRequest = exports.QueryRtopCompanyListResponse = exports.QueryRtopCompanyListRequest = exports.QueryRtopCompanyRiskyResponse = exports.QueryRtopCompanyRiskyRequest = exports.QueryRtopCompanyAlarmResponse = exports.QueryRtopCompanyAlarmRequest = exports.QueryRtopCompanyFeedbackResponse = exports.QueryRtopCompanyFeedbackRequest = exports.PullRegtechNewsResponse = exports.PullRegtechNewsRequest = exports.QueryRtopRisklabelFilterResponse = exports.QueryRtopRisklabelFilterRequest = exports.QueryRtopCompanyResponse = exports.QueryRtopCompanyRequest = exports.QueryRtopRisklabelResponse = exports.QueryRtopRisklabelRequest = exports.CreateRtopTokenResponse = exports.CreateRtopTokenRequest = exports.ExecRtopGenericInvokeResponse = exports.ExecRtopGenericInvokeRequest = exports.QueryRtopCompanyRiskinfoResponse = exports.QueryRtopCompanyRiskinfoRequest = exports.GetRtopCompanyDetailResponse = exports.GetRtopCompanyDetailRequest = exports.QueryRtopCrowdriskSumResponse = exports.QueryRtopCrowdriskSumRequest = exports.QueryRtopRiskstormResponse = exports.QueryRtopRiskstormRequest = exports.QueryRtopCrowdriskDetailResponse = exports.QueryRtopCrowdriskDetailRequest = exports.ListRtopCrowdriskResponse = exports.ListRtopCrowdriskRequest = exports.QueryRtopCrowdriskStatisticResponse = exports.QueryRtopCrowdriskStatisticRequest = exports.GetRtopCompanyMonitorResponse = exports.GetRtopCompanyMonitorRequest = exports.ListRtopCompanyOpinionsResponse = exports.ListRtopCompanyOpinionsRequest = exports.QueryRtopCompanyOpinionResponse = exports.QueryRtopCompanyOpinionRequest = exports.NotifyRpgwUserSignresultResponse = exports.NotifyRpgwUserSignresultRequest = exports.SyncRpgwUserOrderinfoResponse = exports.SyncRpgwUserOrderinfoRequest = exports.WithdrawRpgwUserCommissionResponse = exports.WithdrawRpgwUserCommissionRequest = exports.QueryRpgwUserSignurlResponse = exports.QueryRpgwUserSignurlRequest = exports.RegisterRpgwUserEinvoiceResponse = exports.RegisterRpgwUserEinvoiceRequest = exports.QueryRpgwSignUrlResponse = exports.QueryRpgwSignUrlRequest = exports.QueryRpaasOpenServiceResponse = exports.QueryRpaasOpenServiceRequest = exports.PushRpaasReportAnswerResponse = exports.PushRpaasReportAnswerRequest = exports.ReceiveRbbOverseacompanyProfileResponse = exports.ReceiveRbbOverseacompanyProfileRequest = exports.ReceiveRbbParamsFileResponse = exports.ReceiveRbbParamsFileRequest = exports.PushRbbInvoiceChargeResponse = exports.PushRbbInvoiceChargeRequest = exports.PushRbbCustomerStatusResponse = exports.PushRbbCustomerStatusRequest = exports.GetRbbTaxinvoiceDataResponse = exports.GetRbbTaxinvoiceDataRequest = exports.PushRbbCustomerInformationResponse = exports.PushRbbCustomerInformationRequest = exports.OperateRbbCreditResponse = exports.OperateRbbCreditRequest = exports.UploadRbbFileAmapResponse = exports.UploadRbbFileAmapRequest = exports.PushRbbCustomerCompanyinfoResponse = exports.PushRbbCustomerCompanyinfoRequest = exports.QueryRbbObtsZsearchResponse = exports.QueryRbbObtsZsearchRequest = exports.QueryRbbCompanyGuardResponse = exports.QueryRbbCompanyGuardRequest = exports.ApplyRbbCompanyGuardResponse = exports.ApplyRbbCompanyGuardRequest = exports.FinishRbbRegdatasyncScheduleResponse = exports.FinishRbbRegdatasyncScheduleRequest = exports.StartRbbRegdatasyncScheduleResponse = exports.StartRbbRegdatasyncScheduleRequest = exports.QueryRbbRegdatasyncPreparedResponse = exports.QueryRbbRegdatasyncPreparedRequest = exports.QueryRbbCompanyCreditResponse = exports.QueryRbbCompanyCreditRequest = exports.ApplyRbbCompanyCreditResponse = exports.ApplyRbbCompanyCreditRequest = exports.ExecRbbCompanyGuardResponse = exports.ExecRbbCompanyGuardRequest = exports.CreateRbbUserResponse = exports.CreateRbbUserRequest = exports.CreateRbbTenantResponse = exports.CreateRbbTenantRequest = exports.GetRbbLoginTokenResponse = exports.GetRbbLoginTokenRequest = exports.QueryRbbGeneralResponse = exports.QueryRbbGeneralRequest = exports.CreateRbbApiGwtokenResponse = exports.CreateRbbApiGwtokenRequest = exports.CreateRbbTokenResponse = exports.CreateRbbTokenRequest = exports.QueryRbbGenericInvokeResponse = exports.QueryRbbGenericInvokeRequest = exports.QueryRfcOdpsLindormResponse = exports.QueryRfcOdpsLindormRequest = exports.UploadRfcAiboundFileResponse = exports.UploadRfcAiboundFileRequest = exports.ReceiveRfcParamsFileResponse = exports.ReceiveRfcParamsFileRequest = exports.QueryRdaasTaxSimpleauthdecisionResponse = exports.QueryRdaasTaxSimpleauthdecisionRequest = exports.QueryRdaasTaxRpadecisionindicatorResponse = exports.QueryRdaasTaxRpadecisionindicatorRequest = exports.QueryRdaasTaxRpadecisionserviceResponse = exports.QueryRdaasTaxRpadecisionserviceRequest = exports.NotifyRdaasTaxCallbackResponse = exports.NotifyRdaasTaxCallbackRequest = exports.SyncRdaasTaxAuthorderResponse = exports.SyncRdaasTaxAuthorderRequest = exports.SyncRdaasTaxAuthinfoResponse = exports.SyncRdaasTaxAuthinfoRequest = exports.QueryQmpOfflinehostplanDecisionresultResponse = exports.QueryQmpOfflinehostplanDecisionresultRequest = exports.UploadQmpOfflinehostplanResponse = exports.UploadQmpOfflinehostplanRequest = exports.BatchqueryQmpRtMixedmarketingResponse = exports.BatchqueryQmpRtMixedmarketingRequest = exports.PushQmpBackflowJsondataResponse = exports.PushQmpBackflowJsondataRequest = exports.PushQmpBackflowEventResponse = exports.PushQmpBackflowEventRequest = exports.QueryQmpTextsmsTemplateResponse = exports.QueryQmpTextsmsTemplateRequest = exports.QueryQmpCpaassmsTemplateResponse = exports.QueryQmpCpaassmsTemplateRequest = exports.QueryQmpTenantActionplaninfoResponse = exports.QueryQmpTenantActionplaninfoRequest = exports.BatchqueryQmpTenantActionplaninfoResponse = exports.BatchqueryQmpTenantActionplaninfoRequest = exports.ApplyQmpPhonenumberstatusforsmsResponse = exports.ApplyQmpPhonenumberstatusforsmsRequest = exports.BatchqueryQmpActionplanDetailResponse = exports.BatchqueryQmpActionplanDetailRequest = exports.QueryQmpCardsmsSupportResponse = exports.QueryQmpCardsmsSupportRequest = exports.BatchqueryQmpTaskDetailResponse = exports.BatchqueryQmpTaskDetailRequest = exports.QueryQmpRobotcallStatisticinfoResponse = exports.QueryQmpRobotcallStatisticinfoRequest = exports.QueryQmpDataaccessStatisticResponse = exports.QueryQmpDataaccessStatisticRequest = exports.QueryQmpRobotcallDetailResponse = exports.QueryQmpRobotcallDetailRequest = exports.CallbackQmpRobotcallResponse = exports.CallbackQmpRobotcallRequest = exports.SendQmpDigitalsmsBatchResponse = exports.SendQmpDigitalsmsBatchRequest = exports.CallbackQmpSmsReportResponse = exports.CallbackQmpSmsReportRequest = exports.CallbackQmpSmsUpResponse = exports.CallbackQmpSmsUpRequest = exports.SendQmpCardsmsBatchResponse = exports.SendQmpCardsmsBatchRequest = exports.ApplyQmpRobotcallResponse = exports.ApplyQmpRobotcallRequest = exports.SendQmpTextsmsBatchResponse = exports.SendQmpTextsmsBatchRequest = exports.ApplyQmpRtBatchmarketingResponse = exports.ApplyQmpRtBatchmarketingRequest = exports.CallbackMdipYunfengdieParamsResponse = exports.CallbackMdipYunfengdieParamsRequest = exports.ListMdipDefaultSupplierResponse = exports.ListMdipDefaultSupplierRequest = exports.QueryMdipDataservicePocResponse = exports.QueryMdipDataservicePocRequest = exports.CallbackMdipAuditResponse = exports.CallbackMdipAuditRequest = exports.ReceiveMdipParamsRbbfileResponse = exports.ReceiveMdipParamsRbbfileRequest = exports.ReceiveMdipParamsFileResponse = exports.ReceiveMdipParamsFileRequest = exports.QueryMdipDataserviceResponse = exports.QueryMdipDataserviceRequest = exports.QueryFinserviceZhimaIdentifyResponse = exports.QueryFinserviceZhimaIdentifyRequest = exports.VerifyFinserviceZhimaIdentifyResponse = exports.VerifyFinserviceZhimaIdentifyRequest = exports.QueryDubbridgeInstallmentTrialResponse = exports.QueryDubbridgeInstallmentTrialRequest = exports.PushDubbridgeInstallmentSupplementResponse = exports.PushDubbridgeInstallmentSupplementRequest = exports.CancelDubbridgeInstallmentOrderResponse = exports.CancelDubbridgeInstallmentOrderRequest = exports.QueryDubbridgeInstallmentCreditamtResponse = exports.QueryDubbridgeInstallmentCreditamtRequest = exports.QueryDubbridgeRepaytypeInfoResponse = exports.QueryDubbridgeRepaytypeInfoRequest = exports.QueryDubbridgeMarketingCouponlistResponse = exports.QueryDubbridgeMarketingCouponlistRequest = exports.QueryDubbridgeUserAggregationinfoResponse = exports.QueryDubbridgeUserAggregationinfoRequest = exports.QueryDubbridgeAccountUsecreditResponse = exports.QueryDubbridgeAccountUsecreditRequest = exports.QueryDubbridgeAgreementPreviewResponse = exports.QueryDubbridgeAgreementPreviewRequest = exports.QueryDubbridgeSettlementCertificateResponse = exports.QueryDubbridgeSettlementCertificateRequest = exports.QueryDubbridgeRouterUserselectResponse = exports.QueryDubbridgeRouterUserselectRequest = exports.QueryDubbridgeCustomerBankcardlistResponse = exports.QueryDubbridgeCustomerBankcardlistRequest = exports.QueryDubbridgeLoanUpgradestatusResponse = exports.QueryDubbridgeLoanUpgradestatusRequest = exports.QueryDubbridgeUserUpgradestatusResponse = exports.QueryDubbridgeUserUpgradestatusRequest = exports.QueryDubbridgeCreditPermitResponse = exports.QueryDubbridgeCreditPermitRequest = exports.QueryDubbridgeRepayResultResponse = exports.QueryDubbridgeRepayResultRequest = exports.NotifyDubbridgeCallbackResponse = exports.NotifyDubbridgeCallbackRequest = exports.UpdateDubbridgeFileResponse = exports.UpdateDubbridgeFileRequest = exports.QueryDubbridgeCustomerCommonagreementsignResponse = exports.QueryDubbridgeCustomerCommonagreementsignRequest = exports.QueryDubbridgeReceiptStatusResponse = exports.QueryDubbridgeReceiptStatusRequest = exports.QueryDubbridgeUsecreditStatusResponse = exports.QueryDubbridgeUsecreditStatusRequest = exports.ApplyDubbridgeUsecreditResponse = exports.ApplyDubbridgeUsecreditRequest = exports.QueryDubbridgeSearchContractResponse = exports.QueryDubbridgeSearchContractRequest = exports.RepayDubbridgeRepayWithholdResponse = exports.RepayDubbridgeRepayWithholdRequest = exports.CountDubbridgeRepayTrialResponse = exports.CountDubbridgeRepayTrialRequest = exports.CountDubbridgeRepayReftrialResponse = exports.CountDubbridgeRepayReftrialRequest = exports.QueryDubbridgeRepayListResponse = exports.QueryDubbridgeRepayListRequest = exports.QueryDubbridgeRepayInfoResponse = exports.QueryDubbridgeRepayInfoRequest = exports.RepayDubbridgeRepayCheckstandResponse = exports.RepayDubbridgeRepayCheckstandRequest = exports.QueryDubbridgeReceiptOverdueResponse = exports.QueryDubbridgeReceiptOverdueRequest = exports.UpdateDubbridgeCustomerInfoResponse = exports.UpdateDubbridgeCustomerInfoRequest = exports.QueryDubbridgeCustomerAgreementsignResponse = exports.QueryDubbridgeCustomerAgreementsignRequest = exports.UpdateDubbridgeAccountCustomResponse = exports.UpdateDubbridgeAccountCustomRequest = exports.QueryDubbridgeAccountCustomResponse = exports.QueryDubbridgeAccountCustomRequest = exports.QueryDubbridgeAccountStatusResponse = exports.QueryDubbridgeAccountStatusRequest = exports.ApplyDubbridgeCustomerAgreementsignResponse = exports.ApplyDubbridgeCustomerAgreementsignRequest = exports.QueryDubbridgeRiskinfoBusinessinfoResponse = exports.QueryDubbridgeRiskinfoBusinessinfoRequest = exports.UpdateDubbridgeInstitutionCreditResponse = exports.UpdateDubbridgeInstitutionCreditRequest = exports.QueryDubbridgeRiskinfoCommonResponse = exports.QueryDubbridgeRiskinfoCommonRequest = exports.QueryDubbridgeRiskinfoEnterprisescoreResponse = exports.QueryDubbridgeRiskinfoEnterprisescoreRequest = exports.QueryDubbridgeCreditStatusResponse = exports.QueryDubbridgeCreditStatusRequest = exports.NotifyDubbridgeDefininnerchannelResponse = exports.NotifyDubbridgeDefininnerchannelRequest = exports.VerifyDubbridgeCustomerBankcardResponse = exports.VerifyDubbridgeCustomerBankcardRequest = exports.BindDubbridgeCustomerBankcardResponse = exports.BindDubbridgeCustomerBankcardRequest = exports.UploadDubbridgeFileResponse = exports.UploadDubbridgeFileRequest = exports.ApplyDubbridgeCreditResponse = exports.ApplyDubbridgeCreditRequest = exports.QueryDubbridgeRouterFundrouterResponse = exports.QueryDubbridgeRouterFundrouterRequest = exports.SendDubbridgeSmsBatchResponse = exports.SendDubbridgeSmsBatchRequest = exports.SendDubbridgeSmsResponse = exports.SendDubbridgeSmsRequest = exports.QueryDubheReceiptOverdueResponse = exports.QueryDubheReceiptOverdueRequest = exports.QueryDubheSearchContractResponse = exports.QueryDubheSearchContractRequest = exports.RepayDubheRepayWithholdResponse = exports.RepayDubheRepayWithholdRequest = exports.QueryDubheCustomerAgreementsignResponse = exports.QueryDubheCustomerAgreementsignRequest = exports.ApplyDubheCustomerAgreementsignResponse = exports.ApplyDubheCustomerAgreementsignRequest = exports.UpdateDubheCustomerInfoResponse = exports.UpdateDubheCustomerInfoRequest = exports.QueryDubheRepayInfoResponse = exports.QueryDubheRepayInfoRequest = exports.RepayDubheRepayCheckstandResponse = exports.RepayDubheRepayCheckstandRequest = exports.CountDubheRepayTrialResponse = exports.CountDubheRepayTrialRequest = exports.QueryDubheUsecreditStatusResponse = exports.QueryDubheUsecreditStatusRequest = exports.ApplyDubheUsecreditResponse = exports.ApplyDubheUsecreditRequest = exports.QueryDubheRepayListResponse = exports.QueryDubheRepayListRequest = exports.CountDubheRepayReftrialResponse = exports.CountDubheRepayReftrialRequest = exports.QueryDubheCreditStatusResponse = exports.QueryDubheCreditStatusRequest = exports.ApplyDubheCreditResponse = exports.ApplyDubheCreditRequest = exports.QueryDubheRouterFundrouterResponse = exports.QueryDubheRouterFundrouterRequest = exports.QueryDubheTestResponse = exports.QueryDubheTestRequest = exports.QueryCreditshieldProductBatchResponse = exports.QueryCreditshieldProductBatchRequest = exports.QueryBatchSecurityPolicyResponse = exports.QueryBatchSecurityPolicyRequest = exports.QuerySaasSecurityPolicyResponse = exports.QuerySaasSecurityPolicyRequest = exports.ExecSecurityRiskdataserviceResponse = exports.ExecSecurityRiskdataserviceRequest = exports.CheckSecurityDataResponse = exports.CheckSecurityDataRequest = exports.QuerySecurityDataResponse = exports.QuerySecurityDataRequest = exports.CheckSecurityRdsResponse = exports.CheckSecurityRdsRequest = exports.ConfirmSecurityPolicyResponse = exports.ConfirmSecurityPolicyRequest = exports.SendSecurityDataResponse = exports.SendSecurityDataRequest = exports.QuerySecurityPolicyResponse = exports.QuerySecurityPolicyRequest = exports.QueryCreditshieldProductIvrfcResponse = exports.QueryCreditshieldProductIvrfcRequest = exports.QueryCreditshieldProductCallbackResponse = exports.QueryCreditshieldProductCallbackRequest = exports.BatchqueryCreditshieldProductInfoResponse = exports.BatchqueryCreditshieldProductInfoRequest = exports.QueryBenefithubReportInformationResponse = exports.QueryBenefithubReportInformationRequest = exports.NotifyBenefithubRiskPayunilateralResponse = exports.NotifyBenefithubRiskPayunilateralRequest = exports.NotifyBenefithubRiskLoginResponse = exports.NotifyBenefithubRiskLoginRequest = exports.ReceiveBenefithubRiskPayResponse = exports.ReceiveBenefithubRiskPayRequest = exports.XNameValuePair = exports.TenantActionPlanInfo = exports.CustomStatus = exports.RepayTrail = exports.EventInfo = exports.CreditAmount = exports.RepayInfo = exports.UserClassifyInfo = exports.OfflineDecisionPlanDetail = exports.RtopCrowdRiskFeatureResp = exports.CertificateInfo = exports.RtopRegionalDistribution = exports.FundChainLockResult = exports.RtopCompanyOpinionCount = exports.CustomerUmktInfoModel = exports.ServiceContext = exports.RdaasTaxDecsionService = exports.VehicleInfo = exports.CustomRelationStatus = exports.ShortUrlInfo = exports.RtopGenderDistribution = exports.RtopCompanyAlarm = exports.AICallbackMessage = exports.Contract = exports.PayMethodLockResult = exports.CommonRobotCallDetail = exports.BatchQueryResult = exports.StoreInfo = exports.DefinInnerChannelNotifyResult = exports.GetAgreementUrlResponseData = exports.RdaasTaxDecsionServiceIndicator = exports.OverdueInfoResponse = exports.QueryResult = exports.Supplier = exports.UmktOfflineDecisionTaskExecBatchInfo = exports.InstallmentTrial = exports.CustomerBankCardInfo = exports.CustomerDetail = exports.DfSceneInfos = exports.PersonalInfo = exports.RtopDateDistribution = exports.PlatformRepayTypeInfo = exports.RtopStarCompanyInfo = exports.CommonNotyfyResult = exports.RepayRef = exports.ReceiptInfo = exports.SmsReponse = exports.RtopCompanyOpinionDetail = exports.VariableDetails = exports.CpaasSmsTemplate = exports.ZhimaIdentifyResp = exports.SupplementFile = exports.RiskStormLabelResp = exports.LiveInfo = exports.JobInfo = exports.RobotCallCustomerParam = exports.RiskLabelFilterConfigInfo = exports.GwFundRouterResult = exports.ModelDetails = exports.CustomerUmktInfosModel = exports.DubheFileInfo = exports.RtopPopulationDistribution = exports.RtopRiskGeneNode = exports.ApplyInfo = exports.RtopTagImage = exports.CustomInfoResult = exports.RpcommonResp = exports.EventResultSyncDetail = exports.CompanyInfo = exports.CustomerInfo = exports.RtopAgeDistribution = exports.SecurityResultInfos = exports.StrategyDetails = exports.RiskLabelConfigInfo = exports.StatisticResult = exports.RtopCrowdRiskSummaryResp = exports.ZhimaQueryResp = exports.RtopRiskyCompany = exports.StrategyUploadResult = exports.QueryInfo = exports.CustomerRpspInfosModel = exports.RtopRiskStormCompanyAnnualReport = exports.RtopCompanyRiskInfo = exports.RtopMonitorCompanyFeature = exports.RuntimeResult = exports.RtopCompanyFeedback = exports.RiskLabelInfo = exports.ActionPlanDetailInfo = exports.SceneInfos = exports.UserAggregationInfo = exports.SecurityDataQueryStruct = exports.RepayInfos = exports.RiskData = exports.CustomReceiptStatus = exports.Material = exports.TestStruct = exports.RtopCompanyRiskFactor = exports.BackflowEventRecord = exports.SmsTemplate = exports.UpdateCustomerRelationResponseData = exports.RiskInfo = exports.RepayResult = exports.Additional = exports.RuleDetail = exports.StatisticInfoDetail = exports.RtopRiskTag = exports.UmktInfoModel = exports.CouponInfo = exports.RpspInfoModel = exports.DecisionFlow = exports.RtopCrowdRiskFeatureTag = exports.ActionParamInfo = exports.UmktOfflineDecisionTaskDetailInfo = exports.RtopTypeDistribution = exports.BaseCustomerUmktInfoModel = exports.TermDetail = exports.BackflowEventRecordProperty = exports.RiskDetail = exports.BatchQueryOutputModelInfo = exports.Contact = exports.SecurityScene = exports.OutParams = exports.InfoCodes = exports.RtopLevelDistribution = exports.Config = void 0;
|
|
26
26
|
// This file is auto-generated, don't edit it
|
|
27
27
|
const alipay_util_1 = __importDefault(require("@antchain/alipay-util"));
|
|
28
28
|
const tea_util_1 = __importStar(require("@alicloud/tea-util")), $Util = tea_util_1;
|
|
@@ -1989,6 +1989,7 @@ class JobInfo extends $tea.Model {
|
|
|
1989
1989
|
companyStreet: 'company_street',
|
|
1990
1990
|
companyAddress: 'company_address',
|
|
1991
1991
|
yearSalary: 'year_salary',
|
|
1992
|
+
induInvol: 'indu_invol',
|
|
1992
1993
|
};
|
|
1993
1994
|
}
|
|
1994
1995
|
static types() {
|
|
@@ -2006,6 +2007,7 @@ class JobInfo extends $tea.Model {
|
|
|
2006
2007
|
companyStreet: 'string',
|
|
2007
2008
|
companyAddress: 'string',
|
|
2008
2009
|
yearSalary: 'number',
|
|
2010
|
+
induInvol: 'string',
|
|
2009
2011
|
};
|
|
2010
2012
|
}
|
|
2011
2013
|
}
|
|
@@ -3718,6 +3720,142 @@ class NotifyBenefithubRiskLoginResponse extends $tea.Model {
|
|
|
3718
3720
|
}
|
|
3719
3721
|
}
|
|
3720
3722
|
exports.NotifyBenefithubRiskLoginResponse = NotifyBenefithubRiskLoginResponse;
|
|
3723
|
+
class NotifyBenefithubRiskPayunilateralRequest extends $tea.Model {
|
|
3724
|
+
constructor(map) {
|
|
3725
|
+
super(map);
|
|
3726
|
+
}
|
|
3727
|
+
static names() {
|
|
3728
|
+
return {
|
|
3729
|
+
authToken: 'auth_token',
|
|
3730
|
+
productInstanceId: 'product_instance_id',
|
|
3731
|
+
bizType: 'biz_type',
|
|
3732
|
+
paymentNo: 'payment_no',
|
|
3733
|
+
status: 'status',
|
|
3734
|
+
orderAmount: 'order_amount',
|
|
3735
|
+
paymentAmount: 'payment_amount',
|
|
3736
|
+
paymentTime: 'payment_time',
|
|
3737
|
+
paymentMethodType: 'payment_method_type',
|
|
3738
|
+
capNum: 'cap_num',
|
|
3739
|
+
merchantNo: 'merchant_no',
|
|
3740
|
+
orderType: 'order_type',
|
|
3741
|
+
orderSource: 'order_source',
|
|
3742
|
+
platformCode: 'platform_code',
|
|
3743
|
+
userUniqueId: 'user_unique_id',
|
|
3744
|
+
productCode: 'product_code',
|
|
3745
|
+
};
|
|
3746
|
+
}
|
|
3747
|
+
static types() {
|
|
3748
|
+
return {
|
|
3749
|
+
authToken: 'string',
|
|
3750
|
+
productInstanceId: 'string',
|
|
3751
|
+
bizType: 'string',
|
|
3752
|
+
paymentNo: 'string',
|
|
3753
|
+
status: 'string',
|
|
3754
|
+
orderAmount: 'string',
|
|
3755
|
+
paymentAmount: 'string',
|
|
3756
|
+
paymentTime: 'string',
|
|
3757
|
+
paymentMethodType: 'string',
|
|
3758
|
+
capNum: 'string',
|
|
3759
|
+
merchantNo: 'string',
|
|
3760
|
+
orderType: 'string',
|
|
3761
|
+
orderSource: 'string',
|
|
3762
|
+
platformCode: 'string',
|
|
3763
|
+
userUniqueId: 'string',
|
|
3764
|
+
productCode: 'string',
|
|
3765
|
+
};
|
|
3766
|
+
}
|
|
3767
|
+
}
|
|
3768
|
+
exports.NotifyBenefithubRiskPayunilateralRequest = NotifyBenefithubRiskPayunilateralRequest;
|
|
3769
|
+
class NotifyBenefithubRiskPayunilateralResponse extends $tea.Model {
|
|
3770
|
+
constructor(map) {
|
|
3771
|
+
super(map);
|
|
3772
|
+
}
|
|
3773
|
+
static names() {
|
|
3774
|
+
return {
|
|
3775
|
+
reqMsgId: 'req_msg_id',
|
|
3776
|
+
resultCode: 'result_code',
|
|
3777
|
+
resultMsg: 'result_msg',
|
|
3778
|
+
resultData: 'result_data',
|
|
3779
|
+
};
|
|
3780
|
+
}
|
|
3781
|
+
static types() {
|
|
3782
|
+
return {
|
|
3783
|
+
reqMsgId: 'string',
|
|
3784
|
+
resultCode: 'string',
|
|
3785
|
+
resultMsg: 'string',
|
|
3786
|
+
resultData: 'string',
|
|
3787
|
+
};
|
|
3788
|
+
}
|
|
3789
|
+
}
|
|
3790
|
+
exports.NotifyBenefithubRiskPayunilateralResponse = NotifyBenefithubRiskPayunilateralResponse;
|
|
3791
|
+
class QueryBenefithubReportInformationRequest extends $tea.Model {
|
|
3792
|
+
constructor(map) {
|
|
3793
|
+
super(map);
|
|
3794
|
+
}
|
|
3795
|
+
static names() {
|
|
3796
|
+
return {
|
|
3797
|
+
authToken: 'auth_token',
|
|
3798
|
+
productInstanceId: 'product_instance_id',
|
|
3799
|
+
orderNo: 'order_no',
|
|
3800
|
+
platformCode: 'platform_code',
|
|
3801
|
+
productCode: 'product_code',
|
|
3802
|
+
userUniqueId: 'user_unique_id',
|
|
3803
|
+
};
|
|
3804
|
+
}
|
|
3805
|
+
static types() {
|
|
3806
|
+
return {
|
|
3807
|
+
authToken: 'string',
|
|
3808
|
+
productInstanceId: 'string',
|
|
3809
|
+
orderNo: 'string',
|
|
3810
|
+
platformCode: 'string',
|
|
3811
|
+
productCode: 'string',
|
|
3812
|
+
userUniqueId: 'string',
|
|
3813
|
+
};
|
|
3814
|
+
}
|
|
3815
|
+
}
|
|
3816
|
+
exports.QueryBenefithubReportInformationRequest = QueryBenefithubReportInformationRequest;
|
|
3817
|
+
class QueryBenefithubReportInformationResponse extends $tea.Model {
|
|
3818
|
+
constructor(map) {
|
|
3819
|
+
super(map);
|
|
3820
|
+
}
|
|
3821
|
+
static names() {
|
|
3822
|
+
return {
|
|
3823
|
+
reqMsgId: 'req_msg_id',
|
|
3824
|
+
resultCode: 'result_code',
|
|
3825
|
+
resultMsg: 'result_msg',
|
|
3826
|
+
uuid: 'uuid',
|
|
3827
|
+
orderNo: 'order_no',
|
|
3828
|
+
platformCode: 'platform_code',
|
|
3829
|
+
productCode: 'product_code',
|
|
3830
|
+
reportNo: 'report_no',
|
|
3831
|
+
reportTime: 'report_time',
|
|
3832
|
+
reportEndTime: 'report_end_time',
|
|
3833
|
+
reportContent: 'report_content',
|
|
3834
|
+
status: 'status',
|
|
3835
|
+
name: 'name',
|
|
3836
|
+
idCard: 'id_card',
|
|
3837
|
+
};
|
|
3838
|
+
}
|
|
3839
|
+
static types() {
|
|
3840
|
+
return {
|
|
3841
|
+
reqMsgId: 'string',
|
|
3842
|
+
resultCode: 'string',
|
|
3843
|
+
resultMsg: 'string',
|
|
3844
|
+
uuid: 'string',
|
|
3845
|
+
orderNo: 'string',
|
|
3846
|
+
platformCode: 'string',
|
|
3847
|
+
productCode: 'string',
|
|
3848
|
+
reportNo: 'string',
|
|
3849
|
+
reportTime: 'string',
|
|
3850
|
+
reportEndTime: 'string',
|
|
3851
|
+
reportContent: 'string',
|
|
3852
|
+
status: 'string',
|
|
3853
|
+
name: 'string',
|
|
3854
|
+
idCard: 'string',
|
|
3855
|
+
};
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3858
|
+
exports.QueryBenefithubReportInformationResponse = QueryBenefithubReportInformationResponse;
|
|
3721
3859
|
class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
|
|
3722
3860
|
constructor(map) {
|
|
3723
3861
|
super(map);
|
|
@@ -6627,6 +6765,7 @@ class CountDubbridgeRepayTrialRequest extends $tea.Model {
|
|
|
6627
6765
|
originalOrderNo: 'original_order_no',
|
|
6628
6766
|
repayType: 'repay_type',
|
|
6629
6767
|
orderNo: 'order_no',
|
|
6768
|
+
periodList: 'period_list',
|
|
6630
6769
|
};
|
|
6631
6770
|
}
|
|
6632
6771
|
static types() {
|
|
@@ -6636,6 +6775,7 @@ class CountDubbridgeRepayTrialRequest extends $tea.Model {
|
|
|
6636
6775
|
originalOrderNo: 'string',
|
|
6637
6776
|
repayType: 'string',
|
|
6638
6777
|
orderNo: 'string',
|
|
6778
|
+
periodList: { 'type': 'array', 'itemType': 'number' },
|
|
6639
6779
|
};
|
|
6640
6780
|
}
|
|
6641
6781
|
}
|
|
@@ -6655,6 +6795,7 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
6655
6795
|
serviceCharge: 'service_charge',
|
|
6656
6796
|
realGuaranteeFee: 'real_guarantee_fee',
|
|
6657
6797
|
realLiquidatedDamages: 'real_liquidated_damages',
|
|
6798
|
+
repayResultList: 'repay_result_list',
|
|
6658
6799
|
};
|
|
6659
6800
|
}
|
|
6660
6801
|
static types() {
|
|
@@ -6668,6 +6809,7 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
6668
6809
|
serviceCharge: 'number',
|
|
6669
6810
|
realGuaranteeFee: 'number',
|
|
6670
6811
|
realLiquidatedDamages: 'number',
|
|
6812
|
+
repayResultList: { 'type': 'array', 'itemType': RepayResult },
|
|
6671
6813
|
};
|
|
6672
6814
|
}
|
|
6673
6815
|
}
|
|
@@ -6680,22 +6822,36 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
6680
6822
|
return {
|
|
6681
6823
|
authToken: 'auth_token',
|
|
6682
6824
|
productInstanceId: 'product_instance_id',
|
|
6825
|
+
orderNo: 'order_no',
|
|
6683
6826
|
originalOrderNo: 'original_order_no',
|
|
6684
6827
|
repayType: 'repay_type',
|
|
6685
|
-
|
|
6828
|
+
periodList: 'period_list',
|
|
6686
6829
|
validRepayAmount: 'valid_repay_amount',
|
|
6687
6830
|
bankCardNo: 'bank_card_no',
|
|
6831
|
+
paymentFlag: 'payment_flag',
|
|
6832
|
+
accountName: 'account_name',
|
|
6833
|
+
reservedMobile: 'reserved_mobile',
|
|
6834
|
+
accountOpenBank: 'account_open_bank',
|
|
6835
|
+
deductionCode: 'deduction_code',
|
|
6836
|
+
signingAgreementNum: 'signing_agreement_num',
|
|
6688
6837
|
};
|
|
6689
6838
|
}
|
|
6690
6839
|
static types() {
|
|
6691
6840
|
return {
|
|
6692
6841
|
authToken: 'string',
|
|
6693
6842
|
productInstanceId: 'string',
|
|
6843
|
+
orderNo: 'string',
|
|
6694
6844
|
originalOrderNo: 'string',
|
|
6695
6845
|
repayType: 'string',
|
|
6696
|
-
|
|
6846
|
+
periodList: { 'type': 'array', 'itemType': 'number' },
|
|
6697
6847
|
validRepayAmount: 'string',
|
|
6698
6848
|
bankCardNo: 'string',
|
|
6849
|
+
paymentFlag: 'string',
|
|
6850
|
+
accountName: 'string',
|
|
6851
|
+
reservedMobile: 'string',
|
|
6852
|
+
accountOpenBank: 'string',
|
|
6853
|
+
deductionCode: 'string',
|
|
6854
|
+
signingAgreementNum: 'string',
|
|
6699
6855
|
};
|
|
6700
6856
|
}
|
|
6701
6857
|
}
|
|
@@ -16080,7 +16236,7 @@ class Client {
|
|
|
16080
16236
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
16081
16237
|
access_key: this._accessKeyId,
|
|
16082
16238
|
base_sdk_version: "TeaSDK-2.0",
|
|
16083
|
-
sdk_version: "1.26.
|
|
16239
|
+
sdk_version: "1.26.5",
|
|
16084
16240
|
_prod_code: "RISKPLUS",
|
|
16085
16241
|
_prod_channel: "undefined",
|
|
16086
16242
|
};
|
|
@@ -16151,6 +16307,40 @@ class Client {
|
|
|
16151
16307
|
tea_util_1.default.validateModel(request);
|
|
16152
16308
|
return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.risk.login.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyBenefithubRiskLoginResponse({}));
|
|
16153
16309
|
}
|
|
16310
|
+
/**
|
|
16311
|
+
* Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
|
|
16312
|
+
* Summary: 奇富组件支付结果通知
|
|
16313
|
+
*/
|
|
16314
|
+
async notifyBenefithubRiskPayunilateral(request) {
|
|
16315
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
16316
|
+
let headers = {};
|
|
16317
|
+
return await this.notifyBenefithubRiskPayunilateralEx(request, headers, runtime);
|
|
16318
|
+
}
|
|
16319
|
+
/**
|
|
16320
|
+
* Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
|
|
16321
|
+
* Summary: 奇富组件支付结果通知
|
|
16322
|
+
*/
|
|
16323
|
+
async notifyBenefithubRiskPayunilateralEx(request, headers, runtime) {
|
|
16324
|
+
tea_util_1.default.validateModel(request);
|
|
16325
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.risk.payunilateral.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyBenefithubRiskPayunilateralResponse({}));
|
|
16326
|
+
}
|
|
16327
|
+
/**
|
|
16328
|
+
* Description: 渠道主动查询报告详情接口
|
|
16329
|
+
* Summary: 渠道查询报告详情
|
|
16330
|
+
*/
|
|
16331
|
+
async queryBenefithubReportInformation(request) {
|
|
16332
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
16333
|
+
let headers = {};
|
|
16334
|
+
return await this.queryBenefithubReportInformationEx(request, headers, runtime);
|
|
16335
|
+
}
|
|
16336
|
+
/**
|
|
16337
|
+
* Description: 渠道主动查询报告详情接口
|
|
16338
|
+
* Summary: 渠道查询报告详情
|
|
16339
|
+
*/
|
|
16340
|
+
async queryBenefithubReportInformationEx(request, headers, runtime) {
|
|
16341
|
+
tea_util_1.default.validateModel(request);
|
|
16342
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.report.information.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBenefithubReportInformationResponse({}));
|
|
16343
|
+
}
|
|
16154
16344
|
/**
|
|
16155
16345
|
* Description: 信护盾产品批量查询
|
|
16156
16346
|
* Summary: 信护盾产品批量查询
|