tencentcloud-sdk-nodejs 4.0.300 → 4.0.301
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/CHANGELOG.md +71 -0
- package/SERVICE_CHANGELOG.md +93 -333
- package/package.json +1 -1
- package/products.md +4 -4
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_models.ts +12 -0
- package/src/services/ckafka/v20190819/ckafka_client.ts +44 -8
- package/src/services/ckafka/v20190819/ckafka_models.ts +123 -20
- package/src/services/cls/v20201016/cls_client.ts +1 -1
- package/src/services/cls/v20201016/cls_models.ts +5 -5
- package/src/services/cpdp/v20190820/cpdp_client.ts +66 -12
- package/src/services/cpdp/v20190820/cpdp_models.ts +957 -407
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +15 -3
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +21 -3
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +108 -19
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +5 -5
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +20 -4
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +28 -4
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +868 -393
- package/test/ckafka.v20190819.test.js +32 -2
- package/test/cpdp.v20190820.test.js +42 -2
|
@@ -472,6 +472,11 @@ export interface UploadOrgFileRequest {
|
|
|
472
472
|
*/
|
|
473
473
|
OpenId: string
|
|
474
474
|
|
|
475
|
+
/**
|
|
476
|
+
* 收单系统分配的密钥
|
|
477
|
+
*/
|
|
478
|
+
OpenKey: string
|
|
479
|
+
|
|
475
480
|
/**
|
|
476
481
|
* 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
|
|
477
482
|
*/
|
|
@@ -492,11 +497,6 @@ export interface UploadOrgFileRequest {
|
|
|
492
497
|
*/
|
|
493
498
|
FileExtension: string
|
|
494
499
|
|
|
495
|
-
/**
|
|
496
|
-
* 收单系统分配的密钥
|
|
497
|
-
*/
|
|
498
|
-
OpenKey: string
|
|
499
|
-
|
|
500
500
|
/**
|
|
501
501
|
* 沙箱环境填sandbox,正式环境不填
|
|
502
502
|
*/
|
|
@@ -902,12 +902,12 @@ __PROCESSING__: 进件中
|
|
|
902
902
|
*/
|
|
903
903
|
export interface RefundTlinxOrderRequest {
|
|
904
904
|
/**
|
|
905
|
-
*
|
|
905
|
+
* 使用门店OpenId
|
|
906
906
|
*/
|
|
907
907
|
OpenId: string
|
|
908
908
|
|
|
909
909
|
/**
|
|
910
|
-
*
|
|
910
|
+
* 使用门店OpenKey
|
|
911
911
|
*/
|
|
912
912
|
OpenKey: string
|
|
913
913
|
|
|
@@ -1219,6 +1219,35 @@ export interface CreateInvoiceResultData {
|
|
|
1219
1219
|
OrderSn: string
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
|
+
/**
|
|
1223
|
+
* 对账文件信息
|
|
1224
|
+
*/
|
|
1225
|
+
export interface FileItem {
|
|
1226
|
+
/**
|
|
1227
|
+
* STRING(256),文件名称
|
|
1228
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1229
|
+
*/
|
|
1230
|
+
FileName: string
|
|
1231
|
+
|
|
1232
|
+
/**
|
|
1233
|
+
* STRING(120),随机密码
|
|
1234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1235
|
+
*/
|
|
1236
|
+
RandomPassword: string
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* STRING(512),文件路径
|
|
1240
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1241
|
+
*/
|
|
1242
|
+
FilePath: string
|
|
1243
|
+
|
|
1244
|
+
/**
|
|
1245
|
+
* STRING(64),提取码
|
|
1246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1247
|
+
*/
|
|
1248
|
+
DrawCode: string
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1222
1251
|
/**
|
|
1223
1252
|
* UnbindOpenBankExternalSubMerchantBankAccount请求参数结构体
|
|
1224
1253
|
*/
|
|
@@ -2185,24 +2214,19 @@ export interface RevokeMemberRechargeThirdPayResponse {
|
|
|
2185
2214
|
*/
|
|
2186
2215
|
export interface DistributeAccreditTlinxRequest {
|
|
2187
2216
|
/**
|
|
2188
|
-
*
|
|
2217
|
+
* 使用门店OpenId
|
|
2189
2218
|
*/
|
|
2190
2219
|
OpenId: string
|
|
2191
2220
|
|
|
2192
2221
|
/**
|
|
2193
|
-
*
|
|
2194
|
-
*/
|
|
2195
|
-
AuthType: string
|
|
2196
|
-
|
|
2197
|
-
/**
|
|
2198
|
-
* 收单系统分配的密钥
|
|
2222
|
+
* 使用门店OpenKey
|
|
2199
2223
|
*/
|
|
2200
2224
|
OpenKey: string
|
|
2201
2225
|
|
|
2202
2226
|
/**
|
|
2203
|
-
*
|
|
2227
|
+
* 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
|
|
2204
2228
|
*/
|
|
2205
|
-
|
|
2229
|
+
AuthType: string
|
|
2206
2230
|
|
|
2207
2231
|
/**
|
|
2208
2232
|
* 分账比例(500=5%)不传默认百分之10
|
|
@@ -2213,6 +2237,11 @@ export interface DistributeAccreditTlinxRequest {
|
|
|
2213
2237
|
* 营业执照商户全称
|
|
2214
2238
|
*/
|
|
2215
2239
|
FullName?: string
|
|
2240
|
+
|
|
2241
|
+
/**
|
|
2242
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
2243
|
+
*/
|
|
2244
|
+
Profile?: string
|
|
2216
2245
|
}
|
|
2217
2246
|
|
|
2218
2247
|
/**
|
|
@@ -2293,24 +2322,24 @@ export interface QueryExceedingInfoResponse {
|
|
|
2293
2322
|
*/
|
|
2294
2323
|
export interface AddContractRequest {
|
|
2295
2324
|
/**
|
|
2296
|
-
*
|
|
2325
|
+
* 收单系统分配的开放ID
|
|
2297
2326
|
*/
|
|
2298
|
-
|
|
2327
|
+
OpenId: string
|
|
2299
2328
|
|
|
2300
2329
|
/**
|
|
2301
|
-
*
|
|
2330
|
+
* 收单系统分配的密钥
|
|
2302
2331
|
*/
|
|
2303
|
-
|
|
2332
|
+
OpenKey: string
|
|
2304
2333
|
|
|
2305
2334
|
/**
|
|
2306
|
-
*
|
|
2335
|
+
* 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
|
|
2307
2336
|
*/
|
|
2308
|
-
|
|
2337
|
+
OutContractId: string
|
|
2309
2338
|
|
|
2310
2339
|
/**
|
|
2311
|
-
*
|
|
2340
|
+
* 合同编号(系统有唯一性校验)
|
|
2312
2341
|
*/
|
|
2313
|
-
|
|
2342
|
+
Code: string
|
|
2314
2343
|
|
|
2315
2344
|
/**
|
|
2316
2345
|
* 支付方式编号
|
|
@@ -2318,9 +2347,24 @@ export interface AddContractRequest {
|
|
|
2318
2347
|
PaymentId: string
|
|
2319
2348
|
|
|
2320
2349
|
/**
|
|
2321
|
-
*
|
|
2350
|
+
* 支付方式行业分类编号
|
|
2322
2351
|
*/
|
|
2323
|
-
|
|
2352
|
+
PaymentClassificationId: string
|
|
2353
|
+
|
|
2354
|
+
/**
|
|
2355
|
+
* 封顶值(分为单位,无封顶填0)
|
|
2356
|
+
*/
|
|
2357
|
+
PaymentClassificationLimit: string
|
|
2358
|
+
|
|
2359
|
+
/**
|
|
2360
|
+
* 商户编号
|
|
2361
|
+
*/
|
|
2362
|
+
MerchantNo: string
|
|
2363
|
+
|
|
2364
|
+
/**
|
|
2365
|
+
* 签约扣率百分比(如:0.32)
|
|
2366
|
+
*/
|
|
2367
|
+
Fee: string
|
|
2324
2368
|
|
|
2325
2369
|
/**
|
|
2326
2370
|
* 合同生效日期(yyyy-mm-dd)
|
|
@@ -2343,19 +2387,14 @@ export interface AddContractRequest {
|
|
|
2343
2387
|
SignName: string
|
|
2344
2388
|
|
|
2345
2389
|
/**
|
|
2346
|
-
*
|
|
2347
|
-
*/
|
|
2348
|
-
OpenId: string
|
|
2349
|
-
|
|
2350
|
-
/**
|
|
2351
|
-
* 商户编号
|
|
2390
|
+
* 合同签署日期(yyyy-mm-dd)
|
|
2352
2391
|
*/
|
|
2353
|
-
|
|
2392
|
+
SignDate: string
|
|
2354
2393
|
|
|
2355
2394
|
/**
|
|
2356
|
-
*
|
|
2395
|
+
* 是否自动续签(1是,0否)
|
|
2357
2396
|
*/
|
|
2358
|
-
|
|
2397
|
+
AutoSign: string
|
|
2359
2398
|
|
|
2360
2399
|
/**
|
|
2361
2400
|
* 联系人
|
|
@@ -2363,24 +2402,24 @@ export interface AddContractRequest {
|
|
|
2363
2402
|
Contact: string
|
|
2364
2403
|
|
|
2365
2404
|
/**
|
|
2366
|
-
*
|
|
2405
|
+
* 联系人电话
|
|
2367
2406
|
*/
|
|
2368
|
-
|
|
2407
|
+
ContactTelephone: string
|
|
2369
2408
|
|
|
2370
2409
|
/**
|
|
2371
|
-
*
|
|
2410
|
+
* 合同照片【私密区】
|
|
2372
2411
|
*/
|
|
2373
|
-
|
|
2412
|
+
PictureOne: string
|
|
2374
2413
|
|
|
2375
2414
|
/**
|
|
2376
|
-
*
|
|
2415
|
+
* 合同照片【私密区】
|
|
2377
2416
|
*/
|
|
2378
|
-
|
|
2417
|
+
PictureTwo?: string
|
|
2379
2418
|
|
|
2380
2419
|
/**
|
|
2381
|
-
*
|
|
2420
|
+
* 渠道扩展字段,json格式
|
|
2382
2421
|
*/
|
|
2383
|
-
|
|
2422
|
+
ChannelExtJson?: string
|
|
2384
2423
|
|
|
2385
2424
|
/**
|
|
2386
2425
|
* 沙箱环境填sandbox,正式环境不填
|
|
@@ -2388,29 +2427,19 @@ export interface AddContractRequest {
|
|
|
2388
2427
|
Profile?: string
|
|
2389
2428
|
|
|
2390
2429
|
/**
|
|
2391
|
-
*
|
|
2392
|
-
*/
|
|
2393
|
-
PictureTwo?: string
|
|
2394
|
-
|
|
2395
|
-
/**
|
|
2396
|
-
* 合同选项8
|
|
2397
|
-
*/
|
|
2398
|
-
PaymentOptionTen?: string
|
|
2399
|
-
|
|
2400
|
-
/**
|
|
2401
|
-
* 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2430
|
+
* 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2402
2431
|
*/
|
|
2403
|
-
|
|
2432
|
+
PaymentOptionOne?: string
|
|
2404
2433
|
|
|
2405
2434
|
/**
|
|
2406
|
-
* 合同选项
|
|
2435
|
+
* 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2407
2436
|
*/
|
|
2408
|
-
|
|
2437
|
+
PaymentOptionTwo?: string
|
|
2409
2438
|
|
|
2410
2439
|
/**
|
|
2411
|
-
*
|
|
2440
|
+
* 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2412
2441
|
*/
|
|
2413
|
-
|
|
2442
|
+
PaymentOptionThree?: string
|
|
2414
2443
|
|
|
2415
2444
|
/**
|
|
2416
2445
|
* 合同选项4(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
@@ -2418,9 +2447,9 @@ export interface AddContractRequest {
|
|
|
2418
2447
|
PaymentOptionFour?: string
|
|
2419
2448
|
|
|
2420
2449
|
/**
|
|
2421
|
-
*
|
|
2450
|
+
* 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2422
2451
|
*/
|
|
2423
|
-
|
|
2452
|
+
PaymentOptionFive?: string
|
|
2424
2453
|
|
|
2425
2454
|
/**
|
|
2426
2455
|
* 合同证书选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
@@ -2428,24 +2457,24 @@ export interface AddContractRequest {
|
|
|
2428
2457
|
PaymentOptionSix?: string
|
|
2429
2458
|
|
|
2430
2459
|
/**
|
|
2431
|
-
* 合同选项
|
|
2460
|
+
* 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2432
2461
|
*/
|
|
2433
|
-
|
|
2462
|
+
PaymentOptionSeven?: string
|
|
2434
2463
|
|
|
2435
2464
|
/**
|
|
2436
|
-
* 合同选项
|
|
2465
|
+
* 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2437
2466
|
*/
|
|
2438
|
-
|
|
2467
|
+
PaymentOptionOther?: string
|
|
2439
2468
|
|
|
2440
2469
|
/**
|
|
2441
|
-
* 合同选项
|
|
2470
|
+
* 合同选项8
|
|
2442
2471
|
*/
|
|
2443
|
-
|
|
2472
|
+
PaymentOptionTen?: string
|
|
2444
2473
|
|
|
2445
2474
|
/**
|
|
2446
|
-
*
|
|
2475
|
+
* 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
|
|
2447
2476
|
*/
|
|
2448
|
-
|
|
2477
|
+
PaymentOptionNine?: string
|
|
2449
2478
|
}
|
|
2450
2479
|
|
|
2451
2480
|
/**
|
|
@@ -2473,12 +2502,12 @@ export interface CreateAcctResponse {
|
|
|
2473
2502
|
*/
|
|
2474
2503
|
export interface DistributeAddReceiverRequest {
|
|
2475
2504
|
/**
|
|
2476
|
-
*
|
|
2505
|
+
* 使用门店OpenId
|
|
2477
2506
|
*/
|
|
2478
2507
|
OpenId: string
|
|
2479
2508
|
|
|
2480
2509
|
/**
|
|
2481
|
-
*
|
|
2510
|
+
* 使用门店OpenKey
|
|
2482
2511
|
*/
|
|
2483
2512
|
OpenKey: string
|
|
2484
2513
|
|
|
@@ -2488,14 +2517,14 @@ export interface DistributeAddReceiverRequest {
|
|
|
2488
2517
|
MerchantNo: string
|
|
2489
2518
|
|
|
2490
2519
|
/**
|
|
2491
|
-
*
|
|
2520
|
+
* 备注
|
|
2492
2521
|
*/
|
|
2493
|
-
|
|
2522
|
+
Remark?: string
|
|
2494
2523
|
|
|
2495
2524
|
/**
|
|
2496
|
-
*
|
|
2525
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
2497
2526
|
*/
|
|
2498
|
-
|
|
2527
|
+
Profile?: string
|
|
2499
2528
|
}
|
|
2500
2529
|
|
|
2501
2530
|
/**
|
|
@@ -2707,6 +2736,85 @@ export interface QueryInvoiceResultData {
|
|
|
2707
2736
|
ImageUrl: string
|
|
2708
2737
|
}
|
|
2709
2738
|
|
|
2739
|
+
/**
|
|
2740
|
+
* 会员资金交易明细信息
|
|
2741
|
+
*/
|
|
2742
|
+
export interface FundsTransactionItem {
|
|
2743
|
+
/**
|
|
2744
|
+
* 资金交易类型。
|
|
2745
|
+
__1__:提现/退款
|
|
2746
|
+
__2__:清分/充值
|
|
2747
|
+
*/
|
|
2748
|
+
TransType: string
|
|
2749
|
+
|
|
2750
|
+
/**
|
|
2751
|
+
* 银行记账说明。
|
|
2752
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2753
|
+
*/
|
|
2754
|
+
BankBookingMessage: string
|
|
2755
|
+
|
|
2756
|
+
/**
|
|
2757
|
+
* 交易状态。
|
|
2758
|
+
__0__:成功
|
|
2759
|
+
*/
|
|
2760
|
+
TranStatus: string
|
|
2761
|
+
|
|
2762
|
+
/**
|
|
2763
|
+
* 业务方会员标识。
|
|
2764
|
+
_平安渠道为交易网会员代码_
|
|
2765
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2766
|
+
*/
|
|
2767
|
+
TransNetMemberCode: string
|
|
2768
|
+
|
|
2769
|
+
/**
|
|
2770
|
+
* 子账户账号。
|
|
2771
|
+
_平安渠道为见证子账户的账号_
|
|
2772
|
+
*/
|
|
2773
|
+
SubAccountNumber: string
|
|
2774
|
+
|
|
2775
|
+
/**
|
|
2776
|
+
* 子账户名称。
|
|
2777
|
+
_平安渠道为见证子账户的户名_
|
|
2778
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2779
|
+
*/
|
|
2780
|
+
SubAccountName: string
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* 交易金额。
|
|
2784
|
+
*/
|
|
2785
|
+
TransAmount: string
|
|
2786
|
+
|
|
2787
|
+
/**
|
|
2788
|
+
* 交易手续费。
|
|
2789
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2790
|
+
*/
|
|
2791
|
+
TransFee: string
|
|
2792
|
+
|
|
2793
|
+
/**
|
|
2794
|
+
* 交易日期,格式:yyyyMMdd。
|
|
2795
|
+
*/
|
|
2796
|
+
TransDate: string
|
|
2797
|
+
|
|
2798
|
+
/**
|
|
2799
|
+
* 交易时间,格式:HHmmss。
|
|
2800
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2801
|
+
*/
|
|
2802
|
+
TransTime: string
|
|
2803
|
+
|
|
2804
|
+
/**
|
|
2805
|
+
* 银行系统流水号。
|
|
2806
|
+
_平安渠道为见证系统流水号_
|
|
2807
|
+
*/
|
|
2808
|
+
BankSequenceNumber: string
|
|
2809
|
+
|
|
2810
|
+
/**
|
|
2811
|
+
* 备注。
|
|
2812
|
+
_平安渠道,如果是见证+收单的交易,返回交易订单号_
|
|
2813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2814
|
+
*/
|
|
2815
|
+
Remark: string
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2710
2818
|
/**
|
|
2711
2819
|
* AddMerchant返回参数结构体
|
|
2712
2820
|
*/
|
|
@@ -2856,11 +2964,6 @@ export interface ViewMerchantRequest {
|
|
|
2856
2964
|
*/
|
|
2857
2965
|
OpenKey: string
|
|
2858
2966
|
|
|
2859
|
-
/**
|
|
2860
|
-
* 沙箱环境填sandbox,正式环境不填
|
|
2861
|
-
*/
|
|
2862
|
-
Profile?: string
|
|
2863
|
-
|
|
2864
2967
|
/**
|
|
2865
2968
|
* 外部商户主键编号(MerchantNo或OutMerchantId必须传一个)
|
|
2866
2969
|
*/
|
|
@@ -2870,6 +2973,11 @@ export interface ViewMerchantRequest {
|
|
|
2870
2973
|
* 商户编号(MerchantNo或OutMerchantId必须传一个)
|
|
2871
2974
|
*/
|
|
2872
2975
|
MerchantNo?: string
|
|
2976
|
+
|
|
2977
|
+
/**
|
|
2978
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
2979
|
+
*/
|
|
2980
|
+
Profile?: string
|
|
2873
2981
|
}
|
|
2874
2982
|
|
|
2875
2983
|
/**
|
|
@@ -3568,12 +3676,12 @@ export interface CreateOpenBankMerchantResult {
|
|
|
3568
3676
|
*/
|
|
3569
3677
|
export interface DistributeQueryReceiverRequest {
|
|
3570
3678
|
/**
|
|
3571
|
-
*
|
|
3679
|
+
* 使用门店OpenId
|
|
3572
3680
|
*/
|
|
3573
3681
|
OpenId: string
|
|
3574
3682
|
|
|
3575
3683
|
/**
|
|
3576
|
-
*
|
|
3684
|
+
* 使用门店OpenKey
|
|
3577
3685
|
*/
|
|
3578
3686
|
OpenKey: string
|
|
3579
3687
|
|
|
@@ -5227,12 +5335,12 @@ export interface QueryExceedingInfoResult {
|
|
|
5227
5335
|
*/
|
|
5228
5336
|
export interface QueryMerchantPayWayListRequest {
|
|
5229
5337
|
/**
|
|
5230
|
-
*
|
|
5338
|
+
* 使用门店OpenId
|
|
5231
5339
|
*/
|
|
5232
5340
|
OpenId: string
|
|
5233
5341
|
|
|
5234
5342
|
/**
|
|
5235
|
-
*
|
|
5343
|
+
* 使用门店OpenKey
|
|
5236
5344
|
*/
|
|
5237
5345
|
OpenKey: string
|
|
5238
5346
|
|
|
@@ -5397,69 +5505,69 @@ export interface CreateInvoiceResponse {
|
|
|
5397
5505
|
*/
|
|
5398
5506
|
export interface AddMerchantRequest {
|
|
5399
5507
|
/**
|
|
5400
|
-
*
|
|
5508
|
+
* 收单系统分配的开放ID
|
|
5401
5509
|
*/
|
|
5402
|
-
|
|
5510
|
+
OpenId: string
|
|
5403
5511
|
|
|
5404
5512
|
/**
|
|
5405
|
-
*
|
|
5513
|
+
* 收单系统分配的密钥
|
|
5406
5514
|
*/
|
|
5407
|
-
|
|
5515
|
+
OpenKey: string
|
|
5408
5516
|
|
|
5409
5517
|
/**
|
|
5410
|
-
*
|
|
5518
|
+
* 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
|
|
5411
5519
|
*/
|
|
5412
|
-
|
|
5520
|
+
OutMerchantId: string
|
|
5413
5521
|
|
|
5414
5522
|
/**
|
|
5415
|
-
*
|
|
5523
|
+
* 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
|
|
5416
5524
|
*/
|
|
5417
|
-
|
|
5525
|
+
MerchantName: string
|
|
5418
5526
|
|
|
5419
5527
|
/**
|
|
5420
|
-
*
|
|
5528
|
+
* 营业执照类型(1三证合一,2非三证合一)
|
|
5421
5529
|
*/
|
|
5422
|
-
|
|
5530
|
+
BusinessLicenseType: string
|
|
5423
5531
|
|
|
5424
5532
|
/**
|
|
5425
|
-
*
|
|
5533
|
+
* 营业执照编号(系统有唯一性校验),(小微商户不效验,随意传要有值,公司/个体户必传)
|
|
5426
5534
|
*/
|
|
5427
|
-
|
|
5535
|
+
BusinessLicenseNo: string
|
|
5428
5536
|
|
|
5429
5537
|
/**
|
|
5430
|
-
*
|
|
5538
|
+
* 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
|
|
5431
5539
|
*/
|
|
5432
|
-
|
|
5540
|
+
BusinessLicensePicture: string
|
|
5433
5541
|
|
|
5434
5542
|
/**
|
|
5435
|
-
*
|
|
5543
|
+
* 营业执照生效时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
|
|
5436
5544
|
*/
|
|
5437
|
-
|
|
5545
|
+
BusinessLicenseStartDate: string
|
|
5438
5546
|
|
|
5439
5547
|
/**
|
|
5440
|
-
*
|
|
5548
|
+
* 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
|
|
5441
5549
|
*/
|
|
5442
|
-
|
|
5550
|
+
BusinessLicenseEndDate: string
|
|
5443
5551
|
|
|
5444
5552
|
/**
|
|
5445
|
-
*
|
|
5553
|
+
* 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
|
|
5446
5554
|
*/
|
|
5447
|
-
|
|
5555
|
+
ClassificationIds: Array<string>
|
|
5448
5556
|
|
|
5449
5557
|
/**
|
|
5450
|
-
*
|
|
5558
|
+
* 招牌名称
|
|
5451
5559
|
*/
|
|
5452
|
-
|
|
5560
|
+
BrandName: string
|
|
5453
5561
|
|
|
5454
5562
|
/**
|
|
5455
|
-
*
|
|
5563
|
+
* 联系电话
|
|
5456
5564
|
*/
|
|
5457
|
-
|
|
5565
|
+
Telephone: string
|
|
5458
5566
|
|
|
5459
5567
|
/**
|
|
5460
|
-
*
|
|
5568
|
+
* 城市编号
|
|
5461
5569
|
*/
|
|
5462
|
-
|
|
5570
|
+
CityId: string
|
|
5463
5571
|
|
|
5464
5572
|
/**
|
|
5465
5573
|
* 详细地址,不含省市区县名称,长度需要大于5。
|
|
@@ -5467,29 +5575,39 @@ export interface AddMerchantRequest {
|
|
|
5467
5575
|
Address: string
|
|
5468
5576
|
|
|
5469
5577
|
/**
|
|
5470
|
-
*
|
|
5578
|
+
* 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
|
|
5471
5579
|
*/
|
|
5472
|
-
|
|
5580
|
+
OpenHours: string
|
|
5473
5581
|
|
|
5474
5582
|
/**
|
|
5475
|
-
*
|
|
5583
|
+
* 结算账户类型(2对私,1对公)
|
|
5476
5584
|
*/
|
|
5477
|
-
|
|
5585
|
+
AccountType: string
|
|
5478
5586
|
|
|
5479
5587
|
/**
|
|
5480
|
-
*
|
|
5588
|
+
* 清算联行号,开户行行号
|
|
5481
5589
|
*/
|
|
5482
|
-
|
|
5590
|
+
BankNo: string
|
|
5483
5591
|
|
|
5484
5592
|
/**
|
|
5485
|
-
*
|
|
5593
|
+
* 开户行名称
|
|
5486
5594
|
*/
|
|
5487
|
-
|
|
5595
|
+
BankName: string
|
|
5488
5596
|
|
|
5489
5597
|
/**
|
|
5490
|
-
*
|
|
5598
|
+
* 银行账号
|
|
5491
5599
|
*/
|
|
5492
|
-
|
|
5600
|
+
AccountNo: string
|
|
5601
|
+
|
|
5602
|
+
/**
|
|
5603
|
+
* 银行户名
|
|
5604
|
+
*/
|
|
5605
|
+
AccountName: string
|
|
5606
|
+
|
|
5607
|
+
/**
|
|
5608
|
+
* 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
|
|
5609
|
+
*/
|
|
5610
|
+
BossIdType: string
|
|
5493
5611
|
|
|
5494
5612
|
/**
|
|
5495
5613
|
* 法人证件号码
|
|
@@ -5497,54 +5615,54 @@ export interface AddMerchantRequest {
|
|
|
5497
5615
|
BossIdNo: string
|
|
5498
5616
|
|
|
5499
5617
|
/**
|
|
5500
|
-
*
|
|
5618
|
+
* 法人姓名
|
|
5501
5619
|
*/
|
|
5502
|
-
|
|
5620
|
+
BossName: string
|
|
5503
5621
|
|
|
5504
5622
|
/**
|
|
5505
|
-
*
|
|
5623
|
+
* 法人性别(1男,2女)
|
|
5506
5624
|
*/
|
|
5507
|
-
|
|
5625
|
+
BossSex: string
|
|
5508
5626
|
|
|
5509
5627
|
/**
|
|
5510
|
-
*
|
|
5628
|
+
* 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
|
|
5511
5629
|
*/
|
|
5512
|
-
|
|
5630
|
+
BossIdCountry: string
|
|
5513
5631
|
|
|
5514
5632
|
/**
|
|
5515
|
-
*
|
|
5633
|
+
* 法人身份证正面【私密区】(系统返回的图片路径)
|
|
5516
5634
|
*/
|
|
5517
|
-
|
|
5635
|
+
BossPositive: string
|
|
5518
5636
|
|
|
5519
5637
|
/**
|
|
5520
|
-
*
|
|
5638
|
+
* 法人身份证背面【私密区】(系统返回的图片路径)
|
|
5521
5639
|
*/
|
|
5522
|
-
|
|
5640
|
+
BossBack: string
|
|
5523
5641
|
|
|
5524
5642
|
/**
|
|
5525
|
-
*
|
|
5643
|
+
* 法人证件生效时间(yyyy-mm-dd)
|
|
5526
5644
|
*/
|
|
5527
|
-
|
|
5645
|
+
BossStartDate: string
|
|
5528
5646
|
|
|
5529
5647
|
/**
|
|
5530
|
-
*
|
|
5648
|
+
* 法人证件过期时间(yyyy-mm-dd)
|
|
5531
5649
|
*/
|
|
5532
|
-
|
|
5650
|
+
BossEndDate: string
|
|
5533
5651
|
|
|
5534
5652
|
/**
|
|
5535
|
-
*
|
|
5653
|
+
* 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
|
|
5536
5654
|
*/
|
|
5537
|
-
|
|
5655
|
+
LicencePicture: string
|
|
5538
5656
|
|
|
5539
5657
|
/**
|
|
5540
|
-
*
|
|
5658
|
+
* 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
|
|
5541
5659
|
*/
|
|
5542
|
-
|
|
5660
|
+
Type?: string
|
|
5543
5661
|
|
|
5544
5662
|
/**
|
|
5545
|
-
*
|
|
5663
|
+
* 组织机构代码证号
|
|
5546
5664
|
*/
|
|
5547
|
-
|
|
5665
|
+
OrganizationNo?: string
|
|
5548
5666
|
|
|
5549
5667
|
/**
|
|
5550
5668
|
* 组织机构代码证生效时间(yyyy-mm-dd)
|
|
@@ -5552,29 +5670,29 @@ export interface AddMerchantRequest {
|
|
|
5552
5670
|
OrganizationStartDate?: string
|
|
5553
5671
|
|
|
5554
5672
|
/**
|
|
5555
|
-
*
|
|
5673
|
+
* 组织机构代码证图片【私密区】
|
|
5556
5674
|
*/
|
|
5557
|
-
|
|
5675
|
+
OrganizationPicture?: string
|
|
5558
5676
|
|
|
5559
5677
|
/**
|
|
5560
|
-
*
|
|
5678
|
+
* 组织机构代码证过期时间(yyyy-mm-dd)
|
|
5561
5679
|
*/
|
|
5562
|
-
|
|
5680
|
+
OrganizationEndDate?: string
|
|
5563
5681
|
|
|
5564
5682
|
/**
|
|
5565
|
-
*
|
|
5683
|
+
* 商户简介
|
|
5566
5684
|
*/
|
|
5567
|
-
|
|
5685
|
+
Intro?: string
|
|
5568
5686
|
|
|
5569
5687
|
/**
|
|
5570
|
-
*
|
|
5688
|
+
* 商户logo【公共区】
|
|
5571
5689
|
*/
|
|
5572
|
-
|
|
5690
|
+
Logo?: string
|
|
5573
5691
|
|
|
5574
5692
|
/**
|
|
5575
|
-
*
|
|
5693
|
+
* 商户标记,自定义参数
|
|
5576
5694
|
*/
|
|
5577
|
-
|
|
5695
|
+
Tag?: string
|
|
5578
5696
|
|
|
5579
5697
|
/**
|
|
5580
5698
|
* 财务联系人电话
|
|
@@ -5582,14 +5700,19 @@ export interface AddMerchantRequest {
|
|
|
5582
5700
|
FinancialTelephone?: string
|
|
5583
5701
|
|
|
5584
5702
|
/**
|
|
5585
|
-
*
|
|
5703
|
+
* 财务联系人
|
|
5586
5704
|
*/
|
|
5587
|
-
|
|
5705
|
+
FinancialContact?: string
|
|
5588
5706
|
|
|
5589
5707
|
/**
|
|
5590
|
-
*
|
|
5708
|
+
* 税务登记证号
|
|
5591
5709
|
*/
|
|
5592
|
-
|
|
5710
|
+
TaxRegistrationNo?: string
|
|
5711
|
+
|
|
5712
|
+
/**
|
|
5713
|
+
* 税务登记证图片【私密区】
|
|
5714
|
+
*/
|
|
5715
|
+
TaxRegistrationPicture?: string
|
|
5593
5716
|
|
|
5594
5717
|
/**
|
|
5595
5718
|
* 税务登记证生效时间(yyyy-mm-dd)
|
|
@@ -5597,9 +5720,9 @@ export interface AddMerchantRequest {
|
|
|
5597
5720
|
TaxRegistrationStartDate?: string
|
|
5598
5721
|
|
|
5599
5722
|
/**
|
|
5600
|
-
*
|
|
5723
|
+
* 税务登记证过期时间(yyyy-mm-dd)
|
|
5601
5724
|
*/
|
|
5602
|
-
|
|
5725
|
+
TaxRegistrationEndDate?: string
|
|
5603
5726
|
|
|
5604
5727
|
/**
|
|
5605
5728
|
* 结算账户人身份(1法人,2法人亲属),结算帐户为对私时必填
|
|
@@ -5607,19 +5730,14 @@ export interface AddMerchantRequest {
|
|
|
5607
5730
|
AccountBoss?: string
|
|
5608
5731
|
|
|
5609
5732
|
/**
|
|
5610
|
-
*
|
|
5611
|
-
*/
|
|
5612
|
-
BossTelephone?: string
|
|
5613
|
-
|
|
5614
|
-
/**
|
|
5615
|
-
* 税务登记证图片【私密区】
|
|
5733
|
+
* 客户经理姓名,必须为系统后台的管理员真实姓名
|
|
5616
5734
|
*/
|
|
5617
|
-
|
|
5735
|
+
AccountManagerName?: string
|
|
5618
5736
|
|
|
5619
5737
|
/**
|
|
5620
|
-
*
|
|
5738
|
+
* 法人电话
|
|
5621
5739
|
*/
|
|
5622
|
-
|
|
5740
|
+
BossTelephone?: string
|
|
5623
5741
|
|
|
5624
5742
|
/**
|
|
5625
5743
|
* 法人职业
|
|
@@ -5627,19 +5745,9 @@ export interface AddMerchantRequest {
|
|
|
5627
5745
|
BossJob?: string
|
|
5628
5746
|
|
|
5629
5747
|
/**
|
|
5630
|
-
*
|
|
5631
|
-
*/
|
|
5632
|
-
OtherPictureThree?: string
|
|
5633
|
-
|
|
5634
|
-
/**
|
|
5635
|
-
* 授权文件【私密区】
|
|
5636
|
-
*/
|
|
5637
|
-
LicencePictureTwo?: string
|
|
5638
|
-
|
|
5639
|
-
/**
|
|
5640
|
-
* 商户logo【公共区】
|
|
5748
|
+
* 法人邮箱
|
|
5641
5749
|
*/
|
|
5642
|
-
|
|
5750
|
+
BossEmail?: string
|
|
5643
5751
|
|
|
5644
5752
|
/**
|
|
5645
5753
|
* 法人住址
|
|
@@ -5647,44 +5755,44 @@ export interface AddMerchantRequest {
|
|
|
5647
5755
|
BossAddress?: string
|
|
5648
5756
|
|
|
5649
5757
|
/**
|
|
5650
|
-
*
|
|
5758
|
+
* 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
|
|
5651
5759
|
*/
|
|
5652
|
-
|
|
5760
|
+
AccountIdType?: string
|
|
5653
5761
|
|
|
5654
5762
|
/**
|
|
5655
|
-
*
|
|
5763
|
+
* 法人亲属证件号码
|
|
5656
5764
|
*/
|
|
5657
|
-
|
|
5765
|
+
AccountIdNo?: string
|
|
5658
5766
|
|
|
5659
5767
|
/**
|
|
5660
|
-
*
|
|
5768
|
+
* 授权文件【私密区】
|
|
5661
5769
|
*/
|
|
5662
|
-
|
|
5770
|
+
LicencePictureTwo?: string
|
|
5663
5771
|
|
|
5664
5772
|
/**
|
|
5665
|
-
*
|
|
5773
|
+
* 其他资料1
|
|
5666
5774
|
*/
|
|
5667
|
-
|
|
5775
|
+
OtherPictureOne?: string
|
|
5668
5776
|
|
|
5669
5777
|
/**
|
|
5670
|
-
*
|
|
5778
|
+
* 其他资料2
|
|
5671
5779
|
*/
|
|
5672
|
-
|
|
5780
|
+
OtherPictureTwo?: string
|
|
5673
5781
|
|
|
5674
5782
|
/**
|
|
5675
|
-
* 其他资料
|
|
5783
|
+
* 其他资料3
|
|
5676
5784
|
*/
|
|
5677
|
-
|
|
5785
|
+
OtherPictureThree?: string
|
|
5678
5786
|
|
|
5679
5787
|
/**
|
|
5680
|
-
*
|
|
5788
|
+
* 其他资料4
|
|
5681
5789
|
*/
|
|
5682
|
-
|
|
5790
|
+
OtherPictureFour?: string
|
|
5683
5791
|
|
|
5684
5792
|
/**
|
|
5685
|
-
*
|
|
5793
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
5686
5794
|
*/
|
|
5687
|
-
|
|
5795
|
+
Profile?: string
|
|
5688
5796
|
}
|
|
5689
5797
|
|
|
5690
5798
|
/**
|
|
@@ -6433,6 +6541,25 @@ export interface CreateAgentTaxPaymentInfosRequest {
|
|
|
6433
6541
|
Profile?: string
|
|
6434
6542
|
}
|
|
6435
6543
|
|
|
6544
|
+
/**
|
|
6545
|
+
* QueryReconciliationFileApplyInfo请求参数结构体
|
|
6546
|
+
*/
|
|
6547
|
+
export interface QueryReconciliationFileApplyInfoRequest {
|
|
6548
|
+
/**
|
|
6549
|
+
* 申请对账文件的任务ID。
|
|
6550
|
+
*/
|
|
6551
|
+
ApplyFileId: string
|
|
6552
|
+
|
|
6553
|
+
/**
|
|
6554
|
+
* 环境名。
|
|
6555
|
+
__release__: 现网环境
|
|
6556
|
+
__sandbox__: 沙箱环境
|
|
6557
|
+
__development__: 开发环境
|
|
6558
|
+
_缺省: release_
|
|
6559
|
+
*/
|
|
6560
|
+
MidasEnvironment?: string
|
|
6561
|
+
}
|
|
6562
|
+
|
|
6436
6563
|
/**
|
|
6437
6564
|
* QueryBillDownloadURL返回参数结构体
|
|
6438
6565
|
*/
|
|
@@ -6707,12 +6834,12 @@ export interface RefundOrderResponse {
|
|
|
6707
6834
|
*/
|
|
6708
6835
|
export interface QueryOrderStatusRequest {
|
|
6709
6836
|
/**
|
|
6710
|
-
*
|
|
6837
|
+
* 使用门店OpenId
|
|
6711
6838
|
*/
|
|
6712
6839
|
OpenId: string
|
|
6713
6840
|
|
|
6714
6841
|
/**
|
|
6715
|
-
*
|
|
6842
|
+
* 使用门店OpenKey
|
|
6716
6843
|
*/
|
|
6717
6844
|
OpenKey: string
|
|
6718
6845
|
|
|
@@ -7047,6 +7174,34 @@ export interface UploadTaxListResponse {
|
|
|
7047
7174
|
RequestId?: string
|
|
7048
7175
|
}
|
|
7049
7176
|
|
|
7177
|
+
/**
|
|
7178
|
+
* QueryReconciliationFileApplyInfo返回参数结构体
|
|
7179
|
+
*/
|
|
7180
|
+
export interface QueryReconciliationFileApplyInfoResponse {
|
|
7181
|
+
/**
|
|
7182
|
+
* 错误码。
|
|
7183
|
+
__SUCCESS__: 成功
|
|
7184
|
+
__其他__: 见附录-错误码表
|
|
7185
|
+
*/
|
|
7186
|
+
ErrCode: string
|
|
7187
|
+
|
|
7188
|
+
/**
|
|
7189
|
+
* 错误消息。
|
|
7190
|
+
*/
|
|
7191
|
+
ErrMessage: string
|
|
7192
|
+
|
|
7193
|
+
/**
|
|
7194
|
+
* 返回结果。
|
|
7195
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7196
|
+
*/
|
|
7197
|
+
Result: QueryReconciliationFileApplyInfoResult
|
|
7198
|
+
|
|
7199
|
+
/**
|
|
7200
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7201
|
+
*/
|
|
7202
|
+
RequestId?: string
|
|
7203
|
+
}
|
|
7204
|
+
|
|
7050
7205
|
/**
|
|
7051
7206
|
* BindRelateAcctUnionPay请求参数结构体
|
|
7052
7207
|
*/
|
|
@@ -7118,32 +7273,33 @@ export interface BindRelateAcctUnionPayRequest {
|
|
|
7118
7273
|
}
|
|
7119
7274
|
|
|
7120
7275
|
/**
|
|
7121
|
-
*
|
|
7276
|
+
* 查询会员资金交易信息列表结果
|
|
7122
7277
|
*/
|
|
7123
|
-
export interface
|
|
7278
|
+
export interface QueryFundsTransactionDetailsResult {
|
|
7124
7279
|
/**
|
|
7125
|
-
|
|
7126
|
-
|
|
7127
|
-
|
|
7128
|
-
FileName: string
|
|
7280
|
+
* 本次交易返回查询结果记录数。
|
|
7281
|
+
*/
|
|
7282
|
+
ResultCount: number
|
|
7129
7283
|
|
|
7130
7284
|
/**
|
|
7131
|
-
*
|
|
7285
|
+
* 符合业务查询条件的记录总数。
|
|
7132
7286
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7133
7287
|
*/
|
|
7134
|
-
|
|
7288
|
+
TotalCount: number
|
|
7135
7289
|
|
|
7136
7290
|
/**
|
|
7137
|
-
*
|
|
7291
|
+
* 结束标志。
|
|
7292
|
+
__0__:否
|
|
7293
|
+
__1__:是
|
|
7138
7294
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7139
7295
|
*/
|
|
7140
|
-
|
|
7296
|
+
EndFlag: string
|
|
7141
7297
|
|
|
7142
7298
|
/**
|
|
7143
|
-
*
|
|
7299
|
+
* 会员资金交易信息数组。
|
|
7144
7300
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7145
7301
|
*/
|
|
7146
|
-
|
|
7302
|
+
TranItemArray: Array<FundsTransactionItem>
|
|
7147
7303
|
}
|
|
7148
7304
|
|
|
7149
7305
|
/**
|
|
@@ -7288,24 +7444,19 @@ export interface QueryMerchantInfoForManagementRequest {
|
|
|
7288
7444
|
*/
|
|
7289
7445
|
export interface UnifiedTlinxOrderRequest {
|
|
7290
7446
|
/**
|
|
7291
|
-
*
|
|
7292
|
-
*/
|
|
7293
|
-
DeveloperNo: string
|
|
7294
|
-
|
|
7295
|
-
/**
|
|
7296
|
-
* 收单系统分配的开放ID
|
|
7447
|
+
* 使用门店OpenId
|
|
7297
7448
|
*/
|
|
7298
7449
|
OpenId: string
|
|
7299
7450
|
|
|
7300
7451
|
/**
|
|
7301
|
-
*
|
|
7452
|
+
* 使用门店OpenKey
|
|
7302
7453
|
*/
|
|
7303
|
-
|
|
7454
|
+
OpenKey: string
|
|
7304
7455
|
|
|
7305
7456
|
/**
|
|
7306
|
-
*
|
|
7457
|
+
* 开发者流水号
|
|
7307
7458
|
*/
|
|
7308
|
-
|
|
7459
|
+
DeveloperNo: string
|
|
7309
7460
|
|
|
7310
7461
|
/**
|
|
7311
7462
|
* 支付标签
|
|
@@ -7318,24 +7469,24 @@ export interface UnifiedTlinxOrderRequest {
|
|
|
7318
7469
|
TradeAmount: string
|
|
7319
7470
|
|
|
7320
7471
|
/**
|
|
7321
|
-
*
|
|
7472
|
+
* 交易结果异步通知url地址
|
|
7322
7473
|
*/
|
|
7323
|
-
|
|
7474
|
+
NotifyUrl: string
|
|
7324
7475
|
|
|
7325
7476
|
/**
|
|
7326
|
-
*
|
|
7477
|
+
* 付款方式名称(当PayTag为Diy时,PayName不能为空)
|
|
7327
7478
|
*/
|
|
7328
|
-
|
|
7479
|
+
PayName?: string
|
|
7329
7480
|
|
|
7330
7481
|
/**
|
|
7331
|
-
*
|
|
7482
|
+
* 公众号支付时,支付成功后跳转url地址
|
|
7332
7483
|
*/
|
|
7333
|
-
|
|
7484
|
+
JumpUrl?: string
|
|
7334
7485
|
|
|
7335
7486
|
/**
|
|
7336
|
-
*
|
|
7487
|
+
* 订单名称(描述)
|
|
7337
7488
|
*/
|
|
7338
|
-
|
|
7489
|
+
OrderName?: string
|
|
7339
7490
|
|
|
7340
7491
|
/**
|
|
7341
7492
|
* 原始交易金额(以分为单位,没有小数点)
|
|
@@ -7343,44 +7494,44 @@ export interface UnifiedTlinxOrderRequest {
|
|
|
7343
7494
|
OriginalAmount?: string
|
|
7344
7495
|
|
|
7345
7496
|
/**
|
|
7346
|
-
*
|
|
7497
|
+
* 抹零金额(以分为单位,没有小数点)
|
|
7347
7498
|
*/
|
|
7348
|
-
|
|
7499
|
+
IgnoreAmount?: string
|
|
7349
7500
|
|
|
7350
7501
|
/**
|
|
7351
|
-
*
|
|
7502
|
+
* 折扣金额(以分为单位,没有小数点)
|
|
7352
7503
|
*/
|
|
7353
|
-
|
|
7504
|
+
DiscountAmount?: string
|
|
7354
7505
|
|
|
7355
7506
|
/**
|
|
7356
|
-
*
|
|
7507
|
+
* 交易帐号(银行卡号)
|
|
7357
7508
|
*/
|
|
7358
|
-
|
|
7509
|
+
TradeAccount?: string
|
|
7359
7510
|
|
|
7360
7511
|
/**
|
|
7361
|
-
*
|
|
7512
|
+
* 交易号(收单机构交易号)
|
|
7362
7513
|
*/
|
|
7363
|
-
|
|
7514
|
+
TradeNo?: string
|
|
7364
7515
|
|
|
7365
7516
|
/**
|
|
7366
|
-
*
|
|
7517
|
+
* 条码支付的授权码(条码抢扫手机扫到的一串数字)
|
|
7367
7518
|
*/
|
|
7368
|
-
|
|
7519
|
+
AuthCode?: string
|
|
7369
7520
|
|
|
7370
7521
|
/**
|
|
7371
|
-
*
|
|
7522
|
+
* 订单标记,订单附加数据。
|
|
7372
7523
|
*/
|
|
7373
|
-
|
|
7524
|
+
Tag?: string
|
|
7374
7525
|
|
|
7375
7526
|
/**
|
|
7376
|
-
*
|
|
7527
|
+
* 订单备注
|
|
7377
7528
|
*/
|
|
7378
|
-
|
|
7529
|
+
Remark?: string
|
|
7379
7530
|
|
|
7380
7531
|
/**
|
|
7381
|
-
*
|
|
7532
|
+
* 收单机构原始交易报文,请转换为json
|
|
7382
7533
|
*/
|
|
7383
|
-
|
|
7534
|
+
TradeResult?: string
|
|
7384
7535
|
|
|
7385
7536
|
/**
|
|
7386
7537
|
* 0-不分账,1-需分账。为1时标记为待分账订单,待分账订单不会进行清算。不传默认为不分账。
|
|
@@ -7403,6 +7554,11 @@ export interface UnifiedTlinxOrderRequest {
|
|
|
7403
7554
|
用户在子商户appid下的唯一标识。
|
|
7404
7555
|
*/
|
|
7405
7556
|
SubOpenId?: string
|
|
7557
|
+
|
|
7558
|
+
/**
|
|
7559
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
7560
|
+
*/
|
|
7561
|
+
Profile?: string
|
|
7406
7562
|
}
|
|
7407
7563
|
|
|
7408
7564
|
/**
|
|
@@ -7547,6 +7703,64 @@ export interface QueryExchangerateResult {
|
|
|
7547
7703
|
Data: Array<QueryExchangerateData>
|
|
7548
7704
|
}
|
|
7549
7705
|
|
|
7706
|
+
/**
|
|
7707
|
+
* QueryMemberTransactionDetails请求参数结构体
|
|
7708
|
+
*/
|
|
7709
|
+
export interface QueryMemberTransactionDetailsRequest {
|
|
7710
|
+
/**
|
|
7711
|
+
* 查询的交易发生时间类型。
|
|
7712
|
+
__1__:当日
|
|
7713
|
+
__2__:历史
|
|
7714
|
+
*/
|
|
7715
|
+
QueryDateType: string
|
|
7716
|
+
|
|
7717
|
+
/**
|
|
7718
|
+
* 查询的交易类型。
|
|
7719
|
+
__1__:全部
|
|
7720
|
+
__2__:转出
|
|
7721
|
+
__3__:转入
|
|
7722
|
+
*/
|
|
7723
|
+
QueryTranType: string
|
|
7724
|
+
|
|
7725
|
+
/**
|
|
7726
|
+
* 父账户账号。
|
|
7727
|
+
_平安渠道为资金汇总账号_
|
|
7728
|
+
*/
|
|
7729
|
+
BankAccountNumber: string
|
|
7730
|
+
|
|
7731
|
+
/**
|
|
7732
|
+
* 子账户账号。
|
|
7733
|
+
_平安渠道为见证子账户的账号_
|
|
7734
|
+
*/
|
|
7735
|
+
SubAccountNumber: string
|
|
7736
|
+
|
|
7737
|
+
/**
|
|
7738
|
+
* 分页号, 起始值为1。
|
|
7739
|
+
*/
|
|
7740
|
+
PageOffSet: string
|
|
7741
|
+
|
|
7742
|
+
/**
|
|
7743
|
+
* 查询开始日期,格式:yyyyMMdd。
|
|
7744
|
+
__若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
|
|
7745
|
+
*/
|
|
7746
|
+
QueryStartDate?: string
|
|
7747
|
+
|
|
7748
|
+
/**
|
|
7749
|
+
* 查询终止日期,格式:yyyyMMdd。
|
|
7750
|
+
__若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
|
|
7751
|
+
*/
|
|
7752
|
+
QueryEndDate?: string
|
|
7753
|
+
|
|
7754
|
+
/**
|
|
7755
|
+
* 环境名。
|
|
7756
|
+
__release__: 现网环境
|
|
7757
|
+
__sandbox__: 沙箱环境
|
|
7758
|
+
__development__: 开发环境
|
|
7759
|
+
_缺省: release_
|
|
7760
|
+
*/
|
|
7761
|
+
MidasEnvironment?: string
|
|
7762
|
+
}
|
|
7763
|
+
|
|
7550
7764
|
/**
|
|
7551
7765
|
* QueryBatchPaymentResult请求参数结构体
|
|
7552
7766
|
*/
|
|
@@ -8107,19 +8321,42 @@ development: 开发环境
|
|
|
8107
8321
|
}
|
|
8108
8322
|
|
|
8109
8323
|
/**
|
|
8110
|
-
*
|
|
8324
|
+
* QueryRefund请求参数结构体
|
|
8111
8325
|
*/
|
|
8112
|
-
export interface
|
|
8326
|
+
export interface QueryRefundRequest {
|
|
8327
|
+
/**
|
|
8328
|
+
* 用户ID,长度不小于5位,仅支持字母和数字的组合。
|
|
8329
|
+
*/
|
|
8330
|
+
UserId: string
|
|
8331
|
+
|
|
8332
|
+
/**
|
|
8333
|
+
* 退款订单号,仅支持数字、字母、下划线(_)、横杠字符(-)、点(.)的组合。
|
|
8334
|
+
*/
|
|
8335
|
+
RefundId: string
|
|
8336
|
+
|
|
8337
|
+
/**
|
|
8338
|
+
* 聚鑫分配的支付主MidasAppId
|
|
8339
|
+
*/
|
|
8340
|
+
MidasAppId: string
|
|
8341
|
+
|
|
8342
|
+
/**
|
|
8343
|
+
* 聚鑫分配的安全ID
|
|
8344
|
+
*/
|
|
8345
|
+
MidasSecretId: string
|
|
8346
|
+
|
|
8113
8347
|
/**
|
|
8114
|
-
*
|
|
8348
|
+
* 按照聚鑫安全密钥计算的签名
|
|
8115
8349
|
*/
|
|
8116
|
-
|
|
8350
|
+
MidasSignature: string
|
|
8117
8351
|
|
|
8118
8352
|
/**
|
|
8119
|
-
*
|
|
8120
|
-
|
|
8353
|
+
* 环境名:
|
|
8354
|
+
release: 现网环境
|
|
8355
|
+
sandbox: 沙箱环境
|
|
8356
|
+
development: 开发环境
|
|
8357
|
+
缺省: release
|
|
8121
8358
|
*/
|
|
8122
|
-
|
|
8359
|
+
MidasEnvironment?: string
|
|
8123
8360
|
}
|
|
8124
8361
|
|
|
8125
8362
|
/**
|
|
@@ -8250,12 +8487,12 @@ export interface CreateBatchPaymentData {
|
|
|
8250
8487
|
*/
|
|
8251
8488
|
export interface DistributeQueryRequest {
|
|
8252
8489
|
/**
|
|
8253
|
-
*
|
|
8490
|
+
* 使用门店OpenId
|
|
8254
8491
|
*/
|
|
8255
8492
|
OpenId: string
|
|
8256
8493
|
|
|
8257
8494
|
/**
|
|
8258
|
-
*
|
|
8495
|
+
* 使用门店OpenKey
|
|
8259
8496
|
*/
|
|
8260
8497
|
OpenKey: string
|
|
8261
8498
|
|
|
@@ -8265,9 +8502,9 @@ export interface DistributeQueryRequest {
|
|
|
8265
8502
|
Type: string
|
|
8266
8503
|
|
|
8267
8504
|
/**
|
|
8268
|
-
*
|
|
8505
|
+
* 商户分账单号,type为2时,和DistributeNo二者传其一
|
|
8269
8506
|
*/
|
|
8270
|
-
|
|
8507
|
+
OutDistributeNo?: string
|
|
8271
8508
|
|
|
8272
8509
|
/**
|
|
8273
8510
|
* 平台分账单号,type为2时,和OutDistributeNo二者传其一
|
|
@@ -8275,14 +8512,14 @@ export interface DistributeQueryRequest {
|
|
|
8275
8512
|
DistributeNo?: string
|
|
8276
8513
|
|
|
8277
8514
|
/**
|
|
8278
|
-
*
|
|
8515
|
+
* 平台交易订单号
|
|
8279
8516
|
*/
|
|
8280
|
-
|
|
8517
|
+
OrderNo?: string
|
|
8281
8518
|
|
|
8282
8519
|
/**
|
|
8283
|
-
*
|
|
8520
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
8284
8521
|
*/
|
|
8285
|
-
|
|
8522
|
+
Profile?: string
|
|
8286
8523
|
}
|
|
8287
8524
|
|
|
8288
8525
|
/**
|
|
@@ -8726,11 +8963,6 @@ export interface ViewContractRequest {
|
|
|
8726
8963
|
*/
|
|
8727
8964
|
OpenKey: string
|
|
8728
8965
|
|
|
8729
|
-
/**
|
|
8730
|
-
* 沙箱环境填sandbox,正式环境不填
|
|
8731
|
-
*/
|
|
8732
|
-
Profile?: string
|
|
8733
|
-
|
|
8734
8966
|
/**
|
|
8735
8967
|
* 外部合同主键编号(ContractId或OutContractId必须传一个)
|
|
8736
8968
|
*/
|
|
@@ -8740,6 +8972,11 @@ export interface ViewContractRequest {
|
|
|
8740
8972
|
* 合同主键(ContractId或OutContractId必须传一个)
|
|
8741
8973
|
*/
|
|
8742
8974
|
ContractId?: string
|
|
8975
|
+
|
|
8976
|
+
/**
|
|
8977
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
8978
|
+
*/
|
|
8979
|
+
Profile?: string
|
|
8743
8980
|
}
|
|
8744
8981
|
|
|
8745
8982
|
/**
|
|
@@ -10319,12 +10556,12 @@ export interface QueryInvoiceV2Request {
|
|
|
10319
10556
|
*/
|
|
10320
10557
|
export interface DistributeAccreditQueryRequest {
|
|
10321
10558
|
/**
|
|
10322
|
-
*
|
|
10559
|
+
* 使用门店OpenId
|
|
10323
10560
|
*/
|
|
10324
10561
|
OpenId: string
|
|
10325
10562
|
|
|
10326
10563
|
/**
|
|
10327
|
-
*
|
|
10564
|
+
* 使用门店OpenKey
|
|
10328
10565
|
*/
|
|
10329
10566
|
OpenKey: string
|
|
10330
10567
|
|
|
@@ -11852,12 +12089,12 @@ _不填默认为生产环境_
|
|
|
11852
12089
|
*/
|
|
11853
12090
|
export interface DistributeRemoveReceiverRequest {
|
|
11854
12091
|
/**
|
|
11855
|
-
*
|
|
12092
|
+
* 使用门店OpenId
|
|
11856
12093
|
*/
|
|
11857
12094
|
OpenId: string
|
|
11858
12095
|
|
|
11859
12096
|
/**
|
|
11860
|
-
*
|
|
12097
|
+
* 使用门店OpenKey
|
|
11861
12098
|
*/
|
|
11862
12099
|
OpenKey: string
|
|
11863
12100
|
|
|
@@ -11867,14 +12104,14 @@ export interface DistributeRemoveReceiverRequest {
|
|
|
11867
12104
|
MerchantNo: string
|
|
11868
12105
|
|
|
11869
12106
|
/**
|
|
11870
|
-
*
|
|
12107
|
+
* 备注
|
|
11871
12108
|
*/
|
|
11872
|
-
|
|
12109
|
+
Remark?: string
|
|
11873
12110
|
|
|
11874
12111
|
/**
|
|
11875
|
-
*
|
|
12112
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
11876
12113
|
*/
|
|
11877
|
-
|
|
12114
|
+
Profile?: string
|
|
11878
12115
|
}
|
|
11879
12116
|
|
|
11880
12117
|
/**
|
|
@@ -11949,29 +12186,29 @@ export interface AddShopRequest {
|
|
|
11949
12186
|
OpenId: string
|
|
11950
12187
|
|
|
11951
12188
|
/**
|
|
11952
|
-
*
|
|
12189
|
+
* 收单系统分配的密钥
|
|
11953
12190
|
*/
|
|
11954
|
-
|
|
12191
|
+
OpenKey: string
|
|
11955
12192
|
|
|
11956
12193
|
/**
|
|
11957
|
-
*
|
|
12194
|
+
* 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
|
|
11958
12195
|
*/
|
|
11959
|
-
|
|
12196
|
+
OutShopId: string
|
|
11960
12197
|
|
|
11961
12198
|
/**
|
|
11962
|
-
*
|
|
12199
|
+
* 门店简称(例如:南山店)
|
|
11963
12200
|
*/
|
|
11964
|
-
|
|
12201
|
+
ShopName: string
|
|
11965
12202
|
|
|
11966
12203
|
/**
|
|
11967
|
-
*
|
|
12204
|
+
* 门店全称(例如:江山小厨(南山店))
|
|
11968
12205
|
*/
|
|
11969
|
-
|
|
12206
|
+
ShopFullName: string
|
|
11970
12207
|
|
|
11971
12208
|
/**
|
|
11972
|
-
*
|
|
12209
|
+
* 商户编号
|
|
11973
12210
|
*/
|
|
11974
|
-
|
|
12211
|
+
MerchantNo: string
|
|
11975
12212
|
|
|
11976
12213
|
/**
|
|
11977
12214
|
* 门店电话
|
|
@@ -11979,9 +12216,9 @@ export interface AddShopRequest {
|
|
|
11979
12216
|
Telephone: string
|
|
11980
12217
|
|
|
11981
12218
|
/**
|
|
11982
|
-
*
|
|
12219
|
+
* 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
|
|
11983
12220
|
*/
|
|
11984
|
-
|
|
12221
|
+
OpenHours: string
|
|
11985
12222
|
|
|
11986
12223
|
/**
|
|
11987
12224
|
* 门店所在的城市编码
|
|
@@ -11989,64 +12226,64 @@ export interface AddShopRequest {
|
|
|
11989
12226
|
CityId: string
|
|
11990
12227
|
|
|
11991
12228
|
/**
|
|
11992
|
-
*
|
|
12229
|
+
* 门店详细地址,不含省市区县名称
|
|
11993
12230
|
*/
|
|
11994
|
-
|
|
12231
|
+
Address: string
|
|
11995
12232
|
|
|
11996
12233
|
/**
|
|
11997
|
-
*
|
|
12234
|
+
* 整体门面(含招牌)图片【公共区】
|
|
11998
12235
|
*/
|
|
11999
|
-
|
|
12236
|
+
PictureOne: string
|
|
12000
12237
|
|
|
12001
12238
|
/**
|
|
12002
|
-
*
|
|
12239
|
+
* 整体门面(含招牌)图片【公共区】
|
|
12003
12240
|
*/
|
|
12004
|
-
|
|
12241
|
+
PictureTwo: string
|
|
12005
12242
|
|
|
12006
12243
|
/**
|
|
12007
|
-
*
|
|
12244
|
+
* 店内环境图片【公共区】
|
|
12008
12245
|
*/
|
|
12009
|
-
|
|
12246
|
+
PictureThree: string
|
|
12010
12247
|
|
|
12011
12248
|
/**
|
|
12012
|
-
*
|
|
12249
|
+
* 负责人手机号码
|
|
12013
12250
|
*/
|
|
12014
|
-
|
|
12251
|
+
FinancialTelephone?: string
|
|
12015
12252
|
|
|
12016
12253
|
/**
|
|
12017
|
-
*
|
|
12254
|
+
* 门店负责人
|
|
12018
12255
|
*/
|
|
12019
|
-
|
|
12256
|
+
Contact?: string
|
|
12020
12257
|
|
|
12021
12258
|
/**
|
|
12022
|
-
*
|
|
12259
|
+
* 百度地图纬度
|
|
12023
12260
|
*/
|
|
12024
|
-
|
|
12261
|
+
Latitude?: string
|
|
12025
12262
|
|
|
12026
12263
|
/**
|
|
12027
|
-
*
|
|
12264
|
+
* 高德地图纬度
|
|
12028
12265
|
*/
|
|
12029
|
-
|
|
12266
|
+
LatitudeTwo?: string
|
|
12030
12267
|
|
|
12031
12268
|
/**
|
|
12032
|
-
*
|
|
12269
|
+
* 百度地图经度
|
|
12033
12270
|
*/
|
|
12034
|
-
|
|
12271
|
+
Longitude?: string
|
|
12035
12272
|
|
|
12036
12273
|
/**
|
|
12037
|
-
*
|
|
12274
|
+
* 高德地图经度
|
|
12038
12275
|
*/
|
|
12039
|
-
|
|
12276
|
+
LongitudeTwo?: string
|
|
12040
12277
|
|
|
12041
12278
|
/**
|
|
12042
|
-
*
|
|
12279
|
+
* 其他照片【公共区】
|
|
12043
12280
|
*/
|
|
12044
|
-
|
|
12281
|
+
OtherPicture?: string
|
|
12045
12282
|
|
|
12046
12283
|
/**
|
|
12047
|
-
*
|
|
12284
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
12048
12285
|
*/
|
|
12049
|
-
|
|
12286
|
+
Profile?: string
|
|
12050
12287
|
}
|
|
12051
12288
|
|
|
12052
12289
|
/**
|
|
@@ -12409,6 +12646,60 @@ export interface QueryTransferResultRequest {
|
|
|
12409
12646
|
Profile?: string
|
|
12410
12647
|
}
|
|
12411
12648
|
|
|
12649
|
+
/**
|
|
12650
|
+
* 查询对账文件申请结果
|
|
12651
|
+
*/
|
|
12652
|
+
export interface QueryReconciliationFileApplyInfoResult {
|
|
12653
|
+
/**
|
|
12654
|
+
* 申请对账文件的任务ID。
|
|
12655
|
+
*/
|
|
12656
|
+
ApplyFileId: string
|
|
12657
|
+
|
|
12658
|
+
/**
|
|
12659
|
+
* 对账文件申请状态。
|
|
12660
|
+
__I__:申请中
|
|
12661
|
+
__S__:申请成功
|
|
12662
|
+
__F__:申请失败
|
|
12663
|
+
*/
|
|
12664
|
+
ApplyStatus: string
|
|
12665
|
+
|
|
12666
|
+
/**
|
|
12667
|
+
* 申请结果描述。
|
|
12668
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12669
|
+
*/
|
|
12670
|
+
ApplyMessage: string
|
|
12671
|
+
|
|
12672
|
+
/**
|
|
12673
|
+
* 对账文件下载地址列表。
|
|
12674
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12675
|
+
*/
|
|
12676
|
+
FileUrlArray: Array<string>
|
|
12677
|
+
}
|
|
12678
|
+
|
|
12679
|
+
/**
|
|
12680
|
+
* 申请对账文件结果
|
|
12681
|
+
*/
|
|
12682
|
+
export interface ApplyReconciliationFileResult {
|
|
12683
|
+
/**
|
|
12684
|
+
* 申请对账文件的任务ID。
|
|
12685
|
+
*/
|
|
12686
|
+
ApplyFileId: string
|
|
12687
|
+
|
|
12688
|
+
/**
|
|
12689
|
+
* 对账文件申请状态。
|
|
12690
|
+
__I__:申请中
|
|
12691
|
+
__S__:申请成功
|
|
12692
|
+
__F__:申请失败
|
|
12693
|
+
*/
|
|
12694
|
+
ApplyStatus: string
|
|
12695
|
+
|
|
12696
|
+
/**
|
|
12697
|
+
* 申请结果描述。
|
|
12698
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12699
|
+
*/
|
|
12700
|
+
ApplyMessage: string
|
|
12701
|
+
}
|
|
12702
|
+
|
|
12412
12703
|
/**
|
|
12413
12704
|
* QueryOpenBankExternalSubMerchantBankAccount返回参数结构体
|
|
12414
12705
|
*/
|
|
@@ -12817,6 +13108,63 @@ development 开发环境
|
|
|
12817
13108
|
TransFee?: string
|
|
12818
13109
|
}
|
|
12819
13110
|
|
|
13111
|
+
/**
|
|
13112
|
+
* QueryFundsTransactionDetails请求参数结构体
|
|
13113
|
+
*/
|
|
13114
|
+
export interface QueryFundsTransactionDetailsRequest {
|
|
13115
|
+
/**
|
|
13116
|
+
* 查询的交易发生时间类型。
|
|
13117
|
+
__1__:当日
|
|
13118
|
+
__2__:历史
|
|
13119
|
+
*/
|
|
13120
|
+
QueryDateType: string
|
|
13121
|
+
|
|
13122
|
+
/**
|
|
13123
|
+
* 查询的交易类型。
|
|
13124
|
+
__2__:提现/退款
|
|
13125
|
+
__3__:清分/充值
|
|
13126
|
+
*/
|
|
13127
|
+
QueryTranType: string
|
|
13128
|
+
|
|
13129
|
+
/**
|
|
13130
|
+
* 父账户账号。
|
|
13131
|
+
_平安渠道为资金汇总账号_
|
|
13132
|
+
*/
|
|
13133
|
+
BankAccountNumber: string
|
|
13134
|
+
|
|
13135
|
+
/**
|
|
13136
|
+
* 子账户账号。
|
|
13137
|
+
_平安渠道为见证子账户的账号_
|
|
13138
|
+
*/
|
|
13139
|
+
SubAccountNumber: string
|
|
13140
|
+
|
|
13141
|
+
/**
|
|
13142
|
+
* 分页号, 起始值为1。
|
|
13143
|
+
*/
|
|
13144
|
+
PageOffSet: string
|
|
13145
|
+
|
|
13146
|
+
/**
|
|
13147
|
+
* 查询开始日期,格式:yyyyMMdd。
|
|
13148
|
+
__若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
|
|
13149
|
+
*/
|
|
13150
|
+
QueryStartDate?: string
|
|
13151
|
+
|
|
13152
|
+
/**
|
|
13153
|
+
* 查询终止日期,格式:yyyyMMdd。
|
|
13154
|
+
__若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
|
|
13155
|
+
*/
|
|
13156
|
+
QueryEndDate?: string
|
|
13157
|
+
|
|
13158
|
+
/**
|
|
13159
|
+
* 环境名。
|
|
13160
|
+
__release__: 现网环境
|
|
13161
|
+
__sandbox__: 沙箱环境
|
|
13162
|
+
__development__: 开发环境
|
|
13163
|
+
_缺省: release_
|
|
13164
|
+
*/
|
|
13165
|
+
MidasEnvironment?: string
|
|
13166
|
+
}
|
|
13167
|
+
|
|
12820
13168
|
/**
|
|
12821
13169
|
* 第三方子商户银行卡绑定返回结果
|
|
12822
13170
|
*/
|
|
@@ -12919,12 +13267,12 @@ export interface CreateMerchantResultData {
|
|
|
12919
13267
|
*/
|
|
12920
13268
|
export interface DistributeCancelRequest {
|
|
12921
13269
|
/**
|
|
12922
|
-
*
|
|
13270
|
+
* 使用门店OpenId
|
|
12923
13271
|
*/
|
|
12924
13272
|
OpenId: string
|
|
12925
13273
|
|
|
12926
13274
|
/**
|
|
12927
|
-
*
|
|
13275
|
+
* 使用门店OpenKey
|
|
12928
13276
|
*/
|
|
12929
13277
|
OpenKey: string
|
|
12930
13278
|
|
|
@@ -12934,9 +13282,9 @@ export interface DistributeCancelRequest {
|
|
|
12934
13282
|
OrderNo: string
|
|
12935
13283
|
|
|
12936
13284
|
/**
|
|
12937
|
-
*
|
|
13285
|
+
* 商户分账单号,type为2时,和DistributeNo二者传其一
|
|
12938
13286
|
*/
|
|
12939
|
-
|
|
13287
|
+
OutDistributeNo?: string
|
|
12940
13288
|
|
|
12941
13289
|
/**
|
|
12942
13290
|
* 平台分账单号,type为2时,和OutDistributeNo二者传其一
|
|
@@ -12944,9 +13292,9 @@ export interface DistributeCancelRequest {
|
|
|
12944
13292
|
DistributeNo?: string
|
|
12945
13293
|
|
|
12946
13294
|
/**
|
|
12947
|
-
*
|
|
13295
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
12948
13296
|
*/
|
|
12949
|
-
|
|
13297
|
+
Profile?: string
|
|
12950
13298
|
}
|
|
12951
13299
|
|
|
12952
13300
|
/**
|
|
@@ -14136,11 +14484,6 @@ export interface DownloadOrgFileRequest {
|
|
|
14136
14484
|
*/
|
|
14137
14485
|
OpenKey: string
|
|
14138
14486
|
|
|
14139
|
-
/**
|
|
14140
|
-
* 沙箱环境填sandbox,正式环境不填
|
|
14141
|
-
*/
|
|
14142
|
-
Profile?: string
|
|
14143
|
-
|
|
14144
14487
|
/**
|
|
14145
14488
|
* 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
|
|
14146
14489
|
*/
|
|
@@ -14150,6 +14493,11 @@ export interface DownloadOrgFileRequest {
|
|
|
14150
14493
|
* 文件路径
|
|
14151
14494
|
*/
|
|
14152
14495
|
FilePath?: string
|
|
14496
|
+
|
|
14497
|
+
/**
|
|
14498
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
14499
|
+
*/
|
|
14500
|
+
Profile?: string
|
|
14153
14501
|
}
|
|
14154
14502
|
|
|
14155
14503
|
/**
|
|
@@ -14253,42 +14601,19 @@ export interface Order {
|
|
|
14253
14601
|
}
|
|
14254
14602
|
|
|
14255
14603
|
/**
|
|
14256
|
-
*
|
|
14604
|
+
* QueryAgentStatements请求参数结构体
|
|
14257
14605
|
*/
|
|
14258
|
-
export interface
|
|
14259
|
-
/**
|
|
14260
|
-
* 用户ID,长度不小于5位,仅支持字母和数字的组合。
|
|
14261
|
-
*/
|
|
14262
|
-
UserId: string
|
|
14263
|
-
|
|
14264
|
-
/**
|
|
14265
|
-
* 退款订单号,仅支持数字、字母、下划线(_)、横杠字符(-)、点(.)的组合。
|
|
14266
|
-
*/
|
|
14267
|
-
RefundId: string
|
|
14268
|
-
|
|
14269
|
-
/**
|
|
14270
|
-
* 聚鑫分配的支付主MidasAppId
|
|
14271
|
-
*/
|
|
14272
|
-
MidasAppId: string
|
|
14273
|
-
|
|
14274
|
-
/**
|
|
14275
|
-
* 聚鑫分配的安全ID
|
|
14276
|
-
*/
|
|
14277
|
-
MidasSecretId: string
|
|
14278
|
-
|
|
14606
|
+
export interface QueryAgentStatementsRequest {
|
|
14279
14607
|
/**
|
|
14280
|
-
*
|
|
14608
|
+
* 结算单日期,月结算单填每月1日
|
|
14281
14609
|
*/
|
|
14282
|
-
|
|
14610
|
+
Date: string
|
|
14283
14611
|
|
|
14284
14612
|
/**
|
|
14285
|
-
*
|
|
14286
|
-
|
|
14287
|
-
sandbox: 沙箱环境
|
|
14288
|
-
development: 开发环境
|
|
14289
|
-
缺省: release
|
|
14613
|
+
* 日结算单:daily
|
|
14614
|
+
月结算单:monthly
|
|
14290
14615
|
*/
|
|
14291
|
-
|
|
14616
|
+
Type: string
|
|
14292
14617
|
}
|
|
14293
14618
|
|
|
14294
14619
|
/**
|
|
@@ -14637,9 +14962,39 @@ export interface UploadFileResponse {
|
|
|
14637
14962
|
FileId: string
|
|
14638
14963
|
|
|
14639
14964
|
/**
|
|
14640
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
14641
|
-
*/
|
|
14642
|
-
RequestId?: string
|
|
14965
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
14966
|
+
*/
|
|
14967
|
+
RequestId?: string
|
|
14968
|
+
}
|
|
14969
|
+
|
|
14970
|
+
/**
|
|
14971
|
+
* 聚鑫-查询会员间交易信息列表结果
|
|
14972
|
+
*/
|
|
14973
|
+
export interface QueryMemberTransactionDetailsResult {
|
|
14974
|
+
/**
|
|
14975
|
+
* 本次交易返回查询结果记录数。
|
|
14976
|
+
*/
|
|
14977
|
+
ResultCount: number
|
|
14978
|
+
|
|
14979
|
+
/**
|
|
14980
|
+
* 符合业务查询条件的记录总数。
|
|
14981
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14982
|
+
*/
|
|
14983
|
+
TotalCount: number
|
|
14984
|
+
|
|
14985
|
+
/**
|
|
14986
|
+
* 结束标志。
|
|
14987
|
+
__0__:否
|
|
14988
|
+
__1__:是
|
|
14989
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14990
|
+
*/
|
|
14991
|
+
EndFlag: string
|
|
14992
|
+
|
|
14993
|
+
/**
|
|
14994
|
+
* 会员间交易信息数组
|
|
14995
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14996
|
+
*/
|
|
14997
|
+
TranItemArray: Array<MemberTransactionItem>
|
|
14643
14998
|
}
|
|
14644
14999
|
|
|
14645
15000
|
/**
|
|
@@ -15091,6 +15446,83 @@ export interface CreateSinglePaymentRequest {
|
|
|
15091
15446
|
NotifyUrl?: string
|
|
15092
15447
|
}
|
|
15093
15448
|
|
|
15449
|
+
/**
|
|
15450
|
+
* 会员间交易明细信息
|
|
15451
|
+
*/
|
|
15452
|
+
export interface MemberTransactionItem {
|
|
15453
|
+
/**
|
|
15454
|
+
* 交易类型。
|
|
15455
|
+
__1__:转出
|
|
15456
|
+
__2__:转入
|
|
15457
|
+
*/
|
|
15458
|
+
TransType: string
|
|
15459
|
+
|
|
15460
|
+
/**
|
|
15461
|
+
* 交易状态。
|
|
15462
|
+
__0__:成功
|
|
15463
|
+
*/
|
|
15464
|
+
TranStatus: string
|
|
15465
|
+
|
|
15466
|
+
/**
|
|
15467
|
+
* 交易金额。
|
|
15468
|
+
*/
|
|
15469
|
+
TransAmount: string
|
|
15470
|
+
|
|
15471
|
+
/**
|
|
15472
|
+
* 交易日期,格式:yyyyMMdd。
|
|
15473
|
+
*/
|
|
15474
|
+
TransDate: string
|
|
15475
|
+
|
|
15476
|
+
/**
|
|
15477
|
+
* 交易时间,格式:HHmmss。
|
|
15478
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15479
|
+
*/
|
|
15480
|
+
TransTime: string
|
|
15481
|
+
|
|
15482
|
+
/**
|
|
15483
|
+
* 银行系统流水号。
|
|
15484
|
+
_平安渠道为见证系统流水号_
|
|
15485
|
+
*/
|
|
15486
|
+
BankSequenceNumber: string
|
|
15487
|
+
|
|
15488
|
+
/**
|
|
15489
|
+
* 银行记账类型。
|
|
15490
|
+
_平安渠道为:_
|
|
15491
|
+
_1:会员支付_
|
|
15492
|
+
_2:会员冻结_
|
|
15493
|
+
_3:会员解冻_
|
|
15494
|
+
_4:登记挂账_
|
|
15495
|
+
_6:下单预支付_
|
|
15496
|
+
_7:确认并付款_
|
|
15497
|
+
_8:会员退款_
|
|
15498
|
+
_22:见证+收单平台调账_
|
|
15499
|
+
_23:见证+收单资金冻结_
|
|
15500
|
+
_24:见证+收单资金解冻_
|
|
15501
|
+
_25:会员间交易退款_
|
|
15502
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15503
|
+
*/
|
|
15504
|
+
BankBookingType: string
|
|
15505
|
+
|
|
15506
|
+
/**
|
|
15507
|
+
* 转入方子账户账号。
|
|
15508
|
+
_平安渠道为转入见证子账户的账号_
|
|
15509
|
+
*/
|
|
15510
|
+
InSubAccountNumber: string
|
|
15511
|
+
|
|
15512
|
+
/**
|
|
15513
|
+
* 转出方子账户账号。
|
|
15514
|
+
_平安渠道为转出见证子账户的账号_
|
|
15515
|
+
*/
|
|
15516
|
+
OutSubAccountNumber: string
|
|
15517
|
+
|
|
15518
|
+
/**
|
|
15519
|
+
* 备注。
|
|
15520
|
+
_平安渠道,如果是见证+收单的交易,返回交易订单号_
|
|
15521
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15522
|
+
*/
|
|
15523
|
+
Remark: string
|
|
15524
|
+
}
|
|
15525
|
+
|
|
15094
15526
|
/**
|
|
15095
15527
|
* 分账接收方响应对象
|
|
15096
15528
|
*/
|
|
@@ -15107,19 +15539,19 @@ export interface DistributeReceiverResult {
|
|
|
15107
15539
|
*/
|
|
15108
15540
|
export interface DistributeApplyRequest {
|
|
15109
15541
|
/**
|
|
15110
|
-
*
|
|
15542
|
+
* 使用门店OpenId
|
|
15111
15543
|
*/
|
|
15112
15544
|
OpenId: string
|
|
15113
15545
|
|
|
15114
15546
|
/**
|
|
15115
|
-
*
|
|
15547
|
+
* 使用门店OpenKey
|
|
15116
15548
|
*/
|
|
15117
|
-
|
|
15549
|
+
OpenKey: string
|
|
15118
15550
|
|
|
15119
15551
|
/**
|
|
15120
|
-
*
|
|
15552
|
+
* 商户分账单号
|
|
15121
15553
|
*/
|
|
15122
|
-
|
|
15554
|
+
OutDistributeNo: string
|
|
15123
15555
|
|
|
15124
15556
|
/**
|
|
15125
15557
|
* 分账明细
|
|
@@ -15127,24 +15559,24 @@ export interface DistributeApplyRequest {
|
|
|
15127
15559
|
Details: Array<MultiApplyDetail>
|
|
15128
15560
|
|
|
15129
15561
|
/**
|
|
15130
|
-
*
|
|
15562
|
+
* 商户交易订单号,和OrderNo二者传其一
|
|
15131
15563
|
*/
|
|
15132
|
-
|
|
15564
|
+
DeveloperNo?: string
|
|
15133
15565
|
|
|
15134
15566
|
/**
|
|
15135
|
-
*
|
|
15567
|
+
* 平台交易订单号,和DeveloperNo二者传其一
|
|
15136
15568
|
*/
|
|
15137
|
-
|
|
15569
|
+
OrderNo?: string
|
|
15138
15570
|
|
|
15139
15571
|
/**
|
|
15140
|
-
*
|
|
15572
|
+
* 说明
|
|
15141
15573
|
*/
|
|
15142
|
-
|
|
15574
|
+
Remark?: string
|
|
15143
15575
|
|
|
15144
15576
|
/**
|
|
15145
|
-
*
|
|
15577
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
15146
15578
|
*/
|
|
15147
|
-
|
|
15579
|
+
Profile?: string
|
|
15148
15580
|
}
|
|
15149
15581
|
|
|
15150
15582
|
/**
|
|
@@ -15161,11 +15593,6 @@ export interface ViewShopRequest {
|
|
|
15161
15593
|
*/
|
|
15162
15594
|
OpenKey: string
|
|
15163
15595
|
|
|
15164
|
-
/**
|
|
15165
|
-
* 沙箱环境填sandbox,正式环境不填
|
|
15166
|
-
*/
|
|
15167
|
-
Profile?: string
|
|
15168
|
-
|
|
15169
15596
|
/**
|
|
15170
15597
|
* 外部商户主键编号(ShopNo或OutShopId必须传一个)
|
|
15171
15598
|
*/
|
|
@@ -15175,6 +15602,11 @@ export interface ViewShopRequest {
|
|
|
15175
15602
|
* 门店编号(ShopNo或OutShopId必须传一个)
|
|
15176
15603
|
*/
|
|
15177
15604
|
ShopNo?: string
|
|
15605
|
+
|
|
15606
|
+
/**
|
|
15607
|
+
* 沙箱环境填sandbox,正式环境不填
|
|
15608
|
+
*/
|
|
15609
|
+
Profile?: string
|
|
15178
15610
|
}
|
|
15179
15611
|
|
|
15180
15612
|
/**
|
|
@@ -15471,45 +15903,73 @@ export interface CreateAgentTaxPaymentInfosResponse {
|
|
|
15471
15903
|
RequestId?: string
|
|
15472
15904
|
}
|
|
15473
15905
|
|
|
15906
|
+
/**
|
|
15907
|
+
* ApplyReconciliationFile返回参数结构体
|
|
15908
|
+
*/
|
|
15909
|
+
export interface ApplyReconciliationFileResponse {
|
|
15910
|
+
/**
|
|
15911
|
+
* 错误码。
|
|
15912
|
+
__SUCCESS__: 成功
|
|
15913
|
+
__其他__: 见附录-错误码表
|
|
15914
|
+
*/
|
|
15915
|
+
ErrCode: string
|
|
15916
|
+
|
|
15917
|
+
/**
|
|
15918
|
+
* 错误消息。
|
|
15919
|
+
*/
|
|
15920
|
+
ErrMessage: string
|
|
15921
|
+
|
|
15922
|
+
/**
|
|
15923
|
+
* 返回结果。
|
|
15924
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15925
|
+
*/
|
|
15926
|
+
Result: ApplyReconciliationFileResult
|
|
15927
|
+
|
|
15928
|
+
/**
|
|
15929
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15930
|
+
*/
|
|
15931
|
+
RequestId?: string
|
|
15932
|
+
}
|
|
15933
|
+
|
|
15474
15934
|
/**
|
|
15475
15935
|
* 合同-支付方式列表响应对象
|
|
15476
15936
|
*/
|
|
15477
15937
|
export interface ContractPayListResult {
|
|
15478
15938
|
/**
|
|
15479
|
-
*
|
|
15939
|
+
* 支付方式编号
|
|
15480
15940
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15481
15941
|
*/
|
|
15482
|
-
|
|
15942
|
+
PaymentId: string
|
|
15483
15943
|
|
|
15484
15944
|
/**
|
|
15485
|
-
*
|
|
15945
|
+
* 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
|
|
15486
15946
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15487
15947
|
*/
|
|
15488
|
-
|
|
15948
|
+
PaymentType: string
|
|
15489
15949
|
|
|
15490
15950
|
/**
|
|
15491
|
-
*
|
|
15951
|
+
* 支付标签
|
|
15492
15952
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15493
15953
|
*/
|
|
15494
|
-
|
|
15954
|
+
PaymentTag: string
|
|
15495
15955
|
|
|
15496
15956
|
/**
|
|
15497
|
-
*
|
|
15957
|
+
* 支付方式图片url路径
|
|
15498
15958
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15499
15959
|
*/
|
|
15500
|
-
|
|
15960
|
+
PaymentIcon: string
|
|
15501
15961
|
|
|
15502
15962
|
/**
|
|
15503
|
-
*
|
|
15963
|
+
* 付款方式名称
|
|
15504
15964
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15505
15965
|
*/
|
|
15506
|
-
|
|
15966
|
+
PaymentName: string
|
|
15507
15967
|
|
|
15508
15968
|
/**
|
|
15509
|
-
*
|
|
15969
|
+
* 付款方式名称(内部名称)
|
|
15510
15970
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15511
15971
|
*/
|
|
15512
|
-
|
|
15972
|
+
PaymentInternalName: string
|
|
15513
15973
|
|
|
15514
15974
|
/**
|
|
15515
15975
|
* 支付方式
|
|
@@ -15521,49 +15981,49 @@ export interface ContractPayListResult {
|
|
|
15521
15981
|
* 支付方式
|
|
15522
15982
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15523
15983
|
*/
|
|
15524
|
-
|
|
15984
|
+
PaymentOptionTwo?: string
|
|
15525
15985
|
|
|
15526
15986
|
/**
|
|
15527
|
-
*
|
|
15987
|
+
* 支付方式
|
|
15528
15988
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15529
15989
|
*/
|
|
15530
|
-
|
|
15990
|
+
PaymentOptionThree?: string
|
|
15531
15991
|
|
|
15532
15992
|
/**
|
|
15533
15993
|
* 支付方式
|
|
15534
15994
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15535
15995
|
*/
|
|
15536
|
-
|
|
15996
|
+
PaymentOptionFour?: string
|
|
15537
15997
|
|
|
15538
15998
|
/**
|
|
15539
15999
|
* 支付方式
|
|
15540
16000
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15541
16001
|
*/
|
|
15542
|
-
|
|
16002
|
+
PaymentOptionFive?: string
|
|
15543
16003
|
|
|
15544
16004
|
/**
|
|
15545
|
-
*
|
|
16005
|
+
* 支付方式
|
|
15546
16006
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15547
16007
|
*/
|
|
15548
|
-
|
|
16008
|
+
PaymentOptionSix?: string
|
|
15549
16009
|
|
|
15550
16010
|
/**
|
|
15551
16011
|
* 支付方式
|
|
15552
16012
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15553
16013
|
*/
|
|
15554
|
-
|
|
16014
|
+
PaymentOptionSeven?: string
|
|
15555
16015
|
|
|
15556
16016
|
/**
|
|
15557
|
-
*
|
|
16017
|
+
* 支付方式
|
|
15558
16018
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15559
16019
|
*/
|
|
15560
|
-
|
|
16020
|
+
PaymentOptionOther?: string
|
|
15561
16021
|
|
|
15562
16022
|
/**
|
|
15563
16023
|
* 支付方式
|
|
15564
16024
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15565
16025
|
*/
|
|
15566
|
-
|
|
16026
|
+
PaymentOptionNine?: string
|
|
15567
16027
|
|
|
15568
16028
|
/**
|
|
15569
16029
|
* 支付方式
|
|
@@ -15679,23 +16139,18 @@ export interface DescribeOrderStatusRequest {
|
|
|
15679
16139
|
}
|
|
15680
16140
|
|
|
15681
16141
|
/**
|
|
15682
|
-
*
|
|
16142
|
+
* 米大师内部存放的合约信息
|
|
15683
16143
|
*/
|
|
15684
|
-
export interface
|
|
15685
|
-
/**
|
|
15686
|
-
* 外部商户订单号
|
|
15687
|
-
*/
|
|
15688
|
-
OutOrderId: string
|
|
15689
|
-
|
|
16144
|
+
export interface ChannelContractInfo {
|
|
15690
16145
|
/**
|
|
15691
|
-
*
|
|
16146
|
+
* 外部合约协议号
|
|
15692
16147
|
*/
|
|
15693
|
-
|
|
16148
|
+
OutContractCode: string
|
|
15694
16149
|
|
|
15695
16150
|
/**
|
|
15696
|
-
*
|
|
16151
|
+
* 米大师内部生成的合约协议号
|
|
15697
16152
|
*/
|
|
15698
|
-
|
|
16153
|
+
ChannelContractCode: string
|
|
15699
16154
|
}
|
|
15700
16155
|
|
|
15701
16156
|
/**
|
|
@@ -15730,6 +16185,34 @@ export interface MerchantRiskInfo {
|
|
|
15730
16185
|
RiskTypes: string
|
|
15731
16186
|
}
|
|
15732
16187
|
|
|
16188
|
+
/**
|
|
16189
|
+
* QueryMemberTransactionDetails返回参数结构体
|
|
16190
|
+
*/
|
|
16191
|
+
export interface QueryMemberTransactionDetailsResponse {
|
|
16192
|
+
/**
|
|
16193
|
+
* 错误码。
|
|
16194
|
+
__SUCCESS__: 成功
|
|
16195
|
+
__其他__: 见附录-错误码表
|
|
16196
|
+
*/
|
|
16197
|
+
ErrCode: string
|
|
16198
|
+
|
|
16199
|
+
/**
|
|
16200
|
+
* 错误消息。
|
|
16201
|
+
*/
|
|
16202
|
+
ErrMessage: string
|
|
16203
|
+
|
|
16204
|
+
/**
|
|
16205
|
+
* 返回结果。
|
|
16206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16207
|
+
*/
|
|
16208
|
+
Result: QueryMemberTransactionDetailsResult
|
|
16209
|
+
|
|
16210
|
+
/**
|
|
16211
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16212
|
+
*/
|
|
16213
|
+
RequestId?: string
|
|
16214
|
+
}
|
|
16215
|
+
|
|
15733
16216
|
/**
|
|
15734
16217
|
* 查询订单付款状态响应对象
|
|
15735
16218
|
*/
|
|
@@ -16509,6 +16992,40 @@ export interface QueryAgentTaxPaymentBatchRequest {
|
|
|
16509
16992
|
Profile?: string
|
|
16510
16993
|
}
|
|
16511
16994
|
|
|
16995
|
+
/**
|
|
16996
|
+
* ApplyReconciliationFile请求参数结构体
|
|
16997
|
+
*/
|
|
16998
|
+
export interface ApplyReconciliationFileRequest {
|
|
16999
|
+
/**
|
|
17000
|
+
* 申请的文件类型。
|
|
17001
|
+
__CZ__:充值文件
|
|
17002
|
+
__TX__:提现文件
|
|
17003
|
+
__JY__:交易文件
|
|
17004
|
+
__YE__:余额文件
|
|
17005
|
+
*/
|
|
17006
|
+
ApplyFileType: string
|
|
17007
|
+
|
|
17008
|
+
/**
|
|
17009
|
+
* 申请的对账文件日期,格式:yyyyMMdd。
|
|
17010
|
+
*/
|
|
17011
|
+
ApplyFileDate: string
|
|
17012
|
+
|
|
17013
|
+
/**
|
|
17014
|
+
* 父账户账号。
|
|
17015
|
+
_平安渠道为资金汇总账号_
|
|
17016
|
+
*/
|
|
17017
|
+
BankAccountNumber: string
|
|
17018
|
+
|
|
17019
|
+
/**
|
|
17020
|
+
* 环境名。
|
|
17021
|
+
__release__: 现网环境
|
|
17022
|
+
__sandbox__: 沙箱环境
|
|
17023
|
+
__development__: 开发环境
|
|
17024
|
+
_缺省: release_
|
|
17025
|
+
*/
|
|
17026
|
+
MidasEnvironment?: string
|
|
17027
|
+
}
|
|
17028
|
+
|
|
16512
17029
|
/**
|
|
16513
17030
|
* RegisterBillSupportWithdraw返回参数结构体
|
|
16514
17031
|
*/
|
|
@@ -16946,6 +17463,34 @@ export interface QueryMerchantBalanceResult {
|
|
|
16946
17463
|
Data: QueryMerchantBalanceData
|
|
16947
17464
|
}
|
|
16948
17465
|
|
|
17466
|
+
/**
|
|
17467
|
+
* QueryFundsTransactionDetails返回参数结构体
|
|
17468
|
+
*/
|
|
17469
|
+
export interface QueryFundsTransactionDetailsResponse {
|
|
17470
|
+
/**
|
|
17471
|
+
* 错误码。
|
|
17472
|
+
__SUCCESS__: 成功
|
|
17473
|
+
__其他__: 见附录-错误码表
|
|
17474
|
+
*/
|
|
17475
|
+
ErrCode: string
|
|
17476
|
+
|
|
17477
|
+
/**
|
|
17478
|
+
* 错误消息。
|
|
17479
|
+
*/
|
|
17480
|
+
ErrMessage: string
|
|
17481
|
+
|
|
17482
|
+
/**
|
|
17483
|
+
* 返回结果。
|
|
17484
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17485
|
+
*/
|
|
17486
|
+
Result: QueryFundsTransactionDetailsResult
|
|
17487
|
+
|
|
17488
|
+
/**
|
|
17489
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17490
|
+
*/
|
|
17491
|
+
RequestId?: string
|
|
17492
|
+
}
|
|
17493
|
+
|
|
16949
17494
|
/**
|
|
16950
17495
|
* 米大师内部生成的合约信息
|
|
16951
17496
|
*/
|
|
@@ -17648,18 +18193,23 @@ export interface DeduceQuotaResponse {
|
|
|
17648
18193
|
}
|
|
17649
18194
|
|
|
17650
18195
|
/**
|
|
17651
|
-
*
|
|
18196
|
+
* 云企付-关单响应
|
|
17652
18197
|
*/
|
|
17653
|
-
export interface
|
|
18198
|
+
export interface CloseOpenBankPaymentOrderResult {
|
|
17654
18199
|
/**
|
|
17655
|
-
*
|
|
18200
|
+
* 外部商户订单号
|
|
17656
18201
|
*/
|
|
17657
|
-
|
|
18202
|
+
OutOrderId: string
|
|
17658
18203
|
|
|
17659
18204
|
/**
|
|
17660
|
-
*
|
|
18205
|
+
* 云企付平台订单号
|
|
17661
18206
|
*/
|
|
17662
|
-
|
|
18207
|
+
ChannelOrderId: string
|
|
18208
|
+
|
|
18209
|
+
/**
|
|
18210
|
+
* 订单状态。关单成功CLOSED
|
|
18211
|
+
*/
|
|
18212
|
+
OrderStatus: string
|
|
17663
18213
|
}
|
|
17664
18214
|
|
|
17665
18215
|
/**
|