@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/src/client.ts
CHANGED
|
@@ -8045,38 +8045,813 @@ export class QueryTradeSettletocardResponse extends $tea.Model {
|
|
|
8045
8045
|
}
|
|
8046
8046
|
}
|
|
8047
8047
|
|
|
8048
|
+
export class SyncOnetimeOrderRequest extends $tea.Model {
|
|
8049
|
+
// OAuth模式下的授权token
|
|
8050
|
+
authToken?: string;
|
|
8051
|
+
productInstanceId?: string;
|
|
8052
|
+
// 订单id 长度大于6,小于50
|
|
8053
|
+
orderId: string;
|
|
8054
|
+
// 订单所属商户的社会信用代码
|
|
8055
|
+
merchantId: string;
|
|
8056
|
+
// 订单所属商户的名字
|
|
8057
|
+
merchantName: string;
|
|
8058
|
+
// OneTimeOrderfoRequest请求参数
|
|
8059
|
+
orderInfo: string;
|
|
8060
|
+
static names(): { [key: string]: string } {
|
|
8061
|
+
return {
|
|
8062
|
+
authToken: 'auth_token',
|
|
8063
|
+
productInstanceId: 'product_instance_id',
|
|
8064
|
+
orderId: 'order_id',
|
|
8065
|
+
merchantId: 'merchant_id',
|
|
8066
|
+
merchantName: 'merchant_name',
|
|
8067
|
+
orderInfo: 'order_info',
|
|
8068
|
+
};
|
|
8069
|
+
}
|
|
8070
|
+
|
|
8071
|
+
static types(): { [key: string]: any } {
|
|
8072
|
+
return {
|
|
8073
|
+
authToken: 'string',
|
|
8074
|
+
productInstanceId: 'string',
|
|
8075
|
+
orderId: 'string',
|
|
8076
|
+
merchantId: 'string',
|
|
8077
|
+
merchantName: 'string',
|
|
8078
|
+
orderInfo: 'string',
|
|
8079
|
+
};
|
|
8080
|
+
}
|
|
8081
|
+
|
|
8082
|
+
constructor(map?: { [key: string]: any }) {
|
|
8083
|
+
super(map);
|
|
8084
|
+
}
|
|
8085
|
+
}
|
|
8086
|
+
|
|
8087
|
+
export class SyncOnetimeOrderResponse extends $tea.Model {
|
|
8088
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8089
|
+
reqMsgId?: string;
|
|
8090
|
+
// 结果码,一般OK表示调用成功
|
|
8091
|
+
resultCode?: string;
|
|
8092
|
+
// 异常信息的文本描述
|
|
8093
|
+
resultMsg?: string;
|
|
8094
|
+
// 订单id
|
|
8095
|
+
orderId?: string;
|
|
8096
|
+
static names(): { [key: string]: string } {
|
|
8097
|
+
return {
|
|
8098
|
+
reqMsgId: 'req_msg_id',
|
|
8099
|
+
resultCode: 'result_code',
|
|
8100
|
+
resultMsg: 'result_msg',
|
|
8101
|
+
orderId: 'order_id',
|
|
8102
|
+
};
|
|
8103
|
+
}
|
|
8104
|
+
|
|
8105
|
+
static types(): { [key: string]: any } {
|
|
8106
|
+
return {
|
|
8107
|
+
reqMsgId: 'string',
|
|
8108
|
+
resultCode: 'string',
|
|
8109
|
+
resultMsg: 'string',
|
|
8110
|
+
orderId: 'string',
|
|
8111
|
+
};
|
|
8112
|
+
}
|
|
8113
|
+
|
|
8114
|
+
constructor(map?: { [key: string]: any }) {
|
|
8115
|
+
super(map);
|
|
8116
|
+
}
|
|
8117
|
+
}
|
|
8118
|
+
|
|
8119
|
+
export class QueryOnetimeOrderRequest extends $tea.Model {
|
|
8120
|
+
// OAuth模式下的授权token
|
|
8121
|
+
authToken?: string;
|
|
8122
|
+
productInstanceId?: string;
|
|
8123
|
+
// order_id
|
|
8124
|
+
orderId: string;
|
|
8125
|
+
// merchant_id
|
|
8126
|
+
merchantId: string;
|
|
8127
|
+
// merchant_name
|
|
8128
|
+
merchantName: string;
|
|
8129
|
+
static names(): { [key: string]: string } {
|
|
8130
|
+
return {
|
|
8131
|
+
authToken: 'auth_token',
|
|
8132
|
+
productInstanceId: 'product_instance_id',
|
|
8133
|
+
orderId: 'order_id',
|
|
8134
|
+
merchantId: 'merchant_id',
|
|
8135
|
+
merchantName: 'merchant_name',
|
|
8136
|
+
};
|
|
8137
|
+
}
|
|
8138
|
+
|
|
8139
|
+
static types(): { [key: string]: any } {
|
|
8140
|
+
return {
|
|
8141
|
+
authToken: 'string',
|
|
8142
|
+
productInstanceId: 'string',
|
|
8143
|
+
orderId: 'string',
|
|
8144
|
+
merchantId: 'string',
|
|
8145
|
+
merchantName: 'string',
|
|
8146
|
+
};
|
|
8147
|
+
}
|
|
8148
|
+
|
|
8149
|
+
constructor(map?: { [key: string]: any }) {
|
|
8150
|
+
super(map);
|
|
8151
|
+
}
|
|
8152
|
+
}
|
|
8153
|
+
|
|
8154
|
+
export class QueryOnetimeOrderResponse extends $tea.Model {
|
|
8155
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8156
|
+
reqMsgId?: string;
|
|
8157
|
+
// 结果码,一般OK表示调用成功
|
|
8158
|
+
resultCode?: string;
|
|
8159
|
+
// 异常信息的文本描述
|
|
8160
|
+
resultMsg?: string;
|
|
8161
|
+
// data
|
|
8162
|
+
data?: string;
|
|
8163
|
+
static names(): { [key: string]: string } {
|
|
8164
|
+
return {
|
|
8165
|
+
reqMsgId: 'req_msg_id',
|
|
8166
|
+
resultCode: 'result_code',
|
|
8167
|
+
resultMsg: 'result_msg',
|
|
8168
|
+
data: 'data',
|
|
8169
|
+
};
|
|
8170
|
+
}
|
|
8171
|
+
|
|
8172
|
+
static types(): { [key: string]: any } {
|
|
8173
|
+
return {
|
|
8174
|
+
reqMsgId: 'string',
|
|
8175
|
+
resultCode: 'string',
|
|
8176
|
+
resultMsg: 'string',
|
|
8177
|
+
data: 'string',
|
|
8178
|
+
};
|
|
8179
|
+
}
|
|
8180
|
+
|
|
8181
|
+
constructor(map?: { [key: string]: any }) {
|
|
8182
|
+
super(map);
|
|
8183
|
+
}
|
|
8184
|
+
}
|
|
8185
|
+
|
|
8186
|
+
export class QueryOnetimePerformanceRequest extends $tea.Model {
|
|
8187
|
+
// OAuth模式下的授权token
|
|
8188
|
+
authToken?: string;
|
|
8189
|
+
productInstanceId?: string;
|
|
8190
|
+
// order_id
|
|
8191
|
+
orderId: string;
|
|
8192
|
+
// merchant_id
|
|
8193
|
+
merchantId: string;
|
|
8194
|
+
static names(): { [key: string]: string } {
|
|
8195
|
+
return {
|
|
8196
|
+
authToken: 'auth_token',
|
|
8197
|
+
productInstanceId: 'product_instance_id',
|
|
8198
|
+
orderId: 'order_id',
|
|
8199
|
+
merchantId: 'merchant_id',
|
|
8200
|
+
};
|
|
8201
|
+
}
|
|
8202
|
+
|
|
8203
|
+
static types(): { [key: string]: any } {
|
|
8204
|
+
return {
|
|
8205
|
+
authToken: 'string',
|
|
8206
|
+
productInstanceId: 'string',
|
|
8207
|
+
orderId: 'string',
|
|
8208
|
+
merchantId: 'string',
|
|
8209
|
+
};
|
|
8210
|
+
}
|
|
8211
|
+
|
|
8212
|
+
constructor(map?: { [key: string]: any }) {
|
|
8213
|
+
super(map);
|
|
8214
|
+
}
|
|
8215
|
+
}
|
|
8216
|
+
|
|
8217
|
+
export class QueryOnetimePerformanceResponse extends $tea.Model {
|
|
8218
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8219
|
+
reqMsgId?: string;
|
|
8220
|
+
// 结果码,一般OK表示调用成功
|
|
8221
|
+
resultCode?: string;
|
|
8222
|
+
// 异常信息的文本描述
|
|
8223
|
+
resultMsg?: string;
|
|
8224
|
+
// data
|
|
8225
|
+
data?: string;
|
|
8226
|
+
static names(): { [key: string]: string } {
|
|
8227
|
+
return {
|
|
8228
|
+
reqMsgId: 'req_msg_id',
|
|
8229
|
+
resultCode: 'result_code',
|
|
8230
|
+
resultMsg: 'result_msg',
|
|
8231
|
+
data: 'data',
|
|
8232
|
+
};
|
|
8233
|
+
}
|
|
8234
|
+
|
|
8235
|
+
static types(): { [key: string]: any } {
|
|
8236
|
+
return {
|
|
8237
|
+
reqMsgId: 'string',
|
|
8238
|
+
resultCode: 'string',
|
|
8239
|
+
resultMsg: 'string',
|
|
8240
|
+
data: 'string',
|
|
8241
|
+
};
|
|
8242
|
+
}
|
|
8243
|
+
|
|
8244
|
+
constructor(map?: { [key: string]: any }) {
|
|
8245
|
+
super(map);
|
|
8246
|
+
}
|
|
8247
|
+
}
|
|
8248
|
+
|
|
8249
|
+
export class QueryOnetimeRefundRequest extends $tea.Model {
|
|
8250
|
+
// OAuth模式下的授权token
|
|
8251
|
+
authToken?: string;
|
|
8252
|
+
productInstanceId?: string;
|
|
8253
|
+
// 订单id
|
|
8254
|
+
orderId: string;
|
|
8255
|
+
// 外部系统传入的退款请求号
|
|
8256
|
+
refundRequestNo: string;
|
|
8257
|
+
static names(): { [key: string]: string } {
|
|
8258
|
+
return {
|
|
8259
|
+
authToken: 'auth_token',
|
|
8260
|
+
productInstanceId: 'product_instance_id',
|
|
8261
|
+
orderId: 'order_id',
|
|
8262
|
+
refundRequestNo: 'refund_request_no',
|
|
8263
|
+
};
|
|
8264
|
+
}
|
|
8265
|
+
|
|
8266
|
+
static types(): { [key: string]: any } {
|
|
8267
|
+
return {
|
|
8268
|
+
authToken: 'string',
|
|
8269
|
+
productInstanceId: 'string',
|
|
8270
|
+
orderId: 'string',
|
|
8271
|
+
refundRequestNo: 'string',
|
|
8272
|
+
};
|
|
8273
|
+
}
|
|
8274
|
+
|
|
8275
|
+
constructor(map?: { [key: string]: any }) {
|
|
8276
|
+
super(map);
|
|
8277
|
+
}
|
|
8278
|
+
}
|
|
8279
|
+
|
|
8280
|
+
export class QueryOnetimeRefundResponse extends $tea.Model {
|
|
8281
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8282
|
+
reqMsgId?: string;
|
|
8283
|
+
// 结果码,一般OK表示调用成功
|
|
8284
|
+
resultCode?: string;
|
|
8285
|
+
// 异常信息的文本描述
|
|
8286
|
+
resultMsg?: string;
|
|
8287
|
+
// 外部系统传入的退款请求号
|
|
8288
|
+
refundRequestNo?: string;
|
|
8289
|
+
// 支付宝交易单号
|
|
8290
|
+
tradeNo?: string;
|
|
8291
|
+
// 退款请求状态
|
|
8292
|
+
// ACCEPT: 受理成功
|
|
8293
|
+
// PENDING: 需人工介入
|
|
8294
|
+
// SUCCESS: 成功
|
|
8295
|
+
// FAILED : 失败
|
|
8296
|
+
status?: string;
|
|
8297
|
+
// 请求支付宝的退款单据号
|
|
8298
|
+
refundOrderNo?: string;
|
|
8299
|
+
// 退款失败原因
|
|
8300
|
+
refundErrorMsg?: string;
|
|
8301
|
+
// 本笔交易总退款金额,单位为分
|
|
8302
|
+
totalRefundAmount?: number;
|
|
8303
|
+
// 本次退款申请的实际退款金额,单位为分
|
|
8304
|
+
sendBackAmount?: number;
|
|
8305
|
+
// 实际退款时间,13位时间戳(毫秒)
|
|
8306
|
+
gmtRefundPay?: number;
|
|
8307
|
+
// 退分账信息
|
|
8308
|
+
refundDivideTransOutInfoList?: string;
|
|
8309
|
+
static names(): { [key: string]: string } {
|
|
8310
|
+
return {
|
|
8311
|
+
reqMsgId: 'req_msg_id',
|
|
8312
|
+
resultCode: 'result_code',
|
|
8313
|
+
resultMsg: 'result_msg',
|
|
8314
|
+
refundRequestNo: 'refund_request_no',
|
|
8315
|
+
tradeNo: 'trade_no',
|
|
8316
|
+
status: 'status',
|
|
8317
|
+
refundOrderNo: 'refund_order_no',
|
|
8318
|
+
refundErrorMsg: 'refund_error_msg',
|
|
8319
|
+
totalRefundAmount: 'total_refund_amount',
|
|
8320
|
+
sendBackAmount: 'send_back_amount',
|
|
8321
|
+
gmtRefundPay: 'gmt_refund_pay',
|
|
8322
|
+
refundDivideTransOutInfoList: 'refund_divide_trans_out_info_list',
|
|
8323
|
+
};
|
|
8324
|
+
}
|
|
8325
|
+
|
|
8326
|
+
static types(): { [key: string]: any } {
|
|
8327
|
+
return {
|
|
8328
|
+
reqMsgId: 'string',
|
|
8329
|
+
resultCode: 'string',
|
|
8330
|
+
resultMsg: 'string',
|
|
8331
|
+
refundRequestNo: 'string',
|
|
8332
|
+
tradeNo: 'string',
|
|
8333
|
+
status: 'string',
|
|
8334
|
+
refundOrderNo: 'string',
|
|
8335
|
+
refundErrorMsg: 'string',
|
|
8336
|
+
totalRefundAmount: 'number',
|
|
8337
|
+
sendBackAmount: 'number',
|
|
8338
|
+
gmtRefundPay: 'number',
|
|
8339
|
+
refundDivideTransOutInfoList: 'string',
|
|
8340
|
+
};
|
|
8341
|
+
}
|
|
8342
|
+
|
|
8343
|
+
constructor(map?: { [key: string]: any }) {
|
|
8344
|
+
super(map);
|
|
8345
|
+
}
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
export class InitOnetimeActivepayRequest extends $tea.Model {
|
|
8349
|
+
// OAuth模式下的授权token
|
|
8350
|
+
authToken?: string;
|
|
8351
|
+
productInstanceId?: string;
|
|
8352
|
+
// 单号
|
|
8353
|
+
orderId: string;
|
|
8354
|
+
// 支付渠道
|
|
8355
|
+
payChannel: string;
|
|
8356
|
+
// 回跳地址
|
|
8357
|
+
returnUrl?: string;
|
|
8358
|
+
static names(): { [key: string]: string } {
|
|
8359
|
+
return {
|
|
8360
|
+
authToken: 'auth_token',
|
|
8361
|
+
productInstanceId: 'product_instance_id',
|
|
8362
|
+
orderId: 'order_id',
|
|
8363
|
+
payChannel: 'pay_channel',
|
|
8364
|
+
returnUrl: 'return_url',
|
|
8365
|
+
};
|
|
8366
|
+
}
|
|
8367
|
+
|
|
8368
|
+
static types(): { [key: string]: any } {
|
|
8369
|
+
return {
|
|
8370
|
+
authToken: 'string',
|
|
8371
|
+
productInstanceId: 'string',
|
|
8372
|
+
orderId: 'string',
|
|
8373
|
+
payChannel: 'string',
|
|
8374
|
+
returnUrl: 'string',
|
|
8375
|
+
};
|
|
8376
|
+
}
|
|
8377
|
+
|
|
8378
|
+
constructor(map?: { [key: string]: any }) {
|
|
8379
|
+
super(map);
|
|
8380
|
+
}
|
|
8381
|
+
}
|
|
8382
|
+
|
|
8383
|
+
export class InitOnetimeActivepayResponse extends $tea.Model {
|
|
8384
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8385
|
+
reqMsgId?: string;
|
|
8386
|
+
// 结果码,一般OK表示调用成功
|
|
8387
|
+
resultCode?: string;
|
|
8388
|
+
// 异常信息的文本描述
|
|
8389
|
+
resultMsg?: string;
|
|
8390
|
+
// 支付单号
|
|
8391
|
+
tradeNo?: string;
|
|
8392
|
+
// 字符串
|
|
8393
|
+
orderStr?: string;
|
|
8394
|
+
static names(): { [key: string]: string } {
|
|
8395
|
+
return {
|
|
8396
|
+
reqMsgId: 'req_msg_id',
|
|
8397
|
+
resultCode: 'result_code',
|
|
8398
|
+
resultMsg: 'result_msg',
|
|
8399
|
+
tradeNo: 'trade_no',
|
|
8400
|
+
orderStr: 'order_str',
|
|
8401
|
+
};
|
|
8402
|
+
}
|
|
8403
|
+
|
|
8404
|
+
static types(): { [key: string]: any } {
|
|
8405
|
+
return {
|
|
8406
|
+
reqMsgId: 'string',
|
|
8407
|
+
resultCode: 'string',
|
|
8408
|
+
resultMsg: 'string',
|
|
8409
|
+
tradeNo: 'string',
|
|
8410
|
+
orderStr: 'string',
|
|
8411
|
+
};
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
constructor(map?: { [key: string]: any }) {
|
|
8415
|
+
super(map);
|
|
8416
|
+
}
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8419
|
+
export class QueryOnetimeActivepayRequest extends $tea.Model {
|
|
8420
|
+
// OAuth模式下的授权token
|
|
8421
|
+
authToken?: string;
|
|
8422
|
+
productInstanceId?: string;
|
|
8423
|
+
// 单号
|
|
8424
|
+
orderId: string;
|
|
8425
|
+
static names(): { [key: string]: string } {
|
|
8426
|
+
return {
|
|
8427
|
+
authToken: 'auth_token',
|
|
8428
|
+
productInstanceId: 'product_instance_id',
|
|
8429
|
+
orderId: 'order_id',
|
|
8430
|
+
};
|
|
8431
|
+
}
|
|
8432
|
+
|
|
8433
|
+
static types(): { [key: string]: any } {
|
|
8434
|
+
return {
|
|
8435
|
+
authToken: 'string',
|
|
8436
|
+
productInstanceId: 'string',
|
|
8437
|
+
orderId: 'string',
|
|
8438
|
+
};
|
|
8439
|
+
}
|
|
8440
|
+
|
|
8441
|
+
constructor(map?: { [key: string]: any }) {
|
|
8442
|
+
super(map);
|
|
8443
|
+
}
|
|
8444
|
+
}
|
|
8445
|
+
|
|
8446
|
+
export class QueryOnetimeActivepayResponse extends $tea.Model {
|
|
8447
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8448
|
+
reqMsgId?: string;
|
|
8449
|
+
// 结果码,一般OK表示调用成功
|
|
8450
|
+
resultCode?: string;
|
|
8451
|
+
// 异常信息的文本描述
|
|
8452
|
+
resultMsg?: string;
|
|
8453
|
+
// 支付单号
|
|
8454
|
+
tradeNo?: string;
|
|
8455
|
+
// 订单串
|
|
8456
|
+
orderStr?: string;
|
|
8457
|
+
// 状态
|
|
8458
|
+
status?: string;
|
|
8459
|
+
// 分账状态
|
|
8460
|
+
divideStatus?: string;
|
|
8461
|
+
// 支付金额
|
|
8462
|
+
payAmount?: number;
|
|
8463
|
+
// 实际付款金额
|
|
8464
|
+
realPayAmount?: number;
|
|
8465
|
+
// 实际收款金额
|
|
8466
|
+
realReceiptAmount?: number;
|
|
8467
|
+
// 支付时间
|
|
8468
|
+
payTime?: string;
|
|
8469
|
+
// 支付单号
|
|
8470
|
+
payOrderNo?: string;
|
|
8471
|
+
// 交易单号
|
|
8472
|
+
payTradeNo?: string;
|
|
8473
|
+
static names(): { [key: string]: string } {
|
|
8474
|
+
return {
|
|
8475
|
+
reqMsgId: 'req_msg_id',
|
|
8476
|
+
resultCode: 'result_code',
|
|
8477
|
+
resultMsg: 'result_msg',
|
|
8478
|
+
tradeNo: 'trade_no',
|
|
8479
|
+
orderStr: 'order_str',
|
|
8480
|
+
status: 'status',
|
|
8481
|
+
divideStatus: 'divide_status',
|
|
8482
|
+
payAmount: 'pay_amount',
|
|
8483
|
+
realPayAmount: 'real_pay_amount',
|
|
8484
|
+
realReceiptAmount: 'real_receipt_amount',
|
|
8485
|
+
payTime: 'pay_time',
|
|
8486
|
+
payOrderNo: 'pay_order_no',
|
|
8487
|
+
payTradeNo: 'pay_trade_no',
|
|
8488
|
+
};
|
|
8489
|
+
}
|
|
8490
|
+
|
|
8491
|
+
static types(): { [key: string]: any } {
|
|
8492
|
+
return {
|
|
8493
|
+
reqMsgId: 'string',
|
|
8494
|
+
resultCode: 'string',
|
|
8495
|
+
resultMsg: 'string',
|
|
8496
|
+
tradeNo: 'string',
|
|
8497
|
+
orderStr: 'string',
|
|
8498
|
+
status: 'string',
|
|
8499
|
+
divideStatus: 'string',
|
|
8500
|
+
payAmount: 'number',
|
|
8501
|
+
realPayAmount: 'number',
|
|
8502
|
+
realReceiptAmount: 'number',
|
|
8503
|
+
payTime: 'string',
|
|
8504
|
+
payOrderNo: 'string',
|
|
8505
|
+
payTradeNo: 'string',
|
|
8506
|
+
};
|
|
8507
|
+
}
|
|
8508
|
+
|
|
8509
|
+
constructor(map?: { [key: string]: any }) {
|
|
8510
|
+
super(map);
|
|
8511
|
+
}
|
|
8512
|
+
}
|
|
8513
|
+
|
|
8514
|
+
export class CreateOnetimeRefundRequest extends $tea.Model {
|
|
8515
|
+
// OAuth模式下的授权token
|
|
8516
|
+
authToken?: string;
|
|
8517
|
+
productInstanceId?: string;
|
|
8518
|
+
// 订单id
|
|
8519
|
+
orderId: string;
|
|
8520
|
+
// 外部系统传入的退款请求号
|
|
8521
|
+
refundRequestNo: string;
|
|
8522
|
+
// 本次请求的退款金额,单位为分
|
|
8523
|
+
// 1234=12.34元
|
|
8524
|
+
refundMoney: number;
|
|
8525
|
+
// 退款原因
|
|
8526
|
+
refundReason?: string;
|
|
8527
|
+
// 退分账信息列表(最多支持10家分账方退分账信息),金额单位分
|
|
8528
|
+
refundDivideTransOutInfoList?: string;
|
|
8529
|
+
static names(): { [key: string]: string } {
|
|
8530
|
+
return {
|
|
8531
|
+
authToken: 'auth_token',
|
|
8532
|
+
productInstanceId: 'product_instance_id',
|
|
8533
|
+
orderId: 'order_id',
|
|
8534
|
+
refundRequestNo: 'refund_request_no',
|
|
8535
|
+
refundMoney: 'refund_money',
|
|
8536
|
+
refundReason: 'refund_reason',
|
|
8537
|
+
refundDivideTransOutInfoList: 'refund_divide_trans_out_info_list',
|
|
8538
|
+
};
|
|
8539
|
+
}
|
|
8540
|
+
|
|
8541
|
+
static types(): { [key: string]: any } {
|
|
8542
|
+
return {
|
|
8543
|
+
authToken: 'string',
|
|
8544
|
+
productInstanceId: 'string',
|
|
8545
|
+
orderId: 'string',
|
|
8546
|
+
refundRequestNo: 'string',
|
|
8547
|
+
refundMoney: 'number',
|
|
8548
|
+
refundReason: 'string',
|
|
8549
|
+
refundDivideTransOutInfoList: 'string',
|
|
8550
|
+
};
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8553
|
+
constructor(map?: { [key: string]: any }) {
|
|
8554
|
+
super(map);
|
|
8555
|
+
}
|
|
8556
|
+
}
|
|
8557
|
+
|
|
8558
|
+
export class CreateOnetimeRefundResponse extends $tea.Model {
|
|
8559
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8560
|
+
reqMsgId?: string;
|
|
8561
|
+
// 结果码,一般OK表示调用成功
|
|
8562
|
+
resultCode?: string;
|
|
8563
|
+
// 异常信息的文本描述
|
|
8564
|
+
resultMsg?: string;
|
|
8565
|
+
// 外部系统传入的退款请求号
|
|
8566
|
+
refundRequestNo?: string;
|
|
8567
|
+
// 退款请求状态
|
|
8568
|
+
// ACCEPT: 受理成功
|
|
8569
|
+
status?: string;
|
|
8570
|
+
// 请求支付宝的退款单据号
|
|
8571
|
+
refundOrderNo?: string;
|
|
8572
|
+
// 支付宝交易单号
|
|
8573
|
+
tradeNo?: string;
|
|
8574
|
+
static names(): { [key: string]: string } {
|
|
8575
|
+
return {
|
|
8576
|
+
reqMsgId: 'req_msg_id',
|
|
8577
|
+
resultCode: 'result_code',
|
|
8578
|
+
resultMsg: 'result_msg',
|
|
8579
|
+
refundRequestNo: 'refund_request_no',
|
|
8580
|
+
status: 'status',
|
|
8581
|
+
refundOrderNo: 'refund_order_no',
|
|
8582
|
+
tradeNo: 'trade_no',
|
|
8583
|
+
};
|
|
8584
|
+
}
|
|
8585
|
+
|
|
8586
|
+
static types(): { [key: string]: any } {
|
|
8587
|
+
return {
|
|
8588
|
+
reqMsgId: 'string',
|
|
8589
|
+
resultCode: 'string',
|
|
8590
|
+
resultMsg: 'string',
|
|
8591
|
+
refundRequestNo: 'string',
|
|
8592
|
+
status: 'string',
|
|
8593
|
+
refundOrderNo: 'string',
|
|
8594
|
+
tradeNo: 'string',
|
|
8595
|
+
};
|
|
8596
|
+
}
|
|
8597
|
+
|
|
8598
|
+
constructor(map?: { [key: string]: any }) {
|
|
8599
|
+
super(map);
|
|
8600
|
+
}
|
|
8601
|
+
}
|
|
8602
|
+
|
|
8048
8603
|
export class QueryInnerFundassetpackagerepaymentRequest extends $tea.Model {
|
|
8049
8604
|
// OAuth模式下的授权token
|
|
8050
8605
|
authToken?: string;
|
|
8051
8606
|
productInstanceId?: string;
|
|
8052
|
-
// 资方租户ID
|
|
8053
|
-
fundTenantId: string;
|
|
8054
|
-
// 资产包ID
|
|
8055
|
-
assetPackageId?: string;
|
|
8056
|
-
// 商户名称
|
|
8057
|
-
merchantName?: string;
|
|
8058
|
-
// 放款起始时间
|
|
8059
|
-
loanTimeStart?: string;
|
|
8060
|
-
// 放款结束时间
|
|
8061
|
-
loanTimeEnd?: string;
|
|
8062
|
-
// 还款状态
|
|
8063
|
-
repaymentStatus?: string;
|
|
8064
|
-
// 分页信息
|
|
8065
|
-
pageInfo: PageQuery;
|
|
8066
|
-
// traceId
|
|
8067
|
-
traceId: string;
|
|
8607
|
+
// 资方租户ID
|
|
8608
|
+
fundTenantId: string;
|
|
8609
|
+
// 资产包ID
|
|
8610
|
+
assetPackageId?: string;
|
|
8611
|
+
// 商户名称
|
|
8612
|
+
merchantName?: string;
|
|
8613
|
+
// 放款起始时间
|
|
8614
|
+
loanTimeStart?: string;
|
|
8615
|
+
// 放款结束时间
|
|
8616
|
+
loanTimeEnd?: string;
|
|
8617
|
+
// 还款状态
|
|
8618
|
+
repaymentStatus?: string;
|
|
8619
|
+
// 分页信息
|
|
8620
|
+
pageInfo: PageQuery;
|
|
8621
|
+
// traceId
|
|
8622
|
+
traceId: string;
|
|
8623
|
+
static names(): { [key: string]: string } {
|
|
8624
|
+
return {
|
|
8625
|
+
authToken: 'auth_token',
|
|
8626
|
+
productInstanceId: 'product_instance_id',
|
|
8627
|
+
fundTenantId: 'fund_tenant_id',
|
|
8628
|
+
assetPackageId: 'asset_package_id',
|
|
8629
|
+
merchantName: 'merchant_name',
|
|
8630
|
+
loanTimeStart: 'loan_time_start',
|
|
8631
|
+
loanTimeEnd: 'loan_time_end',
|
|
8632
|
+
repaymentStatus: 'repayment_status',
|
|
8633
|
+
pageInfo: 'page_info',
|
|
8634
|
+
traceId: 'trace_id',
|
|
8635
|
+
};
|
|
8636
|
+
}
|
|
8637
|
+
|
|
8638
|
+
static types(): { [key: string]: any } {
|
|
8639
|
+
return {
|
|
8640
|
+
authToken: 'string',
|
|
8641
|
+
productInstanceId: 'string',
|
|
8642
|
+
fundTenantId: 'string',
|
|
8643
|
+
assetPackageId: 'string',
|
|
8644
|
+
merchantName: 'string',
|
|
8645
|
+
loanTimeStart: 'string',
|
|
8646
|
+
loanTimeEnd: 'string',
|
|
8647
|
+
repaymentStatus: 'string',
|
|
8648
|
+
pageInfo: PageQuery,
|
|
8649
|
+
traceId: 'string',
|
|
8650
|
+
};
|
|
8651
|
+
}
|
|
8652
|
+
|
|
8653
|
+
constructor(map?: { [key: string]: any }) {
|
|
8654
|
+
super(map);
|
|
8655
|
+
}
|
|
8656
|
+
}
|
|
8657
|
+
|
|
8658
|
+
export class QueryInnerFundassetpackagerepaymentResponse extends $tea.Model {
|
|
8659
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8660
|
+
reqMsgId?: string;
|
|
8661
|
+
// 结果码,一般OK表示调用成功
|
|
8662
|
+
resultCode?: string;
|
|
8663
|
+
// 异常信息的文本描述
|
|
8664
|
+
resultMsg?: string;
|
|
8665
|
+
// json 结构体
|
|
8666
|
+
data?: string;
|
|
8667
|
+
// 分页总数
|
|
8668
|
+
total?: number;
|
|
8669
|
+
static names(): { [key: string]: string } {
|
|
8670
|
+
return {
|
|
8671
|
+
reqMsgId: 'req_msg_id',
|
|
8672
|
+
resultCode: 'result_code',
|
|
8673
|
+
resultMsg: 'result_msg',
|
|
8674
|
+
data: 'data',
|
|
8675
|
+
total: 'total',
|
|
8676
|
+
};
|
|
8677
|
+
}
|
|
8678
|
+
|
|
8679
|
+
static types(): { [key: string]: any } {
|
|
8680
|
+
return {
|
|
8681
|
+
reqMsgId: 'string',
|
|
8682
|
+
resultCode: 'string',
|
|
8683
|
+
resultMsg: 'string',
|
|
8684
|
+
data: 'string',
|
|
8685
|
+
total: 'number',
|
|
8686
|
+
};
|
|
8687
|
+
}
|
|
8688
|
+
|
|
8689
|
+
constructor(map?: { [key: string]: any }) {
|
|
8690
|
+
super(map);
|
|
8691
|
+
}
|
|
8692
|
+
}
|
|
8693
|
+
|
|
8694
|
+
export class QueryInnerAprepaymentdetailRequest extends $tea.Model {
|
|
8695
|
+
// OAuth模式下的授权token
|
|
8696
|
+
authToken?: string;
|
|
8697
|
+
productInstanceId?: string;
|
|
8698
|
+
// 资方租户ID
|
|
8699
|
+
fundTenantId: string;
|
|
8700
|
+
// 资产包ID
|
|
8701
|
+
assetPacketId: string;
|
|
8702
|
+
// 链路追踪ID
|
|
8703
|
+
traceId: string;
|
|
8704
|
+
static names(): { [key: string]: string } {
|
|
8705
|
+
return {
|
|
8706
|
+
authToken: 'auth_token',
|
|
8707
|
+
productInstanceId: 'product_instance_id',
|
|
8708
|
+
fundTenantId: 'fund_tenant_id',
|
|
8709
|
+
assetPacketId: 'asset_packet_id',
|
|
8710
|
+
traceId: 'trace_id',
|
|
8711
|
+
};
|
|
8712
|
+
}
|
|
8713
|
+
|
|
8714
|
+
static types(): { [key: string]: any } {
|
|
8715
|
+
return {
|
|
8716
|
+
authToken: 'string',
|
|
8717
|
+
productInstanceId: 'string',
|
|
8718
|
+
fundTenantId: 'string',
|
|
8719
|
+
assetPacketId: 'string',
|
|
8720
|
+
traceId: 'string',
|
|
8721
|
+
};
|
|
8722
|
+
}
|
|
8723
|
+
|
|
8724
|
+
constructor(map?: { [key: string]: any }) {
|
|
8725
|
+
super(map);
|
|
8726
|
+
}
|
|
8727
|
+
}
|
|
8728
|
+
|
|
8729
|
+
export class QueryInnerAprepaymentdetailResponse extends $tea.Model {
|
|
8730
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8731
|
+
reqMsgId?: string;
|
|
8732
|
+
// 结果码,一般OK表示调用成功
|
|
8733
|
+
resultCode?: string;
|
|
8734
|
+
// 异常信息的文本描述
|
|
8735
|
+
resultMsg?: string;
|
|
8736
|
+
// 还款详情数据(JSON字符串)
|
|
8737
|
+
data?: string;
|
|
8738
|
+
static names(): { [key: string]: string } {
|
|
8739
|
+
return {
|
|
8740
|
+
reqMsgId: 'req_msg_id',
|
|
8741
|
+
resultCode: 'result_code',
|
|
8742
|
+
resultMsg: 'result_msg',
|
|
8743
|
+
data: 'data',
|
|
8744
|
+
};
|
|
8745
|
+
}
|
|
8746
|
+
|
|
8747
|
+
static types(): { [key: string]: any } {
|
|
8748
|
+
return {
|
|
8749
|
+
reqMsgId: 'string',
|
|
8750
|
+
resultCode: 'string',
|
|
8751
|
+
resultMsg: 'string',
|
|
8752
|
+
data: 'string',
|
|
8753
|
+
};
|
|
8754
|
+
}
|
|
8755
|
+
|
|
8756
|
+
constructor(map?: { [key: string]: any }) {
|
|
8757
|
+
super(map);
|
|
8758
|
+
}
|
|
8759
|
+
}
|
|
8760
|
+
|
|
8761
|
+
export class QueryInnerAprepaymentallocatedetailRequest extends $tea.Model {
|
|
8762
|
+
// OAuth模式下的授权token
|
|
8763
|
+
authToken?: string;
|
|
8764
|
+
productInstanceId?: string;
|
|
8765
|
+
// 资方租户id
|
|
8766
|
+
fundTenantId: string;
|
|
8767
|
+
// 资产包id
|
|
8768
|
+
assetPackageId: string;
|
|
8769
|
+
// 资方社会统一信用代码
|
|
8770
|
+
fundId: string;
|
|
8771
|
+
// 商户租户id
|
|
8772
|
+
tenantId: string;
|
|
8773
|
+
// 商户社会统一信用代码
|
|
8774
|
+
merchantId: string;
|
|
8775
|
+
// 账期
|
|
8776
|
+
periodNum: number;
|
|
8777
|
+
// traceId
|
|
8778
|
+
traceId: string;
|
|
8779
|
+
static names(): { [key: string]: string } {
|
|
8780
|
+
return {
|
|
8781
|
+
authToken: 'auth_token',
|
|
8782
|
+
productInstanceId: 'product_instance_id',
|
|
8783
|
+
fundTenantId: 'fund_tenant_id',
|
|
8784
|
+
assetPackageId: 'asset_package_id',
|
|
8785
|
+
fundId: 'fund_id',
|
|
8786
|
+
tenantId: 'tenant_id',
|
|
8787
|
+
merchantId: 'merchant_id',
|
|
8788
|
+
periodNum: 'period_num',
|
|
8789
|
+
traceId: 'trace_id',
|
|
8790
|
+
};
|
|
8791
|
+
}
|
|
8792
|
+
|
|
8793
|
+
static types(): { [key: string]: any } {
|
|
8794
|
+
return {
|
|
8795
|
+
authToken: 'string',
|
|
8796
|
+
productInstanceId: 'string',
|
|
8797
|
+
fundTenantId: 'string',
|
|
8798
|
+
assetPackageId: 'string',
|
|
8799
|
+
fundId: 'string',
|
|
8800
|
+
tenantId: 'string',
|
|
8801
|
+
merchantId: 'string',
|
|
8802
|
+
periodNum: 'number',
|
|
8803
|
+
traceId: 'string',
|
|
8804
|
+
};
|
|
8805
|
+
}
|
|
8806
|
+
|
|
8807
|
+
constructor(map?: { [key: string]: any }) {
|
|
8808
|
+
super(map);
|
|
8809
|
+
}
|
|
8810
|
+
}
|
|
8811
|
+
|
|
8812
|
+
export class QueryInnerAprepaymentallocatedetailResponse extends $tea.Model {
|
|
8813
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8814
|
+
reqMsgId?: string;
|
|
8815
|
+
// 结果码,一般OK表示调用成功
|
|
8816
|
+
resultCode?: string;
|
|
8817
|
+
// 异常信息的文本描述
|
|
8818
|
+
resultMsg?: string;
|
|
8819
|
+
// 资产包履约计划分配明细
|
|
8820
|
+
data?: AssetPackagePlanAllocateDetail[];
|
|
8821
|
+
static names(): { [key: string]: string } {
|
|
8822
|
+
return {
|
|
8823
|
+
reqMsgId: 'req_msg_id',
|
|
8824
|
+
resultCode: 'result_code',
|
|
8825
|
+
resultMsg: 'result_msg',
|
|
8826
|
+
data: 'data',
|
|
8827
|
+
};
|
|
8828
|
+
}
|
|
8829
|
+
|
|
8830
|
+
static types(): { [key: string]: any } {
|
|
8831
|
+
return {
|
|
8832
|
+
reqMsgId: 'string',
|
|
8833
|
+
resultCode: 'string',
|
|
8834
|
+
resultMsg: 'string',
|
|
8835
|
+
data: { 'type': 'array', 'itemType': AssetPackagePlanAllocateDetail },
|
|
8836
|
+
};
|
|
8837
|
+
}
|
|
8838
|
+
|
|
8839
|
+
constructor(map?: { [key: string]: any }) {
|
|
8840
|
+
super(map);
|
|
8841
|
+
}
|
|
8842
|
+
}
|
|
8843
|
+
|
|
8844
|
+
export class QueryInnerMermngdemoRequest extends $tea.Model {
|
|
8845
|
+
// OAuth模式下的授权token
|
|
8846
|
+
authToken?: string;
|
|
8847
|
+
productInstanceId?: string;
|
|
8848
|
+
// 租户id
|
|
8849
|
+
tenantId: string;
|
|
8068
8850
|
static names(): { [key: string]: string } {
|
|
8069
8851
|
return {
|
|
8070
8852
|
authToken: 'auth_token',
|
|
8071
8853
|
productInstanceId: 'product_instance_id',
|
|
8072
|
-
|
|
8073
|
-
assetPackageId: 'asset_package_id',
|
|
8074
|
-
merchantName: 'merchant_name',
|
|
8075
|
-
loanTimeStart: 'loan_time_start',
|
|
8076
|
-
loanTimeEnd: 'loan_time_end',
|
|
8077
|
-
repaymentStatus: 'repayment_status',
|
|
8078
|
-
pageInfo: 'page_info',
|
|
8079
|
-
traceId: 'trace_id',
|
|
8854
|
+
tenantId: 'tenant_id',
|
|
8080
8855
|
};
|
|
8081
8856
|
}
|
|
8082
8857
|
|
|
@@ -8084,14 +8859,7 @@ export class QueryInnerFundassetpackagerepaymentRequest extends $tea.Model {
|
|
|
8084
8859
|
return {
|
|
8085
8860
|
authToken: 'string',
|
|
8086
8861
|
productInstanceId: 'string',
|
|
8087
|
-
|
|
8088
|
-
assetPackageId: 'string',
|
|
8089
|
-
merchantName: 'string',
|
|
8090
|
-
loanTimeStart: 'string',
|
|
8091
|
-
loanTimeEnd: 'string',
|
|
8092
|
-
repaymentStatus: 'string',
|
|
8093
|
-
pageInfo: PageQuery,
|
|
8094
|
-
traceId: 'string',
|
|
8862
|
+
tenantId: 'string',
|
|
8095
8863
|
};
|
|
8096
8864
|
}
|
|
8097
8865
|
|
|
@@ -8100,24 +8868,21 @@ export class QueryInnerFundassetpackagerepaymentRequest extends $tea.Model {
|
|
|
8100
8868
|
}
|
|
8101
8869
|
}
|
|
8102
8870
|
|
|
8103
|
-
export class
|
|
8871
|
+
export class QueryInnerMermngdemoResponse extends $tea.Model {
|
|
8104
8872
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8105
8873
|
reqMsgId?: string;
|
|
8106
8874
|
// 结果码,一般OK表示调用成功
|
|
8107
8875
|
resultCode?: string;
|
|
8108
8876
|
// 异常信息的文本描述
|
|
8109
8877
|
resultMsg?: string;
|
|
8110
|
-
//
|
|
8111
|
-
|
|
8112
|
-
// 分页总数
|
|
8113
|
-
total?: number;
|
|
8878
|
+
// 公司名称
|
|
8879
|
+
merchantName?: string;
|
|
8114
8880
|
static names(): { [key: string]: string } {
|
|
8115
8881
|
return {
|
|
8116
8882
|
reqMsgId: 'req_msg_id',
|
|
8117
8883
|
resultCode: 'result_code',
|
|
8118
8884
|
resultMsg: 'result_msg',
|
|
8119
|
-
|
|
8120
|
-
total: 'total',
|
|
8885
|
+
merchantName: 'merchant_name',
|
|
8121
8886
|
};
|
|
8122
8887
|
}
|
|
8123
8888
|
|
|
@@ -8126,8 +8891,7 @@ export class QueryInnerFundassetpackagerepaymentResponse extends $tea.Model {
|
|
|
8126
8891
|
reqMsgId: 'string',
|
|
8127
8892
|
resultCode: 'string',
|
|
8128
8893
|
resultMsg: 'string',
|
|
8129
|
-
|
|
8130
|
-
total: 'number',
|
|
8894
|
+
merchantName: 'string',
|
|
8131
8895
|
};
|
|
8132
8896
|
}
|
|
8133
8897
|
|
|
@@ -8136,23 +8900,23 @@ export class QueryInnerFundassetpackagerepaymentResponse extends $tea.Model {
|
|
|
8136
8900
|
}
|
|
8137
8901
|
}
|
|
8138
8902
|
|
|
8139
|
-
export class
|
|
8903
|
+
export class QueryInnerMermngcontractextractRequest extends $tea.Model {
|
|
8140
8904
|
// OAuth模式下的授权token
|
|
8141
8905
|
authToken?: string;
|
|
8142
8906
|
productInstanceId?: string;
|
|
8143
|
-
//
|
|
8144
|
-
fundTenantId: string;
|
|
8145
|
-
// 资产包ID
|
|
8146
|
-
assetPacketId: string;
|
|
8147
|
-
// 链路追踪ID
|
|
8907
|
+
// traceid
|
|
8148
8908
|
traceId: string;
|
|
8909
|
+
// 商户租户id
|
|
8910
|
+
tenantId: string;
|
|
8911
|
+
// 任务id
|
|
8912
|
+
taskInstantId: string;
|
|
8149
8913
|
static names(): { [key: string]: string } {
|
|
8150
8914
|
return {
|
|
8151
8915
|
authToken: 'auth_token',
|
|
8152
8916
|
productInstanceId: 'product_instance_id',
|
|
8153
|
-
fundTenantId: 'fund_tenant_id',
|
|
8154
|
-
assetPacketId: 'asset_packet_id',
|
|
8155
8917
|
traceId: 'trace_id',
|
|
8918
|
+
tenantId: 'tenant_id',
|
|
8919
|
+
taskInstantId: 'task_instant_id',
|
|
8156
8920
|
};
|
|
8157
8921
|
}
|
|
8158
8922
|
|
|
@@ -8160,9 +8924,9 @@ export class QueryInnerAprepaymentdetailRequest extends $tea.Model {
|
|
|
8160
8924
|
return {
|
|
8161
8925
|
authToken: 'string',
|
|
8162
8926
|
productInstanceId: 'string',
|
|
8163
|
-
fundTenantId: 'string',
|
|
8164
|
-
assetPacketId: 'string',
|
|
8165
8927
|
traceId: 'string',
|
|
8928
|
+
tenantId: 'string',
|
|
8929
|
+
taskInstantId: 'string',
|
|
8166
8930
|
};
|
|
8167
8931
|
}
|
|
8168
8932
|
|
|
@@ -8171,21 +8935,33 @@ export class QueryInnerAprepaymentdetailRequest extends $tea.Model {
|
|
|
8171
8935
|
}
|
|
8172
8936
|
}
|
|
8173
8937
|
|
|
8174
|
-
export class
|
|
8938
|
+
export class QueryInnerMermngcontractextractResponse extends $tea.Model {
|
|
8175
8939
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8176
8940
|
reqMsgId?: string;
|
|
8177
8941
|
// 结果码,一般OK表示调用成功
|
|
8178
8942
|
resultCode?: string;
|
|
8179
8943
|
// 异常信息的文本描述
|
|
8180
8944
|
resultMsg?: string;
|
|
8181
|
-
//
|
|
8182
|
-
|
|
8945
|
+
// 任务code
|
|
8946
|
+
taskCode?: string;
|
|
8947
|
+
// 任务id
|
|
8948
|
+
taskInstantId?: string;
|
|
8949
|
+
// 业务id
|
|
8950
|
+
bizId?: string;
|
|
8951
|
+
// 任务实例状态 PROCESSING/SUCCESS/FAILED
|
|
8952
|
+
status?: string;
|
|
8953
|
+
// 提取结果
|
|
8954
|
+
extractResult?: string;
|
|
8183
8955
|
static names(): { [key: string]: string } {
|
|
8184
8956
|
return {
|
|
8185
8957
|
reqMsgId: 'req_msg_id',
|
|
8186
8958
|
resultCode: 'result_code',
|
|
8187
8959
|
resultMsg: 'result_msg',
|
|
8188
|
-
|
|
8960
|
+
taskCode: 'task_code',
|
|
8961
|
+
taskInstantId: 'task_instant_id',
|
|
8962
|
+
bizId: 'biz_id',
|
|
8963
|
+
status: 'status',
|
|
8964
|
+
extractResult: 'extract_result',
|
|
8189
8965
|
};
|
|
8190
8966
|
}
|
|
8191
8967
|
|
|
@@ -8194,7 +8970,11 @@ export class QueryInnerAprepaymentdetailResponse extends $tea.Model {
|
|
|
8194
8970
|
reqMsgId: 'string',
|
|
8195
8971
|
resultCode: 'string',
|
|
8196
8972
|
resultMsg: 'string',
|
|
8197
|
-
|
|
8973
|
+
taskCode: 'string',
|
|
8974
|
+
taskInstantId: 'string',
|
|
8975
|
+
bizId: 'string',
|
|
8976
|
+
status: 'string',
|
|
8977
|
+
extractResult: 'string',
|
|
8198
8978
|
};
|
|
8199
8979
|
}
|
|
8200
8980
|
|
|
@@ -8203,35 +8983,32 @@ export class QueryInnerAprepaymentdetailResponse extends $tea.Model {
|
|
|
8203
8983
|
}
|
|
8204
8984
|
}
|
|
8205
8985
|
|
|
8206
|
-
export class
|
|
8986
|
+
export class SumbitInnerMermngcontractextractRequest extends $tea.Model {
|
|
8207
8987
|
// OAuth模式下的授权token
|
|
8208
8988
|
authToken?: string;
|
|
8209
8989
|
productInstanceId?: string;
|
|
8210
|
-
//
|
|
8211
|
-
|
|
8212
|
-
// 资产包id
|
|
8213
|
-
assetPackageId: string;
|
|
8214
|
-
// 资方社会统一信用代码
|
|
8215
|
-
fundId: string;
|
|
8990
|
+
// traceid
|
|
8991
|
+
traceId: string;
|
|
8216
8992
|
// 商户租户id
|
|
8217
8993
|
tenantId: string;
|
|
8218
|
-
//
|
|
8219
|
-
|
|
8220
|
-
//
|
|
8221
|
-
|
|
8222
|
-
//
|
|
8223
|
-
|
|
8994
|
+
// code
|
|
8995
|
+
taskCode: string;
|
|
8996
|
+
// 业务id
|
|
8997
|
+
bizId: string;
|
|
8998
|
+
// 文件url
|
|
8999
|
+
fileUrl: string;
|
|
9000
|
+
// 额外参数
|
|
9001
|
+
bizParams?: string;
|
|
8224
9002
|
static names(): { [key: string]: string } {
|
|
8225
9003
|
return {
|
|
8226
9004
|
authToken: 'auth_token',
|
|
8227
9005
|
productInstanceId: 'product_instance_id',
|
|
8228
|
-
fundTenantId: 'fund_tenant_id',
|
|
8229
|
-
assetPackageId: 'asset_package_id',
|
|
8230
|
-
fundId: 'fund_id',
|
|
8231
|
-
tenantId: 'tenant_id',
|
|
8232
|
-
merchantId: 'merchant_id',
|
|
8233
|
-
periodNum: 'period_num',
|
|
8234
9006
|
traceId: 'trace_id',
|
|
9007
|
+
tenantId: 'tenant_id',
|
|
9008
|
+
taskCode: 'task_code',
|
|
9009
|
+
bizId: 'biz_id',
|
|
9010
|
+
fileUrl: 'file_url',
|
|
9011
|
+
bizParams: 'biz_params',
|
|
8235
9012
|
};
|
|
8236
9013
|
}
|
|
8237
9014
|
|
|
@@ -8239,13 +9016,12 @@ export class QueryInnerAprepaymentallocatedetailRequest extends $tea.Model {
|
|
|
8239
9016
|
return {
|
|
8240
9017
|
authToken: 'string',
|
|
8241
9018
|
productInstanceId: 'string',
|
|
8242
|
-
fundTenantId: 'string',
|
|
8243
|
-
assetPackageId: 'string',
|
|
8244
|
-
fundId: 'string',
|
|
8245
|
-
tenantId: 'string',
|
|
8246
|
-
merchantId: 'string',
|
|
8247
|
-
periodNum: 'number',
|
|
8248
9019
|
traceId: 'string',
|
|
9020
|
+
tenantId: 'string',
|
|
9021
|
+
taskCode: 'string',
|
|
9022
|
+
bizId: 'string',
|
|
9023
|
+
fileUrl: 'string',
|
|
9024
|
+
bizParams: 'string',
|
|
8249
9025
|
};
|
|
8250
9026
|
}
|
|
8251
9027
|
|
|
@@ -8254,21 +9030,21 @@ export class QueryInnerAprepaymentallocatedetailRequest extends $tea.Model {
|
|
|
8254
9030
|
}
|
|
8255
9031
|
}
|
|
8256
9032
|
|
|
8257
|
-
export class
|
|
9033
|
+
export class SumbitInnerMermngcontractextractResponse extends $tea.Model {
|
|
8258
9034
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8259
9035
|
reqMsgId?: string;
|
|
8260
9036
|
// 结果码,一般OK表示调用成功
|
|
8261
9037
|
resultCode?: string;
|
|
8262
9038
|
// 异常信息的文本描述
|
|
8263
9039
|
resultMsg?: string;
|
|
8264
|
-
//
|
|
8265
|
-
|
|
9040
|
+
// 任务id
|
|
9041
|
+
taskInstantId?: string;
|
|
8266
9042
|
static names(): { [key: string]: string } {
|
|
8267
9043
|
return {
|
|
8268
9044
|
reqMsgId: 'req_msg_id',
|
|
8269
9045
|
resultCode: 'result_code',
|
|
8270
9046
|
resultMsg: 'result_msg',
|
|
8271
|
-
|
|
9047
|
+
taskInstantId: 'task_instant_id',
|
|
8272
9048
|
};
|
|
8273
9049
|
}
|
|
8274
9050
|
|
|
@@ -8277,7 +9053,7 @@ export class QueryInnerAprepaymentallocatedetailResponse extends $tea.Model {
|
|
|
8277
9053
|
reqMsgId: 'string',
|
|
8278
9054
|
resultCode: 'string',
|
|
8279
9055
|
resultMsg: 'string',
|
|
8280
|
-
|
|
9056
|
+
taskInstantId: 'string',
|
|
8281
9057
|
};
|
|
8282
9058
|
}
|
|
8283
9059
|
|
|
@@ -26552,7 +27328,7 @@ export class CreateInnerWithholdjdsignurlRequest extends $tea.Model {
|
|
|
26552
27328
|
// 流程id
|
|
26553
27329
|
flowId: string;
|
|
26554
27330
|
// 签约人
|
|
26555
|
-
accountId
|
|
27331
|
+
accountId?: string;
|
|
26556
27332
|
static names(): { [key: string]: string } {
|
|
26557
27333
|
return {
|
|
26558
27334
|
authToken: 'auth_token',
|
|
@@ -32778,7 +33554,7 @@ export default class Client {
|
|
|
32778
33554
|
req_msg_id: AntchainUtil.getNonce(),
|
|
32779
33555
|
access_key: this._accessKeyId,
|
|
32780
33556
|
base_sdk_version: "TeaSDK-2.0",
|
|
32781
|
-
sdk_version: "1.19.
|
|
33557
|
+
sdk_version: "1.19.86",
|
|
32782
33558
|
_prod_code: "ATO",
|
|
32783
33559
|
_prod_channel: "undefined",
|
|
32784
33560
|
};
|
|
@@ -32910,6 +33686,165 @@ export default class Client {
|
|
|
32910
33686
|
return $tea.cast<QueryTradeSettletocardResponse>(await this.doRequest("1.0", "antchain.ato.trade.settletocard.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryTradeSettletocardResponse({}));
|
|
32911
33687
|
}
|
|
32912
33688
|
|
|
33689
|
+
/**
|
|
33690
|
+
* @remarks
|
|
33691
|
+
* Description: 一次性支付订单创建
|
|
33692
|
+
* 接口信息
|
|
33693
|
+
* Summary: 一次性支付订单创建
|
|
33694
|
+
* 接口信息
|
|
33695
|
+
*/
|
|
33696
|
+
async syncOnetimeOrder(request: SyncOnetimeOrderRequest): Promise<SyncOnetimeOrderResponse> {
|
|
33697
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33698
|
+
let headers : {[key: string ]: string} = { };
|
|
33699
|
+
return await this.syncOnetimeOrderEx(request, headers, runtime);
|
|
33700
|
+
}
|
|
33701
|
+
|
|
33702
|
+
/**
|
|
33703
|
+
* @remarks
|
|
33704
|
+
* Description: 一次性支付订单创建
|
|
33705
|
+
* 接口信息
|
|
33706
|
+
* Summary: 一次性支付订单创建
|
|
33707
|
+
* 接口信息
|
|
33708
|
+
*/
|
|
33709
|
+
async syncOnetimeOrderEx(request: SyncOnetimeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SyncOnetimeOrderResponse> {
|
|
33710
|
+
Util.validateModel(request);
|
|
33711
|
+
return $tea.cast<SyncOnetimeOrderResponse>(await this.doRequest("1.0", "antchain.ato.onetime.order.sync", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SyncOnetimeOrderResponse({}));
|
|
33712
|
+
}
|
|
33713
|
+
|
|
33714
|
+
/**
|
|
33715
|
+
* @remarks
|
|
33716
|
+
* Description: 一次性支付订单信息查询
|
|
33717
|
+
* Summary: 一次性支付订单信息查询
|
|
33718
|
+
*/
|
|
33719
|
+
async queryOnetimeOrder(request: QueryOnetimeOrderRequest): Promise<QueryOnetimeOrderResponse> {
|
|
33720
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33721
|
+
let headers : {[key: string ]: string} = { };
|
|
33722
|
+
return await this.queryOnetimeOrderEx(request, headers, runtime);
|
|
33723
|
+
}
|
|
33724
|
+
|
|
33725
|
+
/**
|
|
33726
|
+
* @remarks
|
|
33727
|
+
* Description: 一次性支付订单信息查询
|
|
33728
|
+
* Summary: 一次性支付订单信息查询
|
|
33729
|
+
*/
|
|
33730
|
+
async queryOnetimeOrderEx(request: QueryOnetimeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimeOrderResponse> {
|
|
33731
|
+
Util.validateModel(request);
|
|
33732
|
+
return $tea.cast<QueryOnetimeOrderResponse>(await this.doRequest("1.0", "antchain.ato.onetime.order.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryOnetimeOrderResponse({}));
|
|
33733
|
+
}
|
|
33734
|
+
|
|
33735
|
+
/**
|
|
33736
|
+
* @remarks
|
|
33737
|
+
* Description: 一次性支付订单资金流水信息查询
|
|
33738
|
+
* Summary: 一次性支付订单资金流水信息查询
|
|
33739
|
+
*/
|
|
33740
|
+
async queryOnetimePerformance(request: QueryOnetimePerformanceRequest): Promise<QueryOnetimePerformanceResponse> {
|
|
33741
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33742
|
+
let headers : {[key: string ]: string} = { };
|
|
33743
|
+
return await this.queryOnetimePerformanceEx(request, headers, runtime);
|
|
33744
|
+
}
|
|
33745
|
+
|
|
33746
|
+
/**
|
|
33747
|
+
* @remarks
|
|
33748
|
+
* Description: 一次性支付订单资金流水信息查询
|
|
33749
|
+
* Summary: 一次性支付订单资金流水信息查询
|
|
33750
|
+
*/
|
|
33751
|
+
async queryOnetimePerformanceEx(request: QueryOnetimePerformanceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimePerformanceResponse> {
|
|
33752
|
+
Util.validateModel(request);
|
|
33753
|
+
return $tea.cast<QueryOnetimePerformanceResponse>(await this.doRequest("1.0", "antchain.ato.onetime.performance.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryOnetimePerformanceResponse({}));
|
|
33754
|
+
}
|
|
33755
|
+
|
|
33756
|
+
/**
|
|
33757
|
+
* @remarks
|
|
33758
|
+
* Description: 一次性支付退款查询
|
|
33759
|
+
* 接口信息
|
|
33760
|
+
* Summary: 一次性支付退款查询
|
|
33761
|
+
* 接口信息
|
|
33762
|
+
*/
|
|
33763
|
+
async queryOnetimeRefund(request: QueryOnetimeRefundRequest): Promise<QueryOnetimeRefundResponse> {
|
|
33764
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33765
|
+
let headers : {[key: string ]: string} = { };
|
|
33766
|
+
return await this.queryOnetimeRefundEx(request, headers, runtime);
|
|
33767
|
+
}
|
|
33768
|
+
|
|
33769
|
+
/**
|
|
33770
|
+
* @remarks
|
|
33771
|
+
* Description: 一次性支付退款查询
|
|
33772
|
+
* 接口信息
|
|
33773
|
+
* Summary: 一次性支付退款查询
|
|
33774
|
+
* 接口信息
|
|
33775
|
+
*/
|
|
33776
|
+
async queryOnetimeRefundEx(request: QueryOnetimeRefundRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimeRefundResponse> {
|
|
33777
|
+
Util.validateModel(request);
|
|
33778
|
+
return $tea.cast<QueryOnetimeRefundResponse>(await this.doRequest("1.0", "antchain.ato.onetime.refund.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryOnetimeRefundResponse({}));
|
|
33779
|
+
}
|
|
33780
|
+
|
|
33781
|
+
/**
|
|
33782
|
+
* @remarks
|
|
33783
|
+
* Description: 一次性支付创建
|
|
33784
|
+
* Summary: 一次性支付创建
|
|
33785
|
+
*/
|
|
33786
|
+
async initOnetimeActivepay(request: InitOnetimeActivepayRequest): Promise<InitOnetimeActivepayResponse> {
|
|
33787
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33788
|
+
let headers : {[key: string ]: string} = { };
|
|
33789
|
+
return await this.initOnetimeActivepayEx(request, headers, runtime);
|
|
33790
|
+
}
|
|
33791
|
+
|
|
33792
|
+
/**
|
|
33793
|
+
* @remarks
|
|
33794
|
+
* Description: 一次性支付创建
|
|
33795
|
+
* Summary: 一次性支付创建
|
|
33796
|
+
*/
|
|
33797
|
+
async initOnetimeActivepayEx(request: InitOnetimeActivepayRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<InitOnetimeActivepayResponse> {
|
|
33798
|
+
Util.validateModel(request);
|
|
33799
|
+
return $tea.cast<InitOnetimeActivepayResponse>(await this.doRequest("1.0", "antchain.ato.onetime.activepay.init", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new InitOnetimeActivepayResponse({}));
|
|
33800
|
+
}
|
|
33801
|
+
|
|
33802
|
+
/**
|
|
33803
|
+
* @remarks
|
|
33804
|
+
* Description: 一次性支付查询
|
|
33805
|
+
* Summary: 一次性支付查询
|
|
33806
|
+
*/
|
|
33807
|
+
async queryOnetimeActivepay(request: QueryOnetimeActivepayRequest): Promise<QueryOnetimeActivepayResponse> {
|
|
33808
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33809
|
+
let headers : {[key: string ]: string} = { };
|
|
33810
|
+
return await this.queryOnetimeActivepayEx(request, headers, runtime);
|
|
33811
|
+
}
|
|
33812
|
+
|
|
33813
|
+
/**
|
|
33814
|
+
* @remarks
|
|
33815
|
+
* Description: 一次性支付查询
|
|
33816
|
+
* Summary: 一次性支付查询
|
|
33817
|
+
*/
|
|
33818
|
+
async queryOnetimeActivepayEx(request: QueryOnetimeActivepayRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryOnetimeActivepayResponse> {
|
|
33819
|
+
Util.validateModel(request);
|
|
33820
|
+
return $tea.cast<QueryOnetimeActivepayResponse>(await this.doRequest("1.0", "antchain.ato.onetime.activepay.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryOnetimeActivepayResponse({}));
|
|
33821
|
+
}
|
|
33822
|
+
|
|
33823
|
+
/**
|
|
33824
|
+
* @remarks
|
|
33825
|
+
* Description: 一次性支付退款创建
|
|
33826
|
+
* 接口信息
|
|
33827
|
+
* Summary: 一次性支付退款创建
|
|
33828
|
+
* 接口信息
|
|
33829
|
+
*/
|
|
33830
|
+
async createOnetimeRefund(request: CreateOnetimeRefundRequest): Promise<CreateOnetimeRefundResponse> {
|
|
33831
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33832
|
+
let headers : {[key: string ]: string} = { };
|
|
33833
|
+
return await this.createOnetimeRefundEx(request, headers, runtime);
|
|
33834
|
+
}
|
|
33835
|
+
|
|
33836
|
+
/**
|
|
33837
|
+
* @remarks
|
|
33838
|
+
* Description: 一次性支付退款创建
|
|
33839
|
+
* 接口信息
|
|
33840
|
+
* Summary: 一次性支付退款创建
|
|
33841
|
+
* 接口信息
|
|
33842
|
+
*/
|
|
33843
|
+
async createOnetimeRefundEx(request: CreateOnetimeRefundRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateOnetimeRefundResponse> {
|
|
33844
|
+
Util.validateModel(request);
|
|
33845
|
+
return $tea.cast<CreateOnetimeRefundResponse>(await this.doRequest("1.0", "antchain.ato.onetime.refund.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateOnetimeRefundResponse({}));
|
|
33846
|
+
}
|
|
33847
|
+
|
|
32913
33848
|
/**
|
|
32914
33849
|
* @remarks
|
|
32915
33850
|
* Description: 资产包还款列表查询
|
|
@@ -32973,6 +33908,69 @@ export default class Client {
|
|
|
32973
33908
|
return $tea.cast<QueryInnerAprepaymentallocatedetailResponse>(await this.doRequest("1.0", "antchain.ato.inner.aprepaymentallocatedetail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerAprepaymentallocatedetailResponse({}));
|
|
32974
33909
|
}
|
|
32975
33910
|
|
|
33911
|
+
/**
|
|
33912
|
+
* @remarks
|
|
33913
|
+
* Description: 商户管理demo接口
|
|
33914
|
+
* Summary: 商户管理demo接口
|
|
33915
|
+
*/
|
|
33916
|
+
async queryInnerMermngdemo(request: QueryInnerMermngdemoRequest): Promise<QueryInnerMermngdemoResponse> {
|
|
33917
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33918
|
+
let headers : {[key: string ]: string} = { };
|
|
33919
|
+
return await this.queryInnerMermngdemoEx(request, headers, runtime);
|
|
33920
|
+
}
|
|
33921
|
+
|
|
33922
|
+
/**
|
|
33923
|
+
* @remarks
|
|
33924
|
+
* Description: 商户管理demo接口
|
|
33925
|
+
* Summary: 商户管理demo接口
|
|
33926
|
+
*/
|
|
33927
|
+
async queryInnerMermngdemoEx(request: QueryInnerMermngdemoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngdemoResponse> {
|
|
33928
|
+
Util.validateModel(request);
|
|
33929
|
+
return $tea.cast<QueryInnerMermngdemoResponse>(await this.doRequest("1.0", "antchain.ato.inner.mermngdemo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerMermngdemoResponse({}));
|
|
33930
|
+
}
|
|
33931
|
+
|
|
33932
|
+
/**
|
|
33933
|
+
* @remarks
|
|
33934
|
+
* Description: 立场提取查询
|
|
33935
|
+
* Summary: 立场提取查询
|
|
33936
|
+
*/
|
|
33937
|
+
async queryInnerMermngcontractextract(request: QueryInnerMermngcontractextractRequest): Promise<QueryInnerMermngcontractextractResponse> {
|
|
33938
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33939
|
+
let headers : {[key: string ]: string} = { };
|
|
33940
|
+
return await this.queryInnerMermngcontractextractEx(request, headers, runtime);
|
|
33941
|
+
}
|
|
33942
|
+
|
|
33943
|
+
/**
|
|
33944
|
+
* @remarks
|
|
33945
|
+
* Description: 立场提取查询
|
|
33946
|
+
* Summary: 立场提取查询
|
|
33947
|
+
*/
|
|
33948
|
+
async queryInnerMermngcontractextractEx(request: QueryInnerMermngcontractextractRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngcontractextractResponse> {
|
|
33949
|
+
Util.validateModel(request);
|
|
33950
|
+
return $tea.cast<QueryInnerMermngcontractextractResponse>(await this.doRequest("1.0", "antchain.ato.inner.mermngcontractextract.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerMermngcontractextractResponse({}));
|
|
33951
|
+
}
|
|
33952
|
+
|
|
33953
|
+
/**
|
|
33954
|
+
* @remarks
|
|
33955
|
+
* Description: 合同立场提取
|
|
33956
|
+
* Summary: 合同立场提取
|
|
33957
|
+
*/
|
|
33958
|
+
async sumbitInnerMermngcontractextract(request: SumbitInnerMermngcontractextractRequest): Promise<SumbitInnerMermngcontractextractResponse> {
|
|
33959
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33960
|
+
let headers : {[key: string ]: string} = { };
|
|
33961
|
+
return await this.sumbitInnerMermngcontractextractEx(request, headers, runtime);
|
|
33962
|
+
}
|
|
33963
|
+
|
|
33964
|
+
/**
|
|
33965
|
+
* @remarks
|
|
33966
|
+
* Description: 合同立场提取
|
|
33967
|
+
* Summary: 合同立场提取
|
|
33968
|
+
*/
|
|
33969
|
+
async sumbitInnerMermngcontractextractEx(request: SumbitInnerMermngcontractextractRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SumbitInnerMermngcontractextractResponse> {
|
|
33970
|
+
Util.validateModel(request);
|
|
33971
|
+
return $tea.cast<SumbitInnerMermngcontractextractResponse>(await this.doRequest("1.0", "antchain.ato.inner.mermngcontractextract.sumbit", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SumbitInnerMermngcontractextractResponse({}));
|
|
33972
|
+
}
|
|
33973
|
+
|
|
32976
33974
|
/**
|
|
32977
33975
|
* @remarks
|
|
32978
33976
|
* Description: 数据提供方可以通过此接口传输数据,触达给消费方
|