@antchain/riskplus 1.26.3 → 1.26.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 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,87 @@ 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
+ static names(): {
2352
+ [key: string]: string;
2353
+ };
2354
+ static types(): {
2355
+ [key: string]: any;
2356
+ };
2357
+ constructor(map?: {
2358
+ [key: string]: any;
2359
+ });
2360
+ }
2361
+ export declare class QueryBenefithubReportInformationResponse extends $tea.Model {
2362
+ reqMsgId?: string;
2363
+ resultCode?: string;
2364
+ resultMsg?: string;
2365
+ uuid?: string;
2366
+ orderNo?: string;
2367
+ platformCode?: string;
2368
+ productCode?: string;
2369
+ reportNo?: string;
2370
+ reportTime?: string;
2371
+ reportEndTime?: string;
2372
+ reportContent?: string;
2373
+ status?: string;
2374
+ name?: string;
2375
+ idCard?: string;
2376
+ static names(): {
2377
+ [key: string]: string;
2378
+ };
2379
+ static types(): {
2380
+ [key: string]: any;
2381
+ };
2382
+ constructor(map?: {
2383
+ [key: string]: any;
2384
+ });
2385
+ }
2304
2386
  export declare class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
2305
2387
  authToken?: string;
2306
2388
  productInstanceId?: string;
@@ -4188,6 +4270,7 @@ export declare class CountDubbridgeRepayTrialRequest extends $tea.Model {
4188
4270
  originalOrderNo: string;
4189
4271
  repayType: string;
4190
4272
  orderNo: string;
4273
+ periodList?: number[];
4191
4274
  static names(): {
4192
4275
  [key: string]: string;
4193
4276
  };
@@ -4208,6 +4291,7 @@ export declare class CountDubbridgeRepayTrialResponse extends $tea.Model {
4208
4291
  serviceCharge?: number;
4209
4292
  realGuaranteeFee?: number;
4210
4293
  realLiquidatedDamages?: number;
4294
+ repayResultList?: RepayResult[];
4211
4295
  static names(): {
4212
4296
  [key: string]: string;
4213
4297
  };
@@ -4221,11 +4305,18 @@ export declare class CountDubbridgeRepayTrialResponse extends $tea.Model {
4221
4305
  export declare class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
4222
4306
  authToken?: string;
4223
4307
  productInstanceId?: string;
4308
+ orderNo: string;
4224
4309
  originalOrderNo: string;
4225
4310
  repayType: string;
4226
- orderNo: string;
4311
+ periodList?: number[];
4227
4312
  validRepayAmount?: string;
4228
4313
  bankCardNo?: string;
4314
+ paymentFlag?: string;
4315
+ accountName?: string;
4316
+ reservedMobile?: string;
4317
+ accountOpenBank?: string;
4318
+ deductionCode?: string;
4319
+ signingAgreementNum?: string;
4229
4320
  static names(): {
4230
4321
  [key: string]: string;
4231
4322
  };
@@ -10368,6 +10459,30 @@ export default class Client {
10368
10459
  notifyBenefithubRiskLoginEx(request: NotifyBenefithubRiskLoginRequest, headers: {
10369
10460
  [key: string]: string;
10370
10461
  }, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskLoginResponse>;
10462
+ /**
10463
+ * Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
10464
+ * Summary: 奇富组件支付结果通知
10465
+ */
10466
+ notifyBenefithubRiskPayunilateral(request: NotifyBenefithubRiskPayunilateralRequest): Promise<NotifyBenefithubRiskPayunilateralResponse>;
10467
+ /**
10468
+ * Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
10469
+ * Summary: 奇富组件支付结果通知
10470
+ */
10471
+ notifyBenefithubRiskPayunilateralEx(request: NotifyBenefithubRiskPayunilateralRequest, headers: {
10472
+ [key: string]: string;
10473
+ }, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskPayunilateralResponse>;
10474
+ /**
10475
+ * Description: 渠道主动查询报告详情接口
10476
+ * Summary: 渠道查询报告详情
10477
+ */
10478
+ queryBenefithubReportInformation(request: QueryBenefithubReportInformationRequest): Promise<QueryBenefithubReportInformationResponse>;
10479
+ /**
10480
+ * Description: 渠道主动查询报告详情接口
10481
+ * Summary: 渠道查询报告详情
10482
+ */
10483
+ queryBenefithubReportInformationEx(request: QueryBenefithubReportInformationRequest, headers: {
10484
+ [key: string]: string;
10485
+ }, runtime: $Util.RuntimeOptions): Promise<QueryBenefithubReportInformationResponse>;
10371
10486
  /**
10372
10487
  * Description: 信护盾产品批量查询
10373
10488
  * 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,136 @@ 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
+ };
3801
+ }
3802
+ static types() {
3803
+ return {
3804
+ authToken: 'string',
3805
+ productInstanceId: 'string',
3806
+ orderNo: 'string',
3807
+ };
3808
+ }
3809
+ }
3810
+ exports.QueryBenefithubReportInformationRequest = QueryBenefithubReportInformationRequest;
3811
+ class QueryBenefithubReportInformationResponse extends $tea.Model {
3812
+ constructor(map) {
3813
+ super(map);
3814
+ }
3815
+ static names() {
3816
+ return {
3817
+ reqMsgId: 'req_msg_id',
3818
+ resultCode: 'result_code',
3819
+ resultMsg: 'result_msg',
3820
+ uuid: 'uuid',
3821
+ orderNo: 'order_no',
3822
+ platformCode: 'platform_code',
3823
+ productCode: 'product_code',
3824
+ reportNo: 'report_no',
3825
+ reportTime: 'report_time',
3826
+ reportEndTime: 'report_end_time',
3827
+ reportContent: 'report_content',
3828
+ status: 'status',
3829
+ name: 'name',
3830
+ idCard: 'id_card',
3831
+ };
3832
+ }
3833
+ static types() {
3834
+ return {
3835
+ reqMsgId: 'string',
3836
+ resultCode: 'string',
3837
+ resultMsg: 'string',
3838
+ uuid: 'string',
3839
+ orderNo: 'string',
3840
+ platformCode: 'string',
3841
+ productCode: 'string',
3842
+ reportNo: 'string',
3843
+ reportTime: 'string',
3844
+ reportEndTime: 'string',
3845
+ reportContent: 'string',
3846
+ status: 'string',
3847
+ name: 'string',
3848
+ idCard: 'string',
3849
+ };
3850
+ }
3851
+ }
3852
+ exports.QueryBenefithubReportInformationResponse = QueryBenefithubReportInformationResponse;
3721
3853
  class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
3722
3854
  constructor(map) {
3723
3855
  super(map);
@@ -6627,6 +6759,7 @@ class CountDubbridgeRepayTrialRequest extends $tea.Model {
6627
6759
  originalOrderNo: 'original_order_no',
6628
6760
  repayType: 'repay_type',
6629
6761
  orderNo: 'order_no',
6762
+ periodList: 'period_list',
6630
6763
  };
6631
6764
  }
6632
6765
  static types() {
@@ -6636,6 +6769,7 @@ class CountDubbridgeRepayTrialRequest extends $tea.Model {
6636
6769
  originalOrderNo: 'string',
6637
6770
  repayType: 'string',
6638
6771
  orderNo: 'string',
6772
+ periodList: { 'type': 'array', 'itemType': 'number' },
6639
6773
  };
6640
6774
  }
6641
6775
  }
@@ -6655,6 +6789,7 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
6655
6789
  serviceCharge: 'service_charge',
6656
6790
  realGuaranteeFee: 'real_guarantee_fee',
6657
6791
  realLiquidatedDamages: 'real_liquidated_damages',
6792
+ repayResultList: 'repay_result_list',
6658
6793
  };
6659
6794
  }
6660
6795
  static types() {
@@ -6668,6 +6803,7 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
6668
6803
  serviceCharge: 'number',
6669
6804
  realGuaranteeFee: 'number',
6670
6805
  realLiquidatedDamages: 'number',
6806
+ repayResultList: { 'type': 'array', 'itemType': RepayResult },
6671
6807
  };
6672
6808
  }
6673
6809
  }
@@ -6680,22 +6816,36 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
6680
6816
  return {
6681
6817
  authToken: 'auth_token',
6682
6818
  productInstanceId: 'product_instance_id',
6819
+ orderNo: 'order_no',
6683
6820
  originalOrderNo: 'original_order_no',
6684
6821
  repayType: 'repay_type',
6685
- orderNo: 'order_no',
6822
+ periodList: 'period_list',
6686
6823
  validRepayAmount: 'valid_repay_amount',
6687
6824
  bankCardNo: 'bank_card_no',
6825
+ paymentFlag: 'payment_flag',
6826
+ accountName: 'account_name',
6827
+ reservedMobile: 'reserved_mobile',
6828
+ accountOpenBank: 'account_open_bank',
6829
+ deductionCode: 'deduction_code',
6830
+ signingAgreementNum: 'signing_agreement_num',
6688
6831
  };
6689
6832
  }
6690
6833
  static types() {
6691
6834
  return {
6692
6835
  authToken: 'string',
6693
6836
  productInstanceId: 'string',
6837
+ orderNo: 'string',
6694
6838
  originalOrderNo: 'string',
6695
6839
  repayType: 'string',
6696
- orderNo: 'string',
6840
+ periodList: { 'type': 'array', 'itemType': 'number' },
6697
6841
  validRepayAmount: 'string',
6698
6842
  bankCardNo: 'string',
6843
+ paymentFlag: 'string',
6844
+ accountName: 'string',
6845
+ reservedMobile: 'string',
6846
+ accountOpenBank: 'string',
6847
+ deductionCode: 'string',
6848
+ signingAgreementNum: 'string',
6699
6849
  };
6700
6850
  }
6701
6851
  }
@@ -16080,7 +16230,7 @@ class Client {
16080
16230
  req_msg_id: alipay_util_1.default.getNonce(),
16081
16231
  access_key: this._accessKeyId,
16082
16232
  base_sdk_version: "TeaSDK-2.0",
16083
- sdk_version: "1.26.3",
16233
+ sdk_version: "1.26.4",
16084
16234
  _prod_code: "RISKPLUS",
16085
16235
  _prod_channel: "undefined",
16086
16236
  };
@@ -16151,6 +16301,40 @@ class Client {
16151
16301
  tea_util_1.default.validateModel(request);
16152
16302
  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
16303
  }
16304
+ /**
16305
+ * Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
16306
+ * Summary: 奇富组件支付结果通知
16307
+ */
16308
+ async notifyBenefithubRiskPayunilateral(request) {
16309
+ let runtime = new $Util.RuntimeOptions({});
16310
+ let headers = {};
16311
+ return await this.notifyBenefithubRiskPayunilateralEx(request, headers, runtime);
16312
+ }
16313
+ /**
16314
+ * Description: 奇富组件支付结果通知, 提供给驭鉴使用,用于接收从奇富支付成功的通知,发起订单创建
16315
+ * Summary: 奇富组件支付结果通知
16316
+ */
16317
+ async notifyBenefithubRiskPayunilateralEx(request, headers, runtime) {
16318
+ tea_util_1.default.validateModel(request);
16319
+ return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.risk.payunilateral.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyBenefithubRiskPayunilateralResponse({}));
16320
+ }
16321
+ /**
16322
+ * Description: 渠道主动查询报告详情接口
16323
+ * Summary: 渠道查询报告详情
16324
+ */
16325
+ async queryBenefithubReportInformation(request) {
16326
+ let runtime = new $Util.RuntimeOptions({});
16327
+ let headers = {};
16328
+ return await this.queryBenefithubReportInformationEx(request, headers, runtime);
16329
+ }
16330
+ /**
16331
+ * Description: 渠道主动查询报告详情接口
16332
+ * Summary: 渠道查询报告详情
16333
+ */
16334
+ async queryBenefithubReportInformationEx(request, headers, runtime) {
16335
+ tea_util_1.default.validateModel(request);
16336
+ return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.report.information.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBenefithubReportInformationResponse({}));
16337
+ }
16154
16338
  /**
16155
16339
  * Description: 信护盾产品批量查询
16156
16340
  * Summary: 信护盾产品批量查询