@antchain/ato 1.8.73 → 1.8.81
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 +129 -10
- package/dist/client.js +193 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +296 -11
package/dist/client.d.ts
CHANGED
|
@@ -169,6 +169,25 @@ export declare class MerchantAgentPage extends $tea.Model {
|
|
|
169
169
|
[key: string]: any;
|
|
170
170
|
});
|
|
171
171
|
}
|
|
172
|
+
export declare class OrderMsgInfo extends $tea.Model {
|
|
173
|
+
orderId: string;
|
|
174
|
+
msgId: string;
|
|
175
|
+
msgPublishType: string;
|
|
176
|
+
msgCreateTime: string;
|
|
177
|
+
msgStatus: string;
|
|
178
|
+
msgRetryTime: number;
|
|
179
|
+
msgCallbackUrl: string;
|
|
180
|
+
msgContent: string;
|
|
181
|
+
static names(): {
|
|
182
|
+
[key: string]: string;
|
|
183
|
+
};
|
|
184
|
+
static types(): {
|
|
185
|
+
[key: string]: any;
|
|
186
|
+
};
|
|
187
|
+
constructor(map?: {
|
|
188
|
+
[key: string]: any;
|
|
189
|
+
});
|
|
190
|
+
}
|
|
172
191
|
export declare class OrderInfo extends $tea.Model {
|
|
173
192
|
static names(): {
|
|
174
193
|
[key: string]: string;
|
|
@@ -495,6 +514,7 @@ export declare class UploadFundFlowRequest extends $tea.Model {
|
|
|
495
514
|
fileObject?: Readable;
|
|
496
515
|
fileObjectName?: string;
|
|
497
516
|
fileId: string;
|
|
517
|
+
fundId?: string;
|
|
498
518
|
static names(): {
|
|
499
519
|
[key: string]: string;
|
|
500
520
|
};
|
|
@@ -525,6 +545,7 @@ export declare class GetFundFlowRequest extends $tea.Model {
|
|
|
525
545
|
merchantId: string;
|
|
526
546
|
orderId: string;
|
|
527
547
|
contractType?: string;
|
|
548
|
+
fundId?: string;
|
|
528
549
|
static names(): {
|
|
529
550
|
[key: string]: string;
|
|
530
551
|
};
|
|
@@ -558,6 +579,7 @@ export declare class RefuseFundFlowRequest extends $tea.Model {
|
|
|
558
579
|
orderId: string;
|
|
559
580
|
signNo: string;
|
|
560
581
|
signReason?: string;
|
|
582
|
+
fundId?: string;
|
|
561
583
|
static names(): {
|
|
562
584
|
[key: string]: string;
|
|
563
585
|
};
|
|
@@ -872,6 +894,7 @@ export declare class NotifyFundFlowRequest extends $tea.Model {
|
|
|
872
894
|
orderId: string;
|
|
873
895
|
signNo: string;
|
|
874
896
|
fileItemNo: string;
|
|
897
|
+
fundId?: string;
|
|
875
898
|
static names(): {
|
|
876
899
|
[key: string]: string;
|
|
877
900
|
};
|
|
@@ -907,6 +930,7 @@ export declare class UploadFundCreditRequest extends $tea.Model {
|
|
|
907
930
|
contentType: string;
|
|
908
931
|
fileUrl?: string;
|
|
909
932
|
content?: string;
|
|
933
|
+
merchantId: string;
|
|
910
934
|
static names(): {
|
|
911
935
|
[key: string]: string;
|
|
912
936
|
};
|
|
@@ -938,6 +962,7 @@ export declare class QueryFundCreditRequest extends $tea.Model {
|
|
|
938
962
|
orderNoType: string;
|
|
939
963
|
orderNo: string;
|
|
940
964
|
fundId: string;
|
|
965
|
+
merchantId: string;
|
|
941
966
|
static names(): {
|
|
942
967
|
[key: string]: string;
|
|
943
968
|
};
|
|
@@ -1830,9 +1855,9 @@ export declare class CreateInnerMerchantpayexpandRequest extends $tea.Model {
|
|
|
1830
1855
|
authToken?: string;
|
|
1831
1856
|
productInstanceId?: string;
|
|
1832
1857
|
tenantId: string;
|
|
1833
|
-
companyInfo
|
|
1834
|
-
legalInfo
|
|
1835
|
-
applicationInfo
|
|
1858
|
+
companyInfo: CompanyInfo;
|
|
1859
|
+
legalInfo: LegalInfo;
|
|
1860
|
+
applicationInfo: ApplicationInfo;
|
|
1836
1861
|
submit: string;
|
|
1837
1862
|
expandMode: string;
|
|
1838
1863
|
subTenantId?: string;
|
|
@@ -2180,6 +2205,74 @@ export declare class QueryInnerTemplateversionResponse extends $tea.Model {
|
|
|
2180
2205
|
[key: string]: any;
|
|
2181
2206
|
});
|
|
2182
2207
|
}
|
|
2208
|
+
export declare class PagequeryInnerOrdermsgRequest extends $tea.Model {
|
|
2209
|
+
authToken?: string;
|
|
2210
|
+
productInstanceId?: string;
|
|
2211
|
+
tenantId: string;
|
|
2212
|
+
orderId: string;
|
|
2213
|
+
msgPublishType?: string;
|
|
2214
|
+
msgCreateTimeFrom?: string;
|
|
2215
|
+
msgCreateTimeTo?: string;
|
|
2216
|
+
env: string;
|
|
2217
|
+
pageInfo: PageQuery;
|
|
2218
|
+
static names(): {
|
|
2219
|
+
[key: string]: string;
|
|
2220
|
+
};
|
|
2221
|
+
static types(): {
|
|
2222
|
+
[key: string]: any;
|
|
2223
|
+
};
|
|
2224
|
+
constructor(map?: {
|
|
2225
|
+
[key: string]: any;
|
|
2226
|
+
});
|
|
2227
|
+
}
|
|
2228
|
+
export declare class PagequeryInnerOrdermsgResponse extends $tea.Model {
|
|
2229
|
+
reqMsgId?: string;
|
|
2230
|
+
resultCode?: string;
|
|
2231
|
+
resultMsg?: string;
|
|
2232
|
+
totalSize?: number;
|
|
2233
|
+
orderMsgInfos?: OrderMsgInfo[];
|
|
2234
|
+
static names(): {
|
|
2235
|
+
[key: string]: string;
|
|
2236
|
+
};
|
|
2237
|
+
static types(): {
|
|
2238
|
+
[key: string]: any;
|
|
2239
|
+
};
|
|
2240
|
+
constructor(map?: {
|
|
2241
|
+
[key: string]: any;
|
|
2242
|
+
});
|
|
2243
|
+
}
|
|
2244
|
+
export declare class RetryInnerOrdermsgRequest extends $tea.Model {
|
|
2245
|
+
authToken?: string;
|
|
2246
|
+
productInstanceId?: string;
|
|
2247
|
+
tenantId: string;
|
|
2248
|
+
env: string;
|
|
2249
|
+
orderId: string;
|
|
2250
|
+
msgId: string;
|
|
2251
|
+
usingNewCallbackUrl: boolean;
|
|
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 RetryInnerOrdermsgResponse 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
|
+
}
|
|
2183
2276
|
export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
2184
2277
|
authToken?: string;
|
|
2185
2278
|
productInstanceId?: string;
|
|
@@ -2664,6 +2757,7 @@ export declare class UploadSignCreditRequest extends $tea.Model {
|
|
|
2664
2757
|
contentType: string;
|
|
2665
2758
|
fileUrl?: string;
|
|
2666
2759
|
content?: string;
|
|
2760
|
+
merchantId?: string;
|
|
2667
2761
|
static names(): {
|
|
2668
2762
|
[key: string]: string;
|
|
2669
2763
|
};
|
|
@@ -2694,6 +2788,7 @@ export declare class QuerySignCreditRequest extends $tea.Model {
|
|
|
2694
2788
|
productInstanceId?: string;
|
|
2695
2789
|
orderNoType: string;
|
|
2696
2790
|
orderNo: string;
|
|
2791
|
+
merchantId?: string;
|
|
2697
2792
|
static names(): {
|
|
2698
2793
|
[key: string]: string;
|
|
2699
2794
|
};
|
|
@@ -2812,7 +2907,7 @@ export declare class SyncFrontTradeResponse extends $tea.Model {
|
|
|
2812
2907
|
export declare class SyncTradeFinanceloanapplyRequest extends $tea.Model {
|
|
2813
2908
|
authToken?: string;
|
|
2814
2909
|
productInstanceId?: string;
|
|
2815
|
-
orderId
|
|
2910
|
+
orderId?: string;
|
|
2816
2911
|
merchantId: string;
|
|
2817
2912
|
merchantName: string;
|
|
2818
2913
|
fundId?: string;
|
|
@@ -4186,6 +4281,30 @@ export default class Client {
|
|
|
4186
4281
|
queryInnerTemplateversionEx(request: QueryInnerTemplateversionRequest, headers: {
|
|
4187
4282
|
[key: string]: string;
|
|
4188
4283
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTemplateversionResponse>;
|
|
4284
|
+
/**
|
|
4285
|
+
* Description: 订单消息查询
|
|
4286
|
+
* Summary: 订单消息查询
|
|
4287
|
+
*/
|
|
4288
|
+
pagequeryInnerOrdermsg(request: PagequeryInnerOrdermsgRequest): Promise<PagequeryInnerOrdermsgResponse>;
|
|
4289
|
+
/**
|
|
4290
|
+
* Description: 订单消息查询
|
|
4291
|
+
* Summary: 订单消息查询
|
|
4292
|
+
*/
|
|
4293
|
+
pagequeryInnerOrdermsgEx(request: PagequeryInnerOrdermsgRequest, headers: {
|
|
4294
|
+
[key: string]: string;
|
|
4295
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerOrdermsgResponse>;
|
|
4296
|
+
/**
|
|
4297
|
+
* Description: 订单消息重试
|
|
4298
|
+
* Summary: 订单消息重试
|
|
4299
|
+
*/
|
|
4300
|
+
retryInnerOrdermsg(request: RetryInnerOrdermsgRequest): Promise<RetryInnerOrdermsgResponse>;
|
|
4301
|
+
/**
|
|
4302
|
+
* Description: 订单消息重试
|
|
4303
|
+
* Summary: 订单消息重试
|
|
4304
|
+
*/
|
|
4305
|
+
retryInnerOrdermsgEx(request: RetryInnerOrdermsgRequest, headers: {
|
|
4306
|
+
[key: string]: string;
|
|
4307
|
+
}, runtime: $Util.RuntimeOptions): Promise<RetryInnerOrdermsgResponse>;
|
|
4189
4308
|
/**
|
|
4190
4309
|
* Description: 商户入驻
|
|
4191
4310
|
* Summary: 商户入驻
|
|
@@ -4535,16 +4654,16 @@ export default class Client {
|
|
|
4535
4654
|
[key: string]: string;
|
|
4536
4655
|
}, runtime: $Util.RuntimeOptions): Promise<CancelWithholdPlanResponse>;
|
|
4537
4656
|
/**
|
|
4538
|
-
* Description:
|
|
4539
|
-
|
|
4540
|
-
|
|
4657
|
+
* Description: 重要说明:
|
|
4658
|
+
1. 这个接口是取消订单某一期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
4659
|
+
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
4541
4660
|
* Summary: 单期代扣取消
|
|
4542
4661
|
*/
|
|
4543
4662
|
repayWithholdPlan(request: RepayWithholdPlanRequest): Promise<RepayWithholdPlanResponse>;
|
|
4544
4663
|
/**
|
|
4545
|
-
* Description:
|
|
4546
|
-
|
|
4547
|
-
|
|
4664
|
+
* Description: 重要说明:
|
|
4665
|
+
1. 这个接口是取消订单某一期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
4666
|
+
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
4548
4667
|
* Summary: 单期代扣取消
|
|
4549
4668
|
*/
|
|
4550
4669
|
repayWithholdPlanEx(request: RepayWithholdPlanRequest, headers: {
|
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.QueryWithholdRefundResponse = exports.QueryWithholdRefundRequest = exports.CreateWithholdRefundResponse = exports.CreateWithholdRefundRequest = exports.CancelWithholdActivepayResponse = exports.CancelWithholdActivepayRequest = exports.QueryWithholdActivepayResponse = exports.QueryWithholdActivepayRequest = exports.CreateWithholdActivepayResponse = exports.CreateWithholdActivepayRequest = exports.ConfirmWithholdSignasyncunsignResponse = exports.ConfirmWithholdSignasyncunsignRequest = exports.RetryWithholdPlanResponse = exports.RetryWithholdPlanRequest = exports.RepayWithholdPlanResponse = exports.RepayWithholdPlanRequest = exports.CancelWithholdPlanResponse = exports.CancelWithholdPlanRequest = exports.UnbindWithholdSignResponse = exports.UnbindWithholdSignRequest = exports.QueryWithholdSignResponse = exports.QueryWithholdSignRequest = exports.CreateWithholdSignResponse = exports.CreateWithholdSignRequest = exports.SyncTradeIndirectorderResponse = exports.SyncTradeIndirectorderRequest = exports.SyncFrontIndirectorderResponse = exports.SyncFrontIndirectorderRequest = exports.UpdateTradeUserpromiseResponse = exports.UpdateTradeUserpromiseRequest = exports.GetTradeMerchantperformanceResponse = exports.GetTradeMerchantperformanceRequest = exports.GetTradeUserperformanceResponse = exports.GetTradeUserperformanceRequest = exports.GetTradeMerchantfulfillmentResponse = exports.GetTradeMerchantfulfillmentRequest = exports.SyncTradeFinanceloanapplyResponse = exports.SyncTradeFinanceloanapplyRequest = exports.SyncFrontTradeResponse = exports.SyncFrontTradeRequest = exports.GetTradeResponse = exports.GetTradeRequest = exports.SyncTradeResponse = exports.SyncTradeRequest = exports.QuerySignCreditResponse = exports.QuerySignCreditRequest = exports.UploadSignCreditResponse = exports.UploadSignCreditRequest = exports.UploadSignTemplateResponse = exports.UploadSignTemplateRequest = exports.UploadSignFlowResponse = exports.UploadSignFlowRequest = exports.SubmitFrontSignResponse = exports.SubmitFrontSignRequest = exports.AuthSignFlowResponse = exports.AuthSignFlowRequest = exports.GetSignFlowResponse = exports.GetSignFlowRequest = exports.SubmitSignFlowResponse = exports.SubmitSignFlowRequest = exports.AllSignTemplateResponse = exports.AllSignTemplateRequest = exports.QueryRiskResponse = exports.QueryRiskRequest = exports.QueryRealpersonFacevrfResponse = exports.QueryRealpersonFacevrfRequest = exports.CreateRealpersonFacevrfResponse = exports.CreateRealpersonFacevrfRequest = exports.QueryMerchantexpandMerchantResponse = exports.QueryMerchantexpandMerchantRequest = exports.UploadMerchantexpandFileResponse = exports.UploadMerchantexpandFileRequest = exports.RegisterMerchantexpandMerchantResponse = exports.RegisterMerchantexpandMerchantRequest = exports.QueryInnerTemplateversionResponse = exports.QueryInnerTemplateversionRequest = exports.QueryInnerTemplateelementlinkResponse = exports.QueryInnerTemplateelementlinkRequest = exports.QueryInnerTemplateResponse = exports.QueryInnerTemplateRequest = exports.UpdateInnerTemplateResponse = exports.UpdateInnerTemplateRequest = exports.SyncInnerTemplateResponse = exports.SyncInnerTemplateRequest = exports.QueryInnerSignfieldsResponse = exports.QueryInnerSignfieldsRequest = exports.CloneInnerTemplatefileaddressResponse = exports.CloneInnerTemplatefileaddressRequest = exports.PagequeryInnerMerchantagentResponse = exports.PagequeryInnerMerchantagentRequest = exports.QueryInnerMerchantpayexpandResponse = exports.QueryInnerMerchantpayexpandRequest = exports.SubmitInnerMerchantpayexpandResponse = exports.SubmitInnerMerchantpayexpandRequest = exports.CreateInnerMerchantpayexpandResponse = exports.CreateInnerMerchantpayexpandRequest = exports.PagequeryInnerMerchantagreementResponse = exports.PagequeryInnerMerchantagreementRequest = exports.QueryInnerMerchantagreementResponse = exports.QueryInnerMerchantagreementRequest = exports.CreateInnerMerchantagreementResponse = exports.CreateInnerMerchantagreementRequest = exports.PagequeryInnerFunddividerelationResponse = exports.PagequeryInnerFunddividerelationRequest = exports.QueryInnerFunddividerelationResponse = exports.QueryInnerFunddividerelationRequest = exports.SubmitInnerFunddividerelationResponse = exports.SubmitInnerFunddividerelationRequest = exports.CreateInnerFunddividerelationResponse = exports.CreateInnerFunddividerelationRequest = exports.QueryInnerTemplateimageResponse = exports.QueryInnerTemplateimageRequest = exports.CreateInnerTemplatetextareaResponse = exports.CreateInnerTemplatetextareaRequest = exports.RefreshInnerTemplatetokenResponse = exports.RefreshInnerTemplatetokenRequest = exports.GetInnerTemplateofficeurlResponse = exports.GetInnerTemplateofficeurlRequest = exports.DownloadInnerFileResponse = exports.DownloadInnerFileRequest = exports.UploadInnerFileResponse = exports.UploadInnerFileRequest = exports.CloneInnerTemplateResponse = exports.CloneInnerTemplateRequest = exports.DeleteInnerTemplateResponse = exports.DeleteInnerTemplateRequest = exports.PreviewInnerTemplateResponse = exports.PreviewInnerTemplateRequest = exports.PublishInnerTemplateResponse = exports.PublishInnerTemplateRequest = exports.SaveInnerSignfieldsResponse = exports.SaveInnerSignfieldsRequest = exports.SaveInnerTemplateResponse = exports.SaveInnerTemplateRequest = exports.CreateInnerTemplateResponse = exports.CreateInnerTemplateRequest = exports.DetailInnerTemplateResponse = exports.DetailInnerTemplateRequest = exports.ListInnerTemplateResponse = exports.ListInnerTemplateRequest = exports.AllInnerTemplateResponse = exports.AllInnerTemplateRequest = exports.SyncInnerMeterforagsignResponse = exports.SyncInnerMeterforagsignRequest = exports.SyncInnerMeterforwholeorderResponse = exports.SyncInnerMeterforwholeorderRequest = exports.GetInnerTenantResponse = exports.GetInnerTenantRequest = exports.GetInnerProductResponse = exports.GetInnerProductRequest = exports.QueryFundCreditResponse = exports.QueryFundCreditRequest = exports.UploadFundCreditResponse = exports.UploadFundCreditRequest = exports.NotifyFundFlowResponse = exports.NotifyFundFlowRequest = exports.GetFundOrderfullinfoResponse = exports.GetFundOrderfullinfoRequest = exports.GetFundMerchantperformanceResponse = exports.GetFundMerchantperformanceRequest = exports.GetFundUserperformanceResponse = exports.GetFundUserperformanceRequest = exports.GetFundUserpromiseResponse = exports.GetFundUserpromiseRequest = exports.SyncFundFinanceloanresultsResponse = exports.SyncFundFinanceloanresultsRequest = exports.SyncFundMerchantpromiseResponse = exports.SyncFundMerchantpromiseRequest = exports.CallbackFundNotifyResponse = exports.CallbackFundNotifyRequest = exports.CancelFundPlanResponse = exports.CancelFundPlanRequest = exports.AuthFundFlowResponse = exports.AuthFundFlowRequest = exports.RefuseFundFlowResponse = exports.RefuseFundFlowRequest = exports.GetFundFlowResponse = exports.GetFundFlowRequest = exports.UploadFundFlowResponse = exports.UploadFundFlowRequest = exports.GetFundOrderfulfillmentResponse = exports.GetFundOrderfulfillmentRequest = exports.SyncFundOrderfulfillmentResponse = exports.SyncFundOrderfulfillmentRequest = exports.SyncFundWithholdingcontractResponse = exports.SyncFundWithholdingcontractRequest = exports.SyncFundOrderfinancialResponse = exports.SyncFundOrderfinancialRequest = exports.SyncFundSplittingResponse = exports.SyncFundSplittingRequest = exports.XNameValuePair = exports.OrderGoodsModel = exports.RiskModel = exports.AuditInfo = exports.LegalInfo = exports.PageQuery = exports.GoodsInfo = exports.ApplicationInfo = exports.ActivePayOrder = exports.OrderInfo = exports.MerchantAgentPage = exports.RelationPage = exports.RiskStrategy = exports.RiskScene = exports.AgreementPage = exports.CompanyInfo = exports.UserSyncInfo = exports.PromiseInfo = exports.FileInfo = exports.Config = void 0;
|
|
25
|
+
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.QueryWithholdRefundResponse = exports.QueryWithholdRefundRequest = exports.CreateWithholdRefundResponse = exports.CreateWithholdRefundRequest = exports.CancelWithholdActivepayResponse = exports.CancelWithholdActivepayRequest = exports.QueryWithholdActivepayResponse = exports.QueryWithholdActivepayRequest = exports.CreateWithholdActivepayResponse = exports.CreateWithholdActivepayRequest = exports.ConfirmWithholdSignasyncunsignResponse = exports.ConfirmWithholdSignasyncunsignRequest = exports.RetryWithholdPlanResponse = exports.RetryWithholdPlanRequest = exports.RepayWithholdPlanResponse = exports.RepayWithholdPlanRequest = exports.CancelWithholdPlanResponse = exports.CancelWithholdPlanRequest = exports.UnbindWithholdSignResponse = exports.UnbindWithholdSignRequest = exports.QueryWithholdSignResponse = exports.QueryWithholdSignRequest = exports.CreateWithholdSignResponse = exports.CreateWithholdSignRequest = exports.SyncTradeIndirectorderResponse = exports.SyncTradeIndirectorderRequest = exports.SyncFrontIndirectorderResponse = exports.SyncFrontIndirectorderRequest = exports.UpdateTradeUserpromiseResponse = exports.UpdateTradeUserpromiseRequest = exports.GetTradeMerchantperformanceResponse = exports.GetTradeMerchantperformanceRequest = exports.GetTradeUserperformanceResponse = exports.GetTradeUserperformanceRequest = exports.GetTradeMerchantfulfillmentResponse = exports.GetTradeMerchantfulfillmentRequest = exports.SyncTradeFinanceloanapplyResponse = exports.SyncTradeFinanceloanapplyRequest = exports.SyncFrontTradeResponse = exports.SyncFrontTradeRequest = exports.GetTradeResponse = exports.GetTradeRequest = exports.SyncTradeResponse = exports.SyncTradeRequest = exports.QuerySignCreditResponse = exports.QuerySignCreditRequest = exports.UploadSignCreditResponse = exports.UploadSignCreditRequest = exports.UploadSignTemplateResponse = exports.UploadSignTemplateRequest = exports.UploadSignFlowResponse = exports.UploadSignFlowRequest = exports.SubmitFrontSignResponse = exports.SubmitFrontSignRequest = exports.AuthSignFlowResponse = exports.AuthSignFlowRequest = exports.GetSignFlowResponse = exports.GetSignFlowRequest = exports.SubmitSignFlowResponse = exports.SubmitSignFlowRequest = exports.AllSignTemplateResponse = exports.AllSignTemplateRequest = exports.QueryRiskResponse = exports.QueryRiskRequest = exports.QueryRealpersonFacevrfResponse = exports.QueryRealpersonFacevrfRequest = exports.CreateRealpersonFacevrfResponse = exports.CreateRealpersonFacevrfRequest = exports.QueryMerchantexpandMerchantResponse = exports.QueryMerchantexpandMerchantRequest = exports.UploadMerchantexpandFileResponse = exports.UploadMerchantexpandFileRequest = exports.RegisterMerchantexpandMerchantResponse = exports.RegisterMerchantexpandMerchantRequest = exports.RetryInnerOrdermsgResponse = exports.RetryInnerOrdermsgRequest = exports.PagequeryInnerOrdermsgResponse = exports.PagequeryInnerOrdermsgRequest = exports.QueryInnerTemplateversionResponse = exports.QueryInnerTemplateversionRequest = exports.QueryInnerTemplateelementlinkResponse = exports.QueryInnerTemplateelementlinkRequest = exports.QueryInnerTemplateResponse = exports.QueryInnerTemplateRequest = exports.UpdateInnerTemplateResponse = exports.UpdateInnerTemplateRequest = exports.SyncInnerTemplateResponse = exports.SyncInnerTemplateRequest = exports.QueryInnerSignfieldsResponse = exports.QueryInnerSignfieldsRequest = exports.CloneInnerTemplatefileaddressResponse = exports.CloneInnerTemplatefileaddressRequest = exports.PagequeryInnerMerchantagentResponse = exports.PagequeryInnerMerchantagentRequest = exports.QueryInnerMerchantpayexpandResponse = exports.QueryInnerMerchantpayexpandRequest = exports.SubmitInnerMerchantpayexpandResponse = exports.SubmitInnerMerchantpayexpandRequest = exports.CreateInnerMerchantpayexpandResponse = exports.CreateInnerMerchantpayexpandRequest = exports.PagequeryInnerMerchantagreementResponse = exports.PagequeryInnerMerchantagreementRequest = exports.QueryInnerMerchantagreementResponse = exports.QueryInnerMerchantagreementRequest = exports.CreateInnerMerchantagreementResponse = exports.CreateInnerMerchantagreementRequest = exports.PagequeryInnerFunddividerelationResponse = exports.PagequeryInnerFunddividerelationRequest = exports.QueryInnerFunddividerelationResponse = exports.QueryInnerFunddividerelationRequest = exports.SubmitInnerFunddividerelationResponse = exports.SubmitInnerFunddividerelationRequest = exports.CreateInnerFunddividerelationResponse = exports.CreateInnerFunddividerelationRequest = exports.QueryInnerTemplateimageResponse = exports.QueryInnerTemplateimageRequest = exports.CreateInnerTemplatetextareaResponse = exports.CreateInnerTemplatetextareaRequest = exports.RefreshInnerTemplatetokenResponse = exports.RefreshInnerTemplatetokenRequest = exports.GetInnerTemplateofficeurlResponse = exports.GetInnerTemplateofficeurlRequest = exports.DownloadInnerFileResponse = exports.DownloadInnerFileRequest = exports.UploadInnerFileResponse = exports.UploadInnerFileRequest = exports.CloneInnerTemplateResponse = exports.CloneInnerTemplateRequest = exports.DeleteInnerTemplateResponse = exports.DeleteInnerTemplateRequest = exports.PreviewInnerTemplateResponse = exports.PreviewInnerTemplateRequest = exports.PublishInnerTemplateResponse = exports.PublishInnerTemplateRequest = exports.SaveInnerSignfieldsResponse = exports.SaveInnerSignfieldsRequest = exports.SaveInnerTemplateResponse = exports.SaveInnerTemplateRequest = exports.CreateInnerTemplateResponse = exports.CreateInnerTemplateRequest = exports.DetailInnerTemplateResponse = exports.DetailInnerTemplateRequest = exports.ListInnerTemplateResponse = exports.ListInnerTemplateRequest = exports.AllInnerTemplateResponse = exports.AllInnerTemplateRequest = exports.SyncInnerMeterforagsignResponse = exports.SyncInnerMeterforagsignRequest = exports.SyncInnerMeterforwholeorderResponse = exports.SyncInnerMeterforwholeorderRequest = exports.GetInnerTenantResponse = exports.GetInnerTenantRequest = exports.GetInnerProductResponse = exports.GetInnerProductRequest = exports.QueryFundCreditResponse = exports.QueryFundCreditRequest = exports.UploadFundCreditResponse = exports.UploadFundCreditRequest = exports.NotifyFundFlowResponse = exports.NotifyFundFlowRequest = exports.GetFundOrderfullinfoResponse = exports.GetFundOrderfullinfoRequest = exports.GetFundMerchantperformanceResponse = exports.GetFundMerchantperformanceRequest = exports.GetFundUserperformanceResponse = exports.GetFundUserperformanceRequest = exports.GetFundUserpromiseResponse = exports.GetFundUserpromiseRequest = exports.SyncFundFinanceloanresultsResponse = exports.SyncFundFinanceloanresultsRequest = exports.SyncFundMerchantpromiseResponse = exports.SyncFundMerchantpromiseRequest = exports.CallbackFundNotifyResponse = exports.CallbackFundNotifyRequest = exports.CancelFundPlanResponse = exports.CancelFundPlanRequest = exports.AuthFundFlowResponse = exports.AuthFundFlowRequest = exports.RefuseFundFlowResponse = exports.RefuseFundFlowRequest = exports.GetFundFlowResponse = exports.GetFundFlowRequest = exports.UploadFundFlowResponse = exports.UploadFundFlowRequest = exports.GetFundOrderfulfillmentResponse = exports.GetFundOrderfulfillmentRequest = exports.SyncFundOrderfulfillmentResponse = exports.SyncFundOrderfulfillmentRequest = exports.SyncFundWithholdingcontractResponse = exports.SyncFundWithholdingcontractRequest = exports.SyncFundOrderfinancialResponse = exports.SyncFundOrderfinancialRequest = exports.SyncFundSplittingResponse = exports.SyncFundSplittingRequest = exports.XNameValuePair = exports.OrderGoodsModel = exports.RiskModel = exports.AuditInfo = exports.LegalInfo = exports.PageQuery = exports.GoodsInfo = exports.ApplicationInfo = exports.ActivePayOrder = exports.OrderInfo = exports.OrderMsgInfo = exports.MerchantAgentPage = exports.RelationPage = exports.RiskStrategy = exports.RiskScene = exports.AgreementPage = exports.CompanyInfo = exports.UserSyncInfo = exports.PromiseInfo = exports.FileInfo = 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;
|
|
@@ -284,6 +284,37 @@ class MerchantAgentPage extends $tea.Model {
|
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
286
|
exports.MerchantAgentPage = MerchantAgentPage;
|
|
287
|
+
// 订单消息结构体
|
|
288
|
+
class OrderMsgInfo extends $tea.Model {
|
|
289
|
+
constructor(map) {
|
|
290
|
+
super(map);
|
|
291
|
+
}
|
|
292
|
+
static names() {
|
|
293
|
+
return {
|
|
294
|
+
orderId: 'order_id',
|
|
295
|
+
msgId: 'msg_id',
|
|
296
|
+
msgPublishType: 'msg_publish_type',
|
|
297
|
+
msgCreateTime: 'msg_create_time',
|
|
298
|
+
msgStatus: 'msg_status',
|
|
299
|
+
msgRetryTime: 'msg_retry_time',
|
|
300
|
+
msgCallbackUrl: 'msg_callback_url',
|
|
301
|
+
msgContent: 'msg_content',
|
|
302
|
+
};
|
|
303
|
+
}
|
|
304
|
+
static types() {
|
|
305
|
+
return {
|
|
306
|
+
orderId: 'string',
|
|
307
|
+
msgId: 'string',
|
|
308
|
+
msgPublishType: 'string',
|
|
309
|
+
msgCreateTime: 'string',
|
|
310
|
+
msgStatus: 'string',
|
|
311
|
+
msgRetryTime: 'number',
|
|
312
|
+
msgCallbackUrl: 'string',
|
|
313
|
+
msgContent: 'string',
|
|
314
|
+
};
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
exports.OrderMsgInfo = OrderMsgInfo;
|
|
287
318
|
// 主订单信息
|
|
288
319
|
class OrderInfo extends $tea.Model {
|
|
289
320
|
static names() {
|
|
@@ -775,6 +806,7 @@ class UploadFundFlowRequest extends $tea.Model {
|
|
|
775
806
|
fileObject: 'fileObject',
|
|
776
807
|
fileObjectName: 'fileObjectName',
|
|
777
808
|
fileId: 'file_id',
|
|
809
|
+
fundId: 'fund_id',
|
|
778
810
|
};
|
|
779
811
|
}
|
|
780
812
|
static types() {
|
|
@@ -788,6 +820,7 @@ class UploadFundFlowRequest extends $tea.Model {
|
|
|
788
820
|
fileObject: 'Readable',
|
|
789
821
|
fileObjectName: 'string',
|
|
790
822
|
fileId: 'string',
|
|
823
|
+
fundId: 'string',
|
|
791
824
|
};
|
|
792
825
|
}
|
|
793
826
|
}
|
|
@@ -823,6 +856,7 @@ class GetFundFlowRequest extends $tea.Model {
|
|
|
823
856
|
merchantId: 'merchant_id',
|
|
824
857
|
orderId: 'order_id',
|
|
825
858
|
contractType: 'contract_type',
|
|
859
|
+
fundId: 'fund_id',
|
|
826
860
|
};
|
|
827
861
|
}
|
|
828
862
|
static types() {
|
|
@@ -832,6 +866,7 @@ class GetFundFlowRequest extends $tea.Model {
|
|
|
832
866
|
merchantId: 'string',
|
|
833
867
|
orderId: 'string',
|
|
834
868
|
contractType: 'string',
|
|
869
|
+
fundId: 'string',
|
|
835
870
|
};
|
|
836
871
|
}
|
|
837
872
|
}
|
|
@@ -872,6 +907,7 @@ class RefuseFundFlowRequest extends $tea.Model {
|
|
|
872
907
|
orderId: 'order_id',
|
|
873
908
|
signNo: 'sign_no',
|
|
874
909
|
signReason: 'sign_reason',
|
|
910
|
+
fundId: 'fund_id',
|
|
875
911
|
};
|
|
876
912
|
}
|
|
877
913
|
static types() {
|
|
@@ -882,6 +918,7 @@ class RefuseFundFlowRequest extends $tea.Model {
|
|
|
882
918
|
orderId: 'string',
|
|
883
919
|
signNo: 'string',
|
|
884
920
|
signReason: 'string',
|
|
921
|
+
fundId: 'string',
|
|
885
922
|
};
|
|
886
923
|
}
|
|
887
924
|
}
|
|
@@ -1340,6 +1377,7 @@ class NotifyFundFlowRequest extends $tea.Model {
|
|
|
1340
1377
|
orderId: 'order_id',
|
|
1341
1378
|
signNo: 'sign_no',
|
|
1342
1379
|
fileItemNo: 'file_item_no',
|
|
1380
|
+
fundId: 'fund_id',
|
|
1343
1381
|
};
|
|
1344
1382
|
}
|
|
1345
1383
|
static types() {
|
|
@@ -1350,6 +1388,7 @@ class NotifyFundFlowRequest extends $tea.Model {
|
|
|
1350
1388
|
orderId: 'string',
|
|
1351
1389
|
signNo: 'string',
|
|
1352
1390
|
fileItemNo: 'string',
|
|
1391
|
+
fundId: 'string',
|
|
1353
1392
|
};
|
|
1354
1393
|
}
|
|
1355
1394
|
}
|
|
@@ -1390,6 +1429,7 @@ class UploadFundCreditRequest extends $tea.Model {
|
|
|
1390
1429
|
contentType: 'content_type',
|
|
1391
1430
|
fileUrl: 'file_url',
|
|
1392
1431
|
content: 'content',
|
|
1432
|
+
merchantId: 'merchant_id',
|
|
1393
1433
|
};
|
|
1394
1434
|
}
|
|
1395
1435
|
static types() {
|
|
@@ -1404,6 +1444,7 @@ class UploadFundCreditRequest extends $tea.Model {
|
|
|
1404
1444
|
contentType: 'string',
|
|
1405
1445
|
fileUrl: 'string',
|
|
1406
1446
|
content: 'string',
|
|
1447
|
+
merchantId: 'string',
|
|
1407
1448
|
};
|
|
1408
1449
|
}
|
|
1409
1450
|
}
|
|
@@ -1441,6 +1482,7 @@ class QueryFundCreditRequest extends $tea.Model {
|
|
|
1441
1482
|
orderNoType: 'order_no_type',
|
|
1442
1483
|
orderNo: 'order_no',
|
|
1443
1484
|
fundId: 'fund_id',
|
|
1485
|
+
merchantId: 'merchant_id',
|
|
1444
1486
|
};
|
|
1445
1487
|
}
|
|
1446
1488
|
static types() {
|
|
@@ -1450,6 +1492,7 @@ class QueryFundCreditRequest extends $tea.Model {
|
|
|
1450
1492
|
orderNoType: 'string',
|
|
1451
1493
|
orderNo: 'string',
|
|
1452
1494
|
fundId: 'string',
|
|
1495
|
+
merchantId: 'string',
|
|
1453
1496
|
};
|
|
1454
1497
|
}
|
|
1455
1498
|
}
|
|
@@ -3302,6 +3345,110 @@ class QueryInnerTemplateversionResponse extends $tea.Model {
|
|
|
3302
3345
|
}
|
|
3303
3346
|
}
|
|
3304
3347
|
exports.QueryInnerTemplateversionResponse = QueryInnerTemplateversionResponse;
|
|
3348
|
+
class PagequeryInnerOrdermsgRequest extends $tea.Model {
|
|
3349
|
+
constructor(map) {
|
|
3350
|
+
super(map);
|
|
3351
|
+
}
|
|
3352
|
+
static names() {
|
|
3353
|
+
return {
|
|
3354
|
+
authToken: 'auth_token',
|
|
3355
|
+
productInstanceId: 'product_instance_id',
|
|
3356
|
+
tenantId: 'tenant_id',
|
|
3357
|
+
orderId: 'order_id',
|
|
3358
|
+
msgPublishType: 'msg_publish_type',
|
|
3359
|
+
msgCreateTimeFrom: 'msg_create_time_from',
|
|
3360
|
+
msgCreateTimeTo: 'msg_create_time_to',
|
|
3361
|
+
env: 'env',
|
|
3362
|
+
pageInfo: 'page_info',
|
|
3363
|
+
};
|
|
3364
|
+
}
|
|
3365
|
+
static types() {
|
|
3366
|
+
return {
|
|
3367
|
+
authToken: 'string',
|
|
3368
|
+
productInstanceId: 'string',
|
|
3369
|
+
tenantId: 'string',
|
|
3370
|
+
orderId: 'string',
|
|
3371
|
+
msgPublishType: 'string',
|
|
3372
|
+
msgCreateTimeFrom: 'string',
|
|
3373
|
+
msgCreateTimeTo: 'string',
|
|
3374
|
+
env: 'string',
|
|
3375
|
+
pageInfo: PageQuery,
|
|
3376
|
+
};
|
|
3377
|
+
}
|
|
3378
|
+
}
|
|
3379
|
+
exports.PagequeryInnerOrdermsgRequest = PagequeryInnerOrdermsgRequest;
|
|
3380
|
+
class PagequeryInnerOrdermsgResponse extends $tea.Model {
|
|
3381
|
+
constructor(map) {
|
|
3382
|
+
super(map);
|
|
3383
|
+
}
|
|
3384
|
+
static names() {
|
|
3385
|
+
return {
|
|
3386
|
+
reqMsgId: 'req_msg_id',
|
|
3387
|
+
resultCode: 'result_code',
|
|
3388
|
+
resultMsg: 'result_msg',
|
|
3389
|
+
totalSize: 'total_size',
|
|
3390
|
+
orderMsgInfos: 'order_msg_infos',
|
|
3391
|
+
};
|
|
3392
|
+
}
|
|
3393
|
+
static types() {
|
|
3394
|
+
return {
|
|
3395
|
+
reqMsgId: 'string',
|
|
3396
|
+
resultCode: 'string',
|
|
3397
|
+
resultMsg: 'string',
|
|
3398
|
+
totalSize: 'number',
|
|
3399
|
+
orderMsgInfos: { 'type': 'array', 'itemType': OrderMsgInfo },
|
|
3400
|
+
};
|
|
3401
|
+
}
|
|
3402
|
+
}
|
|
3403
|
+
exports.PagequeryInnerOrdermsgResponse = PagequeryInnerOrdermsgResponse;
|
|
3404
|
+
class RetryInnerOrdermsgRequest extends $tea.Model {
|
|
3405
|
+
constructor(map) {
|
|
3406
|
+
super(map);
|
|
3407
|
+
}
|
|
3408
|
+
static names() {
|
|
3409
|
+
return {
|
|
3410
|
+
authToken: 'auth_token',
|
|
3411
|
+
productInstanceId: 'product_instance_id',
|
|
3412
|
+
tenantId: 'tenant_id',
|
|
3413
|
+
env: 'env',
|
|
3414
|
+
orderId: 'order_id',
|
|
3415
|
+
msgId: 'msg_id',
|
|
3416
|
+
usingNewCallbackUrl: 'using_new_callback_url',
|
|
3417
|
+
};
|
|
3418
|
+
}
|
|
3419
|
+
static types() {
|
|
3420
|
+
return {
|
|
3421
|
+
authToken: 'string',
|
|
3422
|
+
productInstanceId: 'string',
|
|
3423
|
+
tenantId: 'string',
|
|
3424
|
+
env: 'string',
|
|
3425
|
+
orderId: 'string',
|
|
3426
|
+
msgId: 'string',
|
|
3427
|
+
usingNewCallbackUrl: 'boolean',
|
|
3428
|
+
};
|
|
3429
|
+
}
|
|
3430
|
+
}
|
|
3431
|
+
exports.RetryInnerOrdermsgRequest = RetryInnerOrdermsgRequest;
|
|
3432
|
+
class RetryInnerOrdermsgResponse extends $tea.Model {
|
|
3433
|
+
constructor(map) {
|
|
3434
|
+
super(map);
|
|
3435
|
+
}
|
|
3436
|
+
static names() {
|
|
3437
|
+
return {
|
|
3438
|
+
reqMsgId: 'req_msg_id',
|
|
3439
|
+
resultCode: 'result_code',
|
|
3440
|
+
resultMsg: 'result_msg',
|
|
3441
|
+
};
|
|
3442
|
+
}
|
|
3443
|
+
static types() {
|
|
3444
|
+
return {
|
|
3445
|
+
reqMsgId: 'string',
|
|
3446
|
+
resultCode: 'string',
|
|
3447
|
+
resultMsg: 'string',
|
|
3448
|
+
};
|
|
3449
|
+
}
|
|
3450
|
+
}
|
|
3451
|
+
exports.RetryInnerOrdermsgResponse = RetryInnerOrdermsgResponse;
|
|
3305
3452
|
class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
3306
3453
|
constructor(map) {
|
|
3307
3454
|
super(map);
|
|
@@ -4057,6 +4204,7 @@ class UploadSignCreditRequest extends $tea.Model {
|
|
|
4057
4204
|
contentType: 'content_type',
|
|
4058
4205
|
fileUrl: 'file_url',
|
|
4059
4206
|
content: 'content',
|
|
4207
|
+
merchantId: 'merchant_id',
|
|
4060
4208
|
};
|
|
4061
4209
|
}
|
|
4062
4210
|
static types() {
|
|
@@ -4070,6 +4218,7 @@ class UploadSignCreditRequest extends $tea.Model {
|
|
|
4070
4218
|
contentType: 'string',
|
|
4071
4219
|
fileUrl: 'string',
|
|
4072
4220
|
content: 'string',
|
|
4221
|
+
merchantId: 'string',
|
|
4073
4222
|
};
|
|
4074
4223
|
}
|
|
4075
4224
|
}
|
|
@@ -4106,6 +4255,7 @@ class QuerySignCreditRequest extends $tea.Model {
|
|
|
4106
4255
|
productInstanceId: 'product_instance_id',
|
|
4107
4256
|
orderNoType: 'order_no_type',
|
|
4108
4257
|
orderNo: 'order_no',
|
|
4258
|
+
merchantId: 'merchant_id',
|
|
4109
4259
|
};
|
|
4110
4260
|
}
|
|
4111
4261
|
static types() {
|
|
@@ -4114,6 +4264,7 @@ class QuerySignCreditRequest extends $tea.Model {
|
|
|
4114
4264
|
productInstanceId: 'string',
|
|
4115
4265
|
orderNoType: 'string',
|
|
4116
4266
|
orderNo: 'string',
|
|
4267
|
+
merchantId: 'string',
|
|
4117
4268
|
};
|
|
4118
4269
|
}
|
|
4119
4270
|
}
|
|
@@ -5318,7 +5469,7 @@ class Client {
|
|
|
5318
5469
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
5319
5470
|
access_key: this._accessKeyId,
|
|
5320
5471
|
base_sdk_version: "TeaSDK-2.0",
|
|
5321
|
-
sdk_version: "1.8.
|
|
5472
|
+
sdk_version: "1.8.81",
|
|
5322
5473
|
_prod_code: "ATO",
|
|
5323
5474
|
_prod_channel: "undefined",
|
|
5324
5475
|
};
|
|
@@ -6360,6 +6511,40 @@ class Client {
|
|
|
6360
6511
|
tea_util_1.default.validateModel(request);
|
|
6361
6512
|
return $tea.cast(await this.doRequest("1.0", "antchain.ato.inner.templateversion.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerTemplateversionResponse({}));
|
|
6362
6513
|
}
|
|
6514
|
+
/**
|
|
6515
|
+
* Description: 订单消息查询
|
|
6516
|
+
* Summary: 订单消息查询
|
|
6517
|
+
*/
|
|
6518
|
+
async pagequeryInnerOrdermsg(request) {
|
|
6519
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
6520
|
+
let headers = {};
|
|
6521
|
+
return await this.pagequeryInnerOrdermsgEx(request, headers, runtime);
|
|
6522
|
+
}
|
|
6523
|
+
/**
|
|
6524
|
+
* Description: 订单消息查询
|
|
6525
|
+
* Summary: 订单消息查询
|
|
6526
|
+
*/
|
|
6527
|
+
async pagequeryInnerOrdermsgEx(request, headers, runtime) {
|
|
6528
|
+
tea_util_1.default.validateModel(request);
|
|
6529
|
+
return $tea.cast(await this.doRequest("1.0", "antchain.ato.inner.ordermsg.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerOrdermsgResponse({}));
|
|
6530
|
+
}
|
|
6531
|
+
/**
|
|
6532
|
+
* Description: 订单消息重试
|
|
6533
|
+
* Summary: 订单消息重试
|
|
6534
|
+
*/
|
|
6535
|
+
async retryInnerOrdermsg(request) {
|
|
6536
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
6537
|
+
let headers = {};
|
|
6538
|
+
return await this.retryInnerOrdermsgEx(request, headers, runtime);
|
|
6539
|
+
}
|
|
6540
|
+
/**
|
|
6541
|
+
* Description: 订单消息重试
|
|
6542
|
+
* Summary: 订单消息重试
|
|
6543
|
+
*/
|
|
6544
|
+
async retryInnerOrdermsgEx(request, headers, runtime) {
|
|
6545
|
+
tea_util_1.default.validateModel(request);
|
|
6546
|
+
return $tea.cast(await this.doRequest("1.0", "antchain.ato.inner.ordermsg.retry", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new RetryInnerOrdermsgResponse({}));
|
|
6547
|
+
}
|
|
6363
6548
|
/**
|
|
6364
6549
|
* Description: 商户入驻
|
|
6365
6550
|
* Summary: 商户入驻
|
|
@@ -6892,9 +7077,9 @@ class Client {
|
|
|
6892
7077
|
return $tea.cast(await this.doRequest("1.0", "antchain.ato.withhold.plan.cancel", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CancelWithholdPlanResponse({}));
|
|
6893
7078
|
}
|
|
6894
7079
|
/**
|
|
6895
|
-
* Description:
|
|
6896
|
-
|
|
6897
|
-
|
|
7080
|
+
* Description: 重要说明:
|
|
7081
|
+
1. 这个接口是取消订单某一期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
7082
|
+
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
6898
7083
|
* Summary: 单期代扣取消
|
|
6899
7084
|
*/
|
|
6900
7085
|
async repayWithholdPlan(request) {
|
|
@@ -6903,9 +7088,9 @@ class Client {
|
|
|
6903
7088
|
return await this.repayWithholdPlanEx(request, headers, runtime);
|
|
6904
7089
|
}
|
|
6905
7090
|
/**
|
|
6906
|
-
* Description:
|
|
6907
|
-
|
|
6908
|
-
|
|
7091
|
+
* Description: 重要说明:
|
|
7092
|
+
1. 这个接口是取消订单某一期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
7093
|
+
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
6909
7094
|
* Summary: 单期代扣取消
|
|
6910
7095
|
*/
|
|
6911
7096
|
async repayWithholdPlanEx(request, headers, runtime) {
|