@antchain/ato 1.19.80 → 1.19.86
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 +488 -1
- package/dist/client.js +714 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1086 -88
package/dist/client.d.ts
CHANGED
|
@@ -4916,6 +4916,243 @@ export declare class QueryTradeSettletocardResponse extends $tea.Model {
|
|
|
4916
4916
|
[key: string]: any;
|
|
4917
4917
|
});
|
|
4918
4918
|
}
|
|
4919
|
+
export declare class SyncOnetimeOrderRequest extends $tea.Model {
|
|
4920
|
+
authToken?: string;
|
|
4921
|
+
productInstanceId?: string;
|
|
4922
|
+
orderId: string;
|
|
4923
|
+
merchantId: string;
|
|
4924
|
+
merchantName: string;
|
|
4925
|
+
orderInfo: string;
|
|
4926
|
+
static names(): {
|
|
4927
|
+
[key: string]: string;
|
|
4928
|
+
};
|
|
4929
|
+
static types(): {
|
|
4930
|
+
[key: string]: any;
|
|
4931
|
+
};
|
|
4932
|
+
constructor(map?: {
|
|
4933
|
+
[key: string]: any;
|
|
4934
|
+
});
|
|
4935
|
+
}
|
|
4936
|
+
export declare class SyncOnetimeOrderResponse extends $tea.Model {
|
|
4937
|
+
reqMsgId?: string;
|
|
4938
|
+
resultCode?: string;
|
|
4939
|
+
resultMsg?: string;
|
|
4940
|
+
orderId?: string;
|
|
4941
|
+
static names(): {
|
|
4942
|
+
[key: string]: string;
|
|
4943
|
+
};
|
|
4944
|
+
static types(): {
|
|
4945
|
+
[key: string]: any;
|
|
4946
|
+
};
|
|
4947
|
+
constructor(map?: {
|
|
4948
|
+
[key: string]: any;
|
|
4949
|
+
});
|
|
4950
|
+
}
|
|
4951
|
+
export declare class QueryOnetimeOrderRequest extends $tea.Model {
|
|
4952
|
+
authToken?: string;
|
|
4953
|
+
productInstanceId?: string;
|
|
4954
|
+
orderId: string;
|
|
4955
|
+
merchantId: string;
|
|
4956
|
+
merchantName: string;
|
|
4957
|
+
static names(): {
|
|
4958
|
+
[key: string]: string;
|
|
4959
|
+
};
|
|
4960
|
+
static types(): {
|
|
4961
|
+
[key: string]: any;
|
|
4962
|
+
};
|
|
4963
|
+
constructor(map?: {
|
|
4964
|
+
[key: string]: any;
|
|
4965
|
+
});
|
|
4966
|
+
}
|
|
4967
|
+
export declare class QueryOnetimeOrderResponse extends $tea.Model {
|
|
4968
|
+
reqMsgId?: string;
|
|
4969
|
+
resultCode?: string;
|
|
4970
|
+
resultMsg?: string;
|
|
4971
|
+
data?: string;
|
|
4972
|
+
static names(): {
|
|
4973
|
+
[key: string]: string;
|
|
4974
|
+
};
|
|
4975
|
+
static types(): {
|
|
4976
|
+
[key: string]: any;
|
|
4977
|
+
};
|
|
4978
|
+
constructor(map?: {
|
|
4979
|
+
[key: string]: any;
|
|
4980
|
+
});
|
|
4981
|
+
}
|
|
4982
|
+
export declare class QueryOnetimePerformanceRequest extends $tea.Model {
|
|
4983
|
+
authToken?: string;
|
|
4984
|
+
productInstanceId?: string;
|
|
4985
|
+
orderId: string;
|
|
4986
|
+
merchantId: string;
|
|
4987
|
+
static names(): {
|
|
4988
|
+
[key: string]: string;
|
|
4989
|
+
};
|
|
4990
|
+
static types(): {
|
|
4991
|
+
[key: string]: any;
|
|
4992
|
+
};
|
|
4993
|
+
constructor(map?: {
|
|
4994
|
+
[key: string]: any;
|
|
4995
|
+
});
|
|
4996
|
+
}
|
|
4997
|
+
export declare class QueryOnetimePerformanceResponse extends $tea.Model {
|
|
4998
|
+
reqMsgId?: string;
|
|
4999
|
+
resultCode?: string;
|
|
5000
|
+
resultMsg?: string;
|
|
5001
|
+
data?: string;
|
|
5002
|
+
static names(): {
|
|
5003
|
+
[key: string]: string;
|
|
5004
|
+
};
|
|
5005
|
+
static types(): {
|
|
5006
|
+
[key: string]: any;
|
|
5007
|
+
};
|
|
5008
|
+
constructor(map?: {
|
|
5009
|
+
[key: string]: any;
|
|
5010
|
+
});
|
|
5011
|
+
}
|
|
5012
|
+
export declare class QueryOnetimeRefundRequest extends $tea.Model {
|
|
5013
|
+
authToken?: string;
|
|
5014
|
+
productInstanceId?: string;
|
|
5015
|
+
orderId: string;
|
|
5016
|
+
refundRequestNo: string;
|
|
5017
|
+
static names(): {
|
|
5018
|
+
[key: string]: string;
|
|
5019
|
+
};
|
|
5020
|
+
static types(): {
|
|
5021
|
+
[key: string]: any;
|
|
5022
|
+
};
|
|
5023
|
+
constructor(map?: {
|
|
5024
|
+
[key: string]: any;
|
|
5025
|
+
});
|
|
5026
|
+
}
|
|
5027
|
+
export declare class QueryOnetimeRefundResponse extends $tea.Model {
|
|
5028
|
+
reqMsgId?: string;
|
|
5029
|
+
resultCode?: string;
|
|
5030
|
+
resultMsg?: string;
|
|
5031
|
+
refundRequestNo?: string;
|
|
5032
|
+
tradeNo?: string;
|
|
5033
|
+
status?: string;
|
|
5034
|
+
refundOrderNo?: string;
|
|
5035
|
+
refundErrorMsg?: string;
|
|
5036
|
+
totalRefundAmount?: number;
|
|
5037
|
+
sendBackAmount?: number;
|
|
5038
|
+
gmtRefundPay?: number;
|
|
5039
|
+
refundDivideTransOutInfoList?: string;
|
|
5040
|
+
static names(): {
|
|
5041
|
+
[key: string]: string;
|
|
5042
|
+
};
|
|
5043
|
+
static types(): {
|
|
5044
|
+
[key: string]: any;
|
|
5045
|
+
};
|
|
5046
|
+
constructor(map?: {
|
|
5047
|
+
[key: string]: any;
|
|
5048
|
+
});
|
|
5049
|
+
}
|
|
5050
|
+
export declare class InitOnetimeActivepayRequest extends $tea.Model {
|
|
5051
|
+
authToken?: string;
|
|
5052
|
+
productInstanceId?: string;
|
|
5053
|
+
orderId: string;
|
|
5054
|
+
payChannel: string;
|
|
5055
|
+
returnUrl?: string;
|
|
5056
|
+
static names(): {
|
|
5057
|
+
[key: string]: string;
|
|
5058
|
+
};
|
|
5059
|
+
static types(): {
|
|
5060
|
+
[key: string]: any;
|
|
5061
|
+
};
|
|
5062
|
+
constructor(map?: {
|
|
5063
|
+
[key: string]: any;
|
|
5064
|
+
});
|
|
5065
|
+
}
|
|
5066
|
+
export declare class InitOnetimeActivepayResponse extends $tea.Model {
|
|
5067
|
+
reqMsgId?: string;
|
|
5068
|
+
resultCode?: string;
|
|
5069
|
+
resultMsg?: string;
|
|
5070
|
+
tradeNo?: string;
|
|
5071
|
+
orderStr?: string;
|
|
5072
|
+
static names(): {
|
|
5073
|
+
[key: string]: string;
|
|
5074
|
+
};
|
|
5075
|
+
static types(): {
|
|
5076
|
+
[key: string]: any;
|
|
5077
|
+
};
|
|
5078
|
+
constructor(map?: {
|
|
5079
|
+
[key: string]: any;
|
|
5080
|
+
});
|
|
5081
|
+
}
|
|
5082
|
+
export declare class QueryOnetimeActivepayRequest extends $tea.Model {
|
|
5083
|
+
authToken?: string;
|
|
5084
|
+
productInstanceId?: string;
|
|
5085
|
+
orderId: string;
|
|
5086
|
+
static names(): {
|
|
5087
|
+
[key: string]: string;
|
|
5088
|
+
};
|
|
5089
|
+
static types(): {
|
|
5090
|
+
[key: string]: any;
|
|
5091
|
+
};
|
|
5092
|
+
constructor(map?: {
|
|
5093
|
+
[key: string]: any;
|
|
5094
|
+
});
|
|
5095
|
+
}
|
|
5096
|
+
export declare class QueryOnetimeActivepayResponse extends $tea.Model {
|
|
5097
|
+
reqMsgId?: string;
|
|
5098
|
+
resultCode?: string;
|
|
5099
|
+
resultMsg?: string;
|
|
5100
|
+
tradeNo?: string;
|
|
5101
|
+
orderStr?: string;
|
|
5102
|
+
status?: string;
|
|
5103
|
+
divideStatus?: string;
|
|
5104
|
+
payAmount?: number;
|
|
5105
|
+
realPayAmount?: number;
|
|
5106
|
+
realReceiptAmount?: number;
|
|
5107
|
+
payTime?: string;
|
|
5108
|
+
payOrderNo?: string;
|
|
5109
|
+
payTradeNo?: string;
|
|
5110
|
+
static names(): {
|
|
5111
|
+
[key: string]: string;
|
|
5112
|
+
};
|
|
5113
|
+
static types(): {
|
|
5114
|
+
[key: string]: any;
|
|
5115
|
+
};
|
|
5116
|
+
constructor(map?: {
|
|
5117
|
+
[key: string]: any;
|
|
5118
|
+
});
|
|
5119
|
+
}
|
|
5120
|
+
export declare class CreateOnetimeRefundRequest extends $tea.Model {
|
|
5121
|
+
authToken?: string;
|
|
5122
|
+
productInstanceId?: string;
|
|
5123
|
+
orderId: string;
|
|
5124
|
+
refundRequestNo: string;
|
|
5125
|
+
refundMoney: number;
|
|
5126
|
+
refundReason?: string;
|
|
5127
|
+
refundDivideTransOutInfoList?: string;
|
|
5128
|
+
static names(): {
|
|
5129
|
+
[key: string]: string;
|
|
5130
|
+
};
|
|
5131
|
+
static types(): {
|
|
5132
|
+
[key: string]: any;
|
|
5133
|
+
};
|
|
5134
|
+
constructor(map?: {
|
|
5135
|
+
[key: string]: any;
|
|
5136
|
+
});
|
|
5137
|
+
}
|
|
5138
|
+
export declare class CreateOnetimeRefundResponse extends $tea.Model {
|
|
5139
|
+
reqMsgId?: string;
|
|
5140
|
+
resultCode?: string;
|
|
5141
|
+
resultMsg?: string;
|
|
5142
|
+
refundRequestNo?: string;
|
|
5143
|
+
status?: string;
|
|
5144
|
+
refundOrderNo?: string;
|
|
5145
|
+
tradeNo?: string;
|
|
5146
|
+
static names(): {
|
|
5147
|
+
[key: string]: string;
|
|
5148
|
+
};
|
|
5149
|
+
static types(): {
|
|
5150
|
+
[key: string]: any;
|
|
5151
|
+
};
|
|
5152
|
+
constructor(map?: {
|
|
5153
|
+
[key: string]: any;
|
|
5154
|
+
});
|
|
5155
|
+
}
|
|
4919
5156
|
export declare class QueryInnerFundassetpackagerepaymentRequest extends $tea.Model {
|
|
4920
5157
|
authToken?: string;
|
|
4921
5158
|
productInstanceId?: string;
|
|
@@ -5019,6 +5256,104 @@ export declare class QueryInnerAprepaymentallocatedetailResponse extends $tea.Mo
|
|
|
5019
5256
|
[key: string]: any;
|
|
5020
5257
|
});
|
|
5021
5258
|
}
|
|
5259
|
+
export declare class QueryInnerMermngdemoRequest extends $tea.Model {
|
|
5260
|
+
authToken?: string;
|
|
5261
|
+
productInstanceId?: string;
|
|
5262
|
+
tenantId: string;
|
|
5263
|
+
static names(): {
|
|
5264
|
+
[key: string]: string;
|
|
5265
|
+
};
|
|
5266
|
+
static types(): {
|
|
5267
|
+
[key: string]: any;
|
|
5268
|
+
};
|
|
5269
|
+
constructor(map?: {
|
|
5270
|
+
[key: string]: any;
|
|
5271
|
+
});
|
|
5272
|
+
}
|
|
5273
|
+
export declare class QueryInnerMermngdemoResponse extends $tea.Model {
|
|
5274
|
+
reqMsgId?: string;
|
|
5275
|
+
resultCode?: string;
|
|
5276
|
+
resultMsg?: string;
|
|
5277
|
+
merchantName?: string;
|
|
5278
|
+
static names(): {
|
|
5279
|
+
[key: string]: string;
|
|
5280
|
+
};
|
|
5281
|
+
static types(): {
|
|
5282
|
+
[key: string]: any;
|
|
5283
|
+
};
|
|
5284
|
+
constructor(map?: {
|
|
5285
|
+
[key: string]: any;
|
|
5286
|
+
});
|
|
5287
|
+
}
|
|
5288
|
+
export declare class QueryInnerMermngcontractextractRequest extends $tea.Model {
|
|
5289
|
+
authToken?: string;
|
|
5290
|
+
productInstanceId?: string;
|
|
5291
|
+
traceId: string;
|
|
5292
|
+
tenantId: string;
|
|
5293
|
+
taskInstantId: string;
|
|
5294
|
+
static names(): {
|
|
5295
|
+
[key: string]: string;
|
|
5296
|
+
};
|
|
5297
|
+
static types(): {
|
|
5298
|
+
[key: string]: any;
|
|
5299
|
+
};
|
|
5300
|
+
constructor(map?: {
|
|
5301
|
+
[key: string]: any;
|
|
5302
|
+
});
|
|
5303
|
+
}
|
|
5304
|
+
export declare class QueryInnerMermngcontractextractResponse extends $tea.Model {
|
|
5305
|
+
reqMsgId?: string;
|
|
5306
|
+
resultCode?: string;
|
|
5307
|
+
resultMsg?: string;
|
|
5308
|
+
taskCode?: string;
|
|
5309
|
+
taskInstantId?: string;
|
|
5310
|
+
bizId?: string;
|
|
5311
|
+
status?: string;
|
|
5312
|
+
extractResult?: string;
|
|
5313
|
+
static names(): {
|
|
5314
|
+
[key: string]: string;
|
|
5315
|
+
};
|
|
5316
|
+
static types(): {
|
|
5317
|
+
[key: string]: any;
|
|
5318
|
+
};
|
|
5319
|
+
constructor(map?: {
|
|
5320
|
+
[key: string]: any;
|
|
5321
|
+
});
|
|
5322
|
+
}
|
|
5323
|
+
export declare class SumbitInnerMermngcontractextractRequest extends $tea.Model {
|
|
5324
|
+
authToken?: string;
|
|
5325
|
+
productInstanceId?: string;
|
|
5326
|
+
traceId: string;
|
|
5327
|
+
tenantId: string;
|
|
5328
|
+
taskCode: string;
|
|
5329
|
+
bizId: string;
|
|
5330
|
+
fileUrl: string;
|
|
5331
|
+
bizParams?: string;
|
|
5332
|
+
static names(): {
|
|
5333
|
+
[key: string]: string;
|
|
5334
|
+
};
|
|
5335
|
+
static types(): {
|
|
5336
|
+
[key: string]: any;
|
|
5337
|
+
};
|
|
5338
|
+
constructor(map?: {
|
|
5339
|
+
[key: string]: any;
|
|
5340
|
+
});
|
|
5341
|
+
}
|
|
5342
|
+
export declare class SumbitInnerMermngcontractextractResponse extends $tea.Model {
|
|
5343
|
+
reqMsgId?: string;
|
|
5344
|
+
resultCode?: string;
|
|
5345
|
+
resultMsg?: string;
|
|
5346
|
+
taskInstantId?: string;
|
|
5347
|
+
static names(): {
|
|
5348
|
+
[key: string]: string;
|
|
5349
|
+
};
|
|
5350
|
+
static types(): {
|
|
5351
|
+
[key: string]: any;
|
|
5352
|
+
};
|
|
5353
|
+
constructor(map?: {
|
|
5354
|
+
[key: string]: any;
|
|
5355
|
+
});
|
|
5356
|
+
}
|
|
5022
5357
|
export declare class TransferBrokerUserdataRequest extends $tea.Model {
|
|
5023
5358
|
authToken?: string;
|
|
5024
5359
|
productInstanceId?: string;
|
|
@@ -12809,7 +13144,7 @@ export declare class CreateInnerWithholdjdsignurlRequest extends $tea.Model {
|
|
|
12809
13144
|
authToken?: string;
|
|
12810
13145
|
productInstanceId?: string;
|
|
12811
13146
|
flowId: string;
|
|
12812
|
-
accountId
|
|
13147
|
+
accountId?: string;
|
|
12813
13148
|
static names(): {
|
|
12814
13149
|
[key: string]: string;
|
|
12815
13150
|
};
|
|
@@ -15485,6 +15820,116 @@ export default class Client {
|
|
|
15485
15820
|
queryTradeSettletocardEx(request: QueryTradeSettletocardRequest, headers: {
|
|
15486
15821
|
[key: string]: string;
|
|
15487
15822
|
}, runtime: $Util.RuntimeOptions): Promise<QueryTradeSettletocardResponse>;
|
|
15823
|
+
/**
|
|
15824
|
+
* @remarks
|
|
15825
|
+
* Description: 一次性支付订单创建
|
|
15826
|
+
* 接口信息
|
|
15827
|
+
* Summary: 一次性支付订单创建
|
|
15828
|
+
* 接口信息
|
|
15829
|
+
*/
|
|
15830
|
+
syncOnetimeOrder(request: SyncOnetimeOrderRequest): Promise<SyncOnetimeOrderResponse>;
|
|
15831
|
+
/**
|
|
15832
|
+
* @remarks
|
|
15833
|
+
* Description: 一次性支付订单创建
|
|
15834
|
+
* 接口信息
|
|
15835
|
+
* Summary: 一次性支付订单创建
|
|
15836
|
+
* 接口信息
|
|
15837
|
+
*/
|
|
15838
|
+
syncOnetimeOrderEx(request: SyncOnetimeOrderRequest, headers: {
|
|
15839
|
+
[key: string]: string;
|
|
15840
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncOnetimeOrderResponse>;
|
|
15841
|
+
/**
|
|
15842
|
+
* @remarks
|
|
15843
|
+
* Description: 一次性支付订单信息查询
|
|
15844
|
+
* Summary: 一次性支付订单信息查询
|
|
15845
|
+
*/
|
|
15846
|
+
queryOnetimeOrder(request: QueryOnetimeOrderRequest): Promise<QueryOnetimeOrderResponse>;
|
|
15847
|
+
/**
|
|
15848
|
+
* @remarks
|
|
15849
|
+
* Description: 一次性支付订单信息查询
|
|
15850
|
+
* Summary: 一次性支付订单信息查询
|
|
15851
|
+
*/
|
|
15852
|
+
queryOnetimeOrderEx(request: QueryOnetimeOrderRequest, headers: {
|
|
15853
|
+
[key: string]: string;
|
|
15854
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimeOrderResponse>;
|
|
15855
|
+
/**
|
|
15856
|
+
* @remarks
|
|
15857
|
+
* Description: 一次性支付订单资金流水信息查询
|
|
15858
|
+
* Summary: 一次性支付订单资金流水信息查询
|
|
15859
|
+
*/
|
|
15860
|
+
queryOnetimePerformance(request: QueryOnetimePerformanceRequest): Promise<QueryOnetimePerformanceResponse>;
|
|
15861
|
+
/**
|
|
15862
|
+
* @remarks
|
|
15863
|
+
* Description: 一次性支付订单资金流水信息查询
|
|
15864
|
+
* Summary: 一次性支付订单资金流水信息查询
|
|
15865
|
+
*/
|
|
15866
|
+
queryOnetimePerformanceEx(request: QueryOnetimePerformanceRequest, headers: {
|
|
15867
|
+
[key: string]: string;
|
|
15868
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimePerformanceResponse>;
|
|
15869
|
+
/**
|
|
15870
|
+
* @remarks
|
|
15871
|
+
* Description: 一次性支付退款查询
|
|
15872
|
+
* 接口信息
|
|
15873
|
+
* Summary: 一次性支付退款查询
|
|
15874
|
+
* 接口信息
|
|
15875
|
+
*/
|
|
15876
|
+
queryOnetimeRefund(request: QueryOnetimeRefundRequest): Promise<QueryOnetimeRefundResponse>;
|
|
15877
|
+
/**
|
|
15878
|
+
* @remarks
|
|
15879
|
+
* Description: 一次性支付退款查询
|
|
15880
|
+
* 接口信息
|
|
15881
|
+
* Summary: 一次性支付退款查询
|
|
15882
|
+
* 接口信息
|
|
15883
|
+
*/
|
|
15884
|
+
queryOnetimeRefundEx(request: QueryOnetimeRefundRequest, headers: {
|
|
15885
|
+
[key: string]: string;
|
|
15886
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimeRefundResponse>;
|
|
15887
|
+
/**
|
|
15888
|
+
* @remarks
|
|
15889
|
+
* Description: 一次性支付创建
|
|
15890
|
+
* Summary: 一次性支付创建
|
|
15891
|
+
*/
|
|
15892
|
+
initOnetimeActivepay(request: InitOnetimeActivepayRequest): Promise<InitOnetimeActivepayResponse>;
|
|
15893
|
+
/**
|
|
15894
|
+
* @remarks
|
|
15895
|
+
* Description: 一次性支付创建
|
|
15896
|
+
* Summary: 一次性支付创建
|
|
15897
|
+
*/
|
|
15898
|
+
initOnetimeActivepayEx(request: InitOnetimeActivepayRequest, headers: {
|
|
15899
|
+
[key: string]: string;
|
|
15900
|
+
}, runtime: $Util.RuntimeOptions): Promise<InitOnetimeActivepayResponse>;
|
|
15901
|
+
/**
|
|
15902
|
+
* @remarks
|
|
15903
|
+
* Description: 一次性支付查询
|
|
15904
|
+
* Summary: 一次性支付查询
|
|
15905
|
+
*/
|
|
15906
|
+
queryOnetimeActivepay(request: QueryOnetimeActivepayRequest): Promise<QueryOnetimeActivepayResponse>;
|
|
15907
|
+
/**
|
|
15908
|
+
* @remarks
|
|
15909
|
+
* Description: 一次性支付查询
|
|
15910
|
+
* Summary: 一次性支付查询
|
|
15911
|
+
*/
|
|
15912
|
+
queryOnetimeActivepayEx(request: QueryOnetimeActivepayRequest, headers: {
|
|
15913
|
+
[key: string]: string;
|
|
15914
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimeActivepayResponse>;
|
|
15915
|
+
/**
|
|
15916
|
+
* @remarks
|
|
15917
|
+
* Description: 一次性支付退款创建
|
|
15918
|
+
* 接口信息
|
|
15919
|
+
* Summary: 一次性支付退款创建
|
|
15920
|
+
* 接口信息
|
|
15921
|
+
*/
|
|
15922
|
+
createOnetimeRefund(request: CreateOnetimeRefundRequest): Promise<CreateOnetimeRefundResponse>;
|
|
15923
|
+
/**
|
|
15924
|
+
* @remarks
|
|
15925
|
+
* Description: 一次性支付退款创建
|
|
15926
|
+
* 接口信息
|
|
15927
|
+
* Summary: 一次性支付退款创建
|
|
15928
|
+
* 接口信息
|
|
15929
|
+
*/
|
|
15930
|
+
createOnetimeRefundEx(request: CreateOnetimeRefundRequest, headers: {
|
|
15931
|
+
[key: string]: string;
|
|
15932
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateOnetimeRefundResponse>;
|
|
15488
15933
|
/**
|
|
15489
15934
|
* @remarks
|
|
15490
15935
|
* Description: 资产包还款列表查询
|
|
@@ -15527,6 +15972,48 @@ export default class Client {
|
|
|
15527
15972
|
queryInnerAprepaymentallocatedetailEx(request: QueryInnerAprepaymentallocatedetailRequest, headers: {
|
|
15528
15973
|
[key: string]: string;
|
|
15529
15974
|
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerAprepaymentallocatedetailResponse>;
|
|
15975
|
+
/**
|
|
15976
|
+
* @remarks
|
|
15977
|
+
* Description: 商户管理demo接口
|
|
15978
|
+
* Summary: 商户管理demo接口
|
|
15979
|
+
*/
|
|
15980
|
+
queryInnerMermngdemo(request: QueryInnerMermngdemoRequest): Promise<QueryInnerMermngdemoResponse>;
|
|
15981
|
+
/**
|
|
15982
|
+
* @remarks
|
|
15983
|
+
* Description: 商户管理demo接口
|
|
15984
|
+
* Summary: 商户管理demo接口
|
|
15985
|
+
*/
|
|
15986
|
+
queryInnerMermngdemoEx(request: QueryInnerMermngdemoRequest, headers: {
|
|
15987
|
+
[key: string]: string;
|
|
15988
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngdemoResponse>;
|
|
15989
|
+
/**
|
|
15990
|
+
* @remarks
|
|
15991
|
+
* Description: 立场提取查询
|
|
15992
|
+
* Summary: 立场提取查询
|
|
15993
|
+
*/
|
|
15994
|
+
queryInnerMermngcontractextract(request: QueryInnerMermngcontractextractRequest): Promise<QueryInnerMermngcontractextractResponse>;
|
|
15995
|
+
/**
|
|
15996
|
+
* @remarks
|
|
15997
|
+
* Description: 立场提取查询
|
|
15998
|
+
* Summary: 立场提取查询
|
|
15999
|
+
*/
|
|
16000
|
+
queryInnerMermngcontractextractEx(request: QueryInnerMermngcontractextractRequest, headers: {
|
|
16001
|
+
[key: string]: string;
|
|
16002
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngcontractextractResponse>;
|
|
16003
|
+
/**
|
|
16004
|
+
* @remarks
|
|
16005
|
+
* Description: 合同立场提取
|
|
16006
|
+
* Summary: 合同立场提取
|
|
16007
|
+
*/
|
|
16008
|
+
sumbitInnerMermngcontractextract(request: SumbitInnerMermngcontractextractRequest): Promise<SumbitInnerMermngcontractextractResponse>;
|
|
16009
|
+
/**
|
|
16010
|
+
* @remarks
|
|
16011
|
+
* Description: 合同立场提取
|
|
16012
|
+
* Summary: 合同立场提取
|
|
16013
|
+
*/
|
|
16014
|
+
sumbitInnerMermngcontractextractEx(request: SumbitInnerMermngcontractextractRequest, headers: {
|
|
16015
|
+
[key: string]: string;
|
|
16016
|
+
}, runtime: $Util.RuntimeOptions): Promise<SumbitInnerMermngcontractextractResponse>;
|
|
15530
16017
|
/**
|
|
15531
16018
|
* @remarks
|
|
15532
16019
|
* Description: 数据提供方可以通过此接口传输数据,触达给消费方
|