@antchain/riskplus 1.24.0 → 1.24.2
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 +133 -0
- package/dist/client.js +219 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +300 -1
package/dist/client.d.ts
CHANGED
|
@@ -2211,6 +2211,68 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
2211
2211
|
[key: string]: any;
|
|
2212
2212
|
});
|
|
2213
2213
|
}
|
|
2214
|
+
export declare class ReceiveBenefithubRiskPayRequest extends $tea.Model {
|
|
2215
|
+
authToken?: string;
|
|
2216
|
+
productInstanceId?: string;
|
|
2217
|
+
platformCode: string;
|
|
2218
|
+
productCode: string;
|
|
2219
|
+
userUniqueId: string;
|
|
2220
|
+
resultType: string;
|
|
2221
|
+
callbackResult: string;
|
|
2222
|
+
static names(): {
|
|
2223
|
+
[key: string]: string;
|
|
2224
|
+
};
|
|
2225
|
+
static types(): {
|
|
2226
|
+
[key: string]: any;
|
|
2227
|
+
};
|
|
2228
|
+
constructor(map?: {
|
|
2229
|
+
[key: string]: any;
|
|
2230
|
+
});
|
|
2231
|
+
}
|
|
2232
|
+
export declare class ReceiveBenefithubRiskPayResponse extends $tea.Model {
|
|
2233
|
+
reqMsgId?: string;
|
|
2234
|
+
resultCode?: string;
|
|
2235
|
+
resultMsg?: string;
|
|
2236
|
+
static names(): {
|
|
2237
|
+
[key: string]: string;
|
|
2238
|
+
};
|
|
2239
|
+
static types(): {
|
|
2240
|
+
[key: string]: any;
|
|
2241
|
+
};
|
|
2242
|
+
constructor(map?: {
|
|
2243
|
+
[key: string]: any;
|
|
2244
|
+
});
|
|
2245
|
+
}
|
|
2246
|
+
export declare class NotifyBenefithubRiskLoginRequest extends $tea.Model {
|
|
2247
|
+
authToken?: string;
|
|
2248
|
+
productInstanceId?: string;
|
|
2249
|
+
platformCode: string;
|
|
2250
|
+
userUniqueId: string;
|
|
2251
|
+
mobile: string;
|
|
2252
|
+
static names(): {
|
|
2253
|
+
[key: string]: string;
|
|
2254
|
+
};
|
|
2255
|
+
static types(): {
|
|
2256
|
+
[key: string]: any;
|
|
2257
|
+
};
|
|
2258
|
+
constructor(map?: {
|
|
2259
|
+
[key: string]: any;
|
|
2260
|
+
});
|
|
2261
|
+
}
|
|
2262
|
+
export declare class NotifyBenefithubRiskLoginResponse extends $tea.Model {
|
|
2263
|
+
reqMsgId?: string;
|
|
2264
|
+
resultCode?: string;
|
|
2265
|
+
resultMsg?: string;
|
|
2266
|
+
static names(): {
|
|
2267
|
+
[key: string]: string;
|
|
2268
|
+
};
|
|
2269
|
+
static types(): {
|
|
2270
|
+
[key: string]: any;
|
|
2271
|
+
};
|
|
2272
|
+
constructor(map?: {
|
|
2273
|
+
[key: string]: any;
|
|
2274
|
+
});
|
|
2275
|
+
}
|
|
2214
2276
|
export declare class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
|
|
2215
2277
|
authToken?: string;
|
|
2216
2278
|
productInstanceId?: string;
|
|
@@ -5963,6 +6025,41 @@ export declare class BatchqueryQmpRtMixedmarketingResponse extends $tea.Model {
|
|
|
5963
6025
|
[key: string]: any;
|
|
5964
6026
|
});
|
|
5965
6027
|
}
|
|
6028
|
+
export declare class UploadQmpOfflinehostplanRequest extends $tea.Model {
|
|
6029
|
+
authToken?: string;
|
|
6030
|
+
productInstanceId?: string;
|
|
6031
|
+
fileObject?: Readable;
|
|
6032
|
+
fileObjectName?: string;
|
|
6033
|
+
fileId: string;
|
|
6034
|
+
fileTemplate: string;
|
|
6035
|
+
planCode: string;
|
|
6036
|
+
relationType?: string;
|
|
6037
|
+
properties?: string;
|
|
6038
|
+
needToRefactor?: boolean;
|
|
6039
|
+
static names(): {
|
|
6040
|
+
[key: string]: string;
|
|
6041
|
+
};
|
|
6042
|
+
static types(): {
|
|
6043
|
+
[key: string]: any;
|
|
6044
|
+
};
|
|
6045
|
+
constructor(map?: {
|
|
6046
|
+
[key: string]: any;
|
|
6047
|
+
});
|
|
6048
|
+
}
|
|
6049
|
+
export declare class UploadQmpOfflinehostplanResponse extends $tea.Model {
|
|
6050
|
+
reqMsgId?: string;
|
|
6051
|
+
resultCode?: string;
|
|
6052
|
+
resultMsg?: string;
|
|
6053
|
+
static names(): {
|
|
6054
|
+
[key: string]: string;
|
|
6055
|
+
};
|
|
6056
|
+
static types(): {
|
|
6057
|
+
[key: string]: any;
|
|
6058
|
+
};
|
|
6059
|
+
constructor(map?: {
|
|
6060
|
+
[key: string]: any;
|
|
6061
|
+
});
|
|
6062
|
+
}
|
|
5966
6063
|
export declare class SyncRdaasTaxAuthinfoRequest extends $tea.Model {
|
|
5967
6064
|
authToken?: string;
|
|
5968
6065
|
productInstanceId?: string;
|
|
@@ -9720,6 +9817,30 @@ export default class Client {
|
|
|
9720
9817
|
}, runtime: $Util.RuntimeOptions): Promise<{
|
|
9721
9818
|
[key: string]: any;
|
|
9722
9819
|
}>;
|
|
9820
|
+
/**
|
|
9821
|
+
* Description: 支付成功、退款成功、续费扣款、超时关单、签约、解约,渠道方回调结果使用
|
|
9822
|
+
* Summary: 权益流量业务支付签约相关通知
|
|
9823
|
+
*/
|
|
9824
|
+
receiveBenefithubRiskPay(request: ReceiveBenefithubRiskPayRequest): Promise<ReceiveBenefithubRiskPayResponse>;
|
|
9825
|
+
/**
|
|
9826
|
+
* Description: 支付成功、退款成功、续费扣款、超时关单、签约、解约,渠道方回调结果使用
|
|
9827
|
+
* Summary: 权益流量业务支付签约相关通知
|
|
9828
|
+
*/
|
|
9829
|
+
receiveBenefithubRiskPayEx(request: ReceiveBenefithubRiskPayRequest, headers: {
|
|
9830
|
+
[key: string]: string;
|
|
9831
|
+
}, runtime: $Util.RuntimeOptions): Promise<ReceiveBenefithubRiskPayResponse>;
|
|
9832
|
+
/**
|
|
9833
|
+
* Description: 渠道、平台方,联合登陆推送登陆通知信息
|
|
9834
|
+
* Summary: 渠道/平台方推送的用户登陆信息
|
|
9835
|
+
*/
|
|
9836
|
+
notifyBenefithubRiskLogin(request: NotifyBenefithubRiskLoginRequest): Promise<NotifyBenefithubRiskLoginResponse>;
|
|
9837
|
+
/**
|
|
9838
|
+
* Description: 渠道、平台方,联合登陆推送登陆通知信息
|
|
9839
|
+
* Summary: 渠道/平台方推送的用户登陆信息
|
|
9840
|
+
*/
|
|
9841
|
+
notifyBenefithubRiskLoginEx(request: NotifyBenefithubRiskLoginRequest, headers: {
|
|
9842
|
+
[key: string]: string;
|
|
9843
|
+
}, runtime: $Util.RuntimeOptions): Promise<NotifyBenefithubRiskLoginResponse>;
|
|
9723
9844
|
/**
|
|
9724
9845
|
* Description: 信护盾产品批量查询
|
|
9725
9846
|
* Summary: 信护盾产品批量查询
|
|
@@ -11016,6 +11137,18 @@ export default class Client {
|
|
|
11016
11137
|
batchqueryQmpRtMixedmarketingEx(request: BatchqueryQmpRtMixedmarketingRequest, headers: {
|
|
11017
11138
|
[key: string]: string;
|
|
11018
11139
|
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryQmpRtMixedmarketingResponse>;
|
|
11140
|
+
/**
|
|
11141
|
+
* Description: qmp离线托管文件导入
|
|
11142
|
+
* Summary: qmp离线托管文件导入
|
|
11143
|
+
*/
|
|
11144
|
+
uploadQmpOfflinehostplan(request: UploadQmpOfflinehostplanRequest): Promise<UploadQmpOfflinehostplanResponse>;
|
|
11145
|
+
/**
|
|
11146
|
+
* Description: qmp离线托管文件导入
|
|
11147
|
+
* Summary: qmp离线托管文件导入
|
|
11148
|
+
*/
|
|
11149
|
+
uploadQmpOfflinehostplanEx(request: UploadQmpOfflinehostplanRequest, headers: {
|
|
11150
|
+
[key: string]: string;
|
|
11151
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadQmpOfflinehostplanResponse>;
|
|
11019
11152
|
/**
|
|
11020
11153
|
* Description: 企管盾票税交接授权信息表的同步
|
|
11021
11154
|
* 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.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.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.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.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.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.BatchqueryCreditshieldProductInfoResponse = exports.BatchqueryCreditshieldProductInfoRequest = 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.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.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.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.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.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.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;
|
|
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;
|
|
@@ -3570,6 +3570,98 @@ class XNameValuePair extends $tea.Model {
|
|
|
3570
3570
|
}
|
|
3571
3571
|
}
|
|
3572
3572
|
exports.XNameValuePair = XNameValuePair;
|
|
3573
|
+
class ReceiveBenefithubRiskPayRequest extends $tea.Model {
|
|
3574
|
+
constructor(map) {
|
|
3575
|
+
super(map);
|
|
3576
|
+
}
|
|
3577
|
+
static names() {
|
|
3578
|
+
return {
|
|
3579
|
+
authToken: 'auth_token',
|
|
3580
|
+
productInstanceId: 'product_instance_id',
|
|
3581
|
+
platformCode: 'platform_code',
|
|
3582
|
+
productCode: 'product_code',
|
|
3583
|
+
userUniqueId: 'user_unique_id',
|
|
3584
|
+
resultType: 'result_type',
|
|
3585
|
+
callbackResult: 'callback_result',
|
|
3586
|
+
};
|
|
3587
|
+
}
|
|
3588
|
+
static types() {
|
|
3589
|
+
return {
|
|
3590
|
+
authToken: 'string',
|
|
3591
|
+
productInstanceId: 'string',
|
|
3592
|
+
platformCode: 'string',
|
|
3593
|
+
productCode: 'string',
|
|
3594
|
+
userUniqueId: 'string',
|
|
3595
|
+
resultType: 'string',
|
|
3596
|
+
callbackResult: 'string',
|
|
3597
|
+
};
|
|
3598
|
+
}
|
|
3599
|
+
}
|
|
3600
|
+
exports.ReceiveBenefithubRiskPayRequest = ReceiveBenefithubRiskPayRequest;
|
|
3601
|
+
class ReceiveBenefithubRiskPayResponse extends $tea.Model {
|
|
3602
|
+
constructor(map) {
|
|
3603
|
+
super(map);
|
|
3604
|
+
}
|
|
3605
|
+
static names() {
|
|
3606
|
+
return {
|
|
3607
|
+
reqMsgId: 'req_msg_id',
|
|
3608
|
+
resultCode: 'result_code',
|
|
3609
|
+
resultMsg: 'result_msg',
|
|
3610
|
+
};
|
|
3611
|
+
}
|
|
3612
|
+
static types() {
|
|
3613
|
+
return {
|
|
3614
|
+
reqMsgId: 'string',
|
|
3615
|
+
resultCode: 'string',
|
|
3616
|
+
resultMsg: 'string',
|
|
3617
|
+
};
|
|
3618
|
+
}
|
|
3619
|
+
}
|
|
3620
|
+
exports.ReceiveBenefithubRiskPayResponse = ReceiveBenefithubRiskPayResponse;
|
|
3621
|
+
class NotifyBenefithubRiskLoginRequest extends $tea.Model {
|
|
3622
|
+
constructor(map) {
|
|
3623
|
+
super(map);
|
|
3624
|
+
}
|
|
3625
|
+
static names() {
|
|
3626
|
+
return {
|
|
3627
|
+
authToken: 'auth_token',
|
|
3628
|
+
productInstanceId: 'product_instance_id',
|
|
3629
|
+
platformCode: 'platform_code',
|
|
3630
|
+
userUniqueId: 'user_unique_id',
|
|
3631
|
+
mobile: 'mobile',
|
|
3632
|
+
};
|
|
3633
|
+
}
|
|
3634
|
+
static types() {
|
|
3635
|
+
return {
|
|
3636
|
+
authToken: 'string',
|
|
3637
|
+
productInstanceId: 'string',
|
|
3638
|
+
platformCode: 'string',
|
|
3639
|
+
userUniqueId: 'string',
|
|
3640
|
+
mobile: 'string',
|
|
3641
|
+
};
|
|
3642
|
+
}
|
|
3643
|
+
}
|
|
3644
|
+
exports.NotifyBenefithubRiskLoginRequest = NotifyBenefithubRiskLoginRequest;
|
|
3645
|
+
class NotifyBenefithubRiskLoginResponse extends $tea.Model {
|
|
3646
|
+
constructor(map) {
|
|
3647
|
+
super(map);
|
|
3648
|
+
}
|
|
3649
|
+
static names() {
|
|
3650
|
+
return {
|
|
3651
|
+
reqMsgId: 'req_msg_id',
|
|
3652
|
+
resultCode: 'result_code',
|
|
3653
|
+
resultMsg: 'result_msg',
|
|
3654
|
+
};
|
|
3655
|
+
}
|
|
3656
|
+
static types() {
|
|
3657
|
+
return {
|
|
3658
|
+
reqMsgId: 'string',
|
|
3659
|
+
resultCode: 'string',
|
|
3660
|
+
resultMsg: 'string',
|
|
3661
|
+
};
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
exports.NotifyBenefithubRiskLoginResponse = NotifyBenefithubRiskLoginResponse;
|
|
3573
3665
|
class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
|
|
3574
3666
|
constructor(map) {
|
|
3575
3667
|
super(map);
|
|
@@ -9346,6 +9438,60 @@ class BatchqueryQmpRtMixedmarketingResponse extends $tea.Model {
|
|
|
9346
9438
|
}
|
|
9347
9439
|
}
|
|
9348
9440
|
exports.BatchqueryQmpRtMixedmarketingResponse = BatchqueryQmpRtMixedmarketingResponse;
|
|
9441
|
+
class UploadQmpOfflinehostplanRequest extends $tea.Model {
|
|
9442
|
+
constructor(map) {
|
|
9443
|
+
super(map);
|
|
9444
|
+
}
|
|
9445
|
+
static names() {
|
|
9446
|
+
return {
|
|
9447
|
+
authToken: 'auth_token',
|
|
9448
|
+
productInstanceId: 'product_instance_id',
|
|
9449
|
+
fileObject: 'fileObject',
|
|
9450
|
+
fileObjectName: 'fileObjectName',
|
|
9451
|
+
fileId: 'file_id',
|
|
9452
|
+
fileTemplate: 'file_template',
|
|
9453
|
+
planCode: 'plan_code',
|
|
9454
|
+
relationType: 'relation_type',
|
|
9455
|
+
properties: 'properties',
|
|
9456
|
+
needToRefactor: 'need_to_refactor',
|
|
9457
|
+
};
|
|
9458
|
+
}
|
|
9459
|
+
static types() {
|
|
9460
|
+
return {
|
|
9461
|
+
authToken: 'string',
|
|
9462
|
+
productInstanceId: 'string',
|
|
9463
|
+
fileObject: 'Readable',
|
|
9464
|
+
fileObjectName: 'string',
|
|
9465
|
+
fileId: 'string',
|
|
9466
|
+
fileTemplate: 'string',
|
|
9467
|
+
planCode: 'string',
|
|
9468
|
+
relationType: 'string',
|
|
9469
|
+
properties: 'string',
|
|
9470
|
+
needToRefactor: 'boolean',
|
|
9471
|
+
};
|
|
9472
|
+
}
|
|
9473
|
+
}
|
|
9474
|
+
exports.UploadQmpOfflinehostplanRequest = UploadQmpOfflinehostplanRequest;
|
|
9475
|
+
class UploadQmpOfflinehostplanResponse extends $tea.Model {
|
|
9476
|
+
constructor(map) {
|
|
9477
|
+
super(map);
|
|
9478
|
+
}
|
|
9479
|
+
static names() {
|
|
9480
|
+
return {
|
|
9481
|
+
reqMsgId: 'req_msg_id',
|
|
9482
|
+
resultCode: 'result_code',
|
|
9483
|
+
resultMsg: 'result_msg',
|
|
9484
|
+
};
|
|
9485
|
+
}
|
|
9486
|
+
static types() {
|
|
9487
|
+
return {
|
|
9488
|
+
reqMsgId: 'string',
|
|
9489
|
+
resultCode: 'string',
|
|
9490
|
+
resultMsg: 'string',
|
|
9491
|
+
};
|
|
9492
|
+
}
|
|
9493
|
+
}
|
|
9494
|
+
exports.UploadQmpOfflinehostplanResponse = UploadQmpOfflinehostplanResponse;
|
|
9349
9495
|
class SyncRdaasTaxAuthinfoRequest extends $tea.Model {
|
|
9350
9496
|
constructor(map) {
|
|
9351
9497
|
super(map);
|
|
@@ -15104,7 +15250,7 @@ class Client {
|
|
|
15104
15250
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
15105
15251
|
access_key: this._accessKeyId,
|
|
15106
15252
|
base_sdk_version: "TeaSDK-2.0",
|
|
15107
|
-
sdk_version: "1.24.
|
|
15253
|
+
sdk_version: "1.24.2",
|
|
15108
15254
|
_prod_code: "RISKPLUS",
|
|
15109
15255
|
_prod_channel: "undefined",
|
|
15110
15256
|
};
|
|
@@ -15141,6 +15287,40 @@ class Client {
|
|
|
15141
15287
|
}
|
|
15142
15288
|
throw $tea.newUnretryableError(_lastRequest);
|
|
15143
15289
|
}
|
|
15290
|
+
/**
|
|
15291
|
+
* Description: 支付成功、退款成功、续费扣款、超时关单、签约、解约,渠道方回调结果使用
|
|
15292
|
+
* Summary: 权益流量业务支付签约相关通知
|
|
15293
|
+
*/
|
|
15294
|
+
async receiveBenefithubRiskPay(request) {
|
|
15295
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
15296
|
+
let headers = {};
|
|
15297
|
+
return await this.receiveBenefithubRiskPayEx(request, headers, runtime);
|
|
15298
|
+
}
|
|
15299
|
+
/**
|
|
15300
|
+
* Description: 支付成功、退款成功、续费扣款、超时关单、签约、解约,渠道方回调结果使用
|
|
15301
|
+
* Summary: 权益流量业务支付签约相关通知
|
|
15302
|
+
*/
|
|
15303
|
+
async receiveBenefithubRiskPayEx(request, headers, runtime) {
|
|
15304
|
+
tea_util_1.default.validateModel(request);
|
|
15305
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.risk.pay.receive", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ReceiveBenefithubRiskPayResponse({}));
|
|
15306
|
+
}
|
|
15307
|
+
/**
|
|
15308
|
+
* Description: 渠道、平台方,联合登陆推送登陆通知信息
|
|
15309
|
+
* Summary: 渠道/平台方推送的用户登陆信息
|
|
15310
|
+
*/
|
|
15311
|
+
async notifyBenefithubRiskLogin(request) {
|
|
15312
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
15313
|
+
let headers = {};
|
|
15314
|
+
return await this.notifyBenefithubRiskLoginEx(request, headers, runtime);
|
|
15315
|
+
}
|
|
15316
|
+
/**
|
|
15317
|
+
* Description: 渠道、平台方,联合登陆推送登陆通知信息
|
|
15318
|
+
* Summary: 渠道/平台方推送的用户登陆信息
|
|
15319
|
+
*/
|
|
15320
|
+
async notifyBenefithubRiskLoginEx(request, headers, runtime) {
|
|
15321
|
+
tea_util_1.default.validateModel(request);
|
|
15322
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.benefithub.risk.login.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyBenefithubRiskLoginResponse({}));
|
|
15323
|
+
}
|
|
15144
15324
|
/**
|
|
15145
15325
|
* Description: 信护盾产品批量查询
|
|
15146
15326
|
* Summary: 信护盾产品批量查询
|
|
@@ -17037,6 +17217,43 @@ class Client {
|
|
|
17037
17217
|
tea_util_1.default.validateModel(request);
|
|
17038
17218
|
return $tea.cast(await this.doRequest("1.0", "riskplus.qmp.rt.mixedmarketing.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryQmpRtMixedmarketingResponse({}));
|
|
17039
17219
|
}
|
|
17220
|
+
/**
|
|
17221
|
+
* Description: qmp离线托管文件导入
|
|
17222
|
+
* Summary: qmp离线托管文件导入
|
|
17223
|
+
*/
|
|
17224
|
+
async uploadQmpOfflinehostplan(request) {
|
|
17225
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
17226
|
+
let headers = {};
|
|
17227
|
+
return await this.uploadQmpOfflinehostplanEx(request, headers, runtime);
|
|
17228
|
+
}
|
|
17229
|
+
/**
|
|
17230
|
+
* Description: qmp离线托管文件导入
|
|
17231
|
+
* Summary: qmp离线托管文件导入
|
|
17232
|
+
*/
|
|
17233
|
+
async uploadQmpOfflinehostplanEx(request, headers, runtime) {
|
|
17234
|
+
if (!tea_util_1.default.isUnset(request.fileObject)) {
|
|
17235
|
+
let uploadReq = new CreateAntcloudGatewayxFileUploadRequest({
|
|
17236
|
+
authToken: request.authToken,
|
|
17237
|
+
apiCode: "riskplus.qmp.offlinehostplan.upload",
|
|
17238
|
+
fileName: request.fileObjectName,
|
|
17239
|
+
});
|
|
17240
|
+
let uploadResp = await this.createAntcloudGatewayxFileUploadEx(uploadReq, headers, runtime);
|
|
17241
|
+
if (!alipay_util_1.default.isSuccess(uploadResp.resultCode, "ok")) {
|
|
17242
|
+
let uploadQmpOfflinehostplanResponse = new UploadQmpOfflinehostplanResponse({
|
|
17243
|
+
reqMsgId: uploadResp.reqMsgId,
|
|
17244
|
+
resultCode: uploadResp.resultCode,
|
|
17245
|
+
resultMsg: uploadResp.resultMsg,
|
|
17246
|
+
});
|
|
17247
|
+
return uploadQmpOfflinehostplanResponse;
|
|
17248
|
+
}
|
|
17249
|
+
let uploadHeaders = alipay_util_1.default.parseUploadHeaders(uploadResp.uploadHeaders);
|
|
17250
|
+
await alipay_util_1.default.putObject(request.fileObject, uploadHeaders, uploadResp.uploadUrl);
|
|
17251
|
+
request.fileId = uploadResp.fileId;
|
|
17252
|
+
request.fileObject = null;
|
|
17253
|
+
}
|
|
17254
|
+
tea_util_1.default.validateModel(request);
|
|
17255
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.qmp.offlinehostplan.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadQmpOfflinehostplanResponse({}));
|
|
17256
|
+
}
|
|
17040
17257
|
/**
|
|
17041
17258
|
* Description: 企管盾票税交接授权信息表的同步
|
|
17042
17259
|
* Summary: 企管盾票税交接授权信息表的同步
|