tencentcloud-sdk-nodejs 4.0.300 → 4.0.303

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.
Files changed (70) hide show
  1. package/CHANGELOG.md +269 -0
  2. package/SERVICE_CHANGELOG.md +286 -333
  3. package/package.json +1 -1
  4. package/products.md +16 -15
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/asr/v20190614/asr_models.ts +1 -1
  7. package/src/services/casb/index.ts +5 -0
  8. package/src/services/casb/v20200507/casb_client.ts +51 -0
  9. package/src/services/casb/v20200507/casb_models.ts +76 -0
  10. package/src/services/casb/v20200507/index.ts +6 -0
  11. package/src/services/ccc/v20200210/ccc_models.ts +12 -0
  12. package/src/services/cdn/v20180606/cdn_models.ts +18 -18
  13. package/src/services/ckafka/v20190819/ckafka_client.ts +44 -8
  14. package/src/services/ckafka/v20190819/ckafka_models.ts +123 -20
  15. package/src/services/cls/v20201016/cls_client.ts +2 -2
  16. package/src/services/cls/v20201016/cls_models.ts +36 -47
  17. package/src/services/cpdp/v20190820/cpdp_client.ts +123 -15
  18. package/src/services/cpdp/v20190820/cpdp_models.ts +1449 -493
  19. package/src/services/index.ts +1 -0
  20. package/src/services/ivld/v20210903/ivld_client.ts +2 -0
  21. package/src/services/ivld/v20210903/ivld_models.ts +48 -0
  22. package/src/services/organization/v20210331/organization_models.ts +6 -0
  23. package/src/services/ses/v20201002/ses_client.ts +15 -2
  24. package/src/services/ses/v20201002/ses_models.ts +51 -10
  25. package/src/services/tcss/v20201101/tcss_models.ts +5 -0
  26. package/src/services/tke/v20180525/tke_client.ts +25 -13
  27. package/src/services/tke/v20180525/tke_models.ts +39 -4
  28. package/src/services/tse/v20201207/tse_models.ts +15 -0
  29. package/src/services/vpc/v20170312/vpc_client.ts +1 -1
  30. package/tencentcloud/common/sdk_version.d.ts +1 -1
  31. package/tencentcloud/common/sdk_version.js +1 -1
  32. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
  33. package/tencentcloud/services/casb/index.d.ts +6 -0
  34. package/tencentcloud/services/casb/index.js +7 -0
  35. package/tencentcloud/services/casb/v20200507/casb_client.d.ts +21 -0
  36. package/tencentcloud/services/casb/v20200507/casb_client.js +44 -0
  37. package/tencentcloud/services/casb/v20200507/casb_models.d.ts +51 -0
  38. package/tencentcloud/services/casb/v20200507/casb_models.js +18 -0
  39. package/tencentcloud/services/casb/v20200507/index.d.ts +6 -0
  40. package/tencentcloud/services/casb/v20200507/index.js +9 -0
  41. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -0
  42. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +18 -18
  43. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +15 -3
  44. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +21 -3
  45. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +108 -19
  46. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +2 -2
  47. package/tencentcloud/services/cls/v20201016/cls_client.js +2 -2
  48. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +36 -47
  49. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +36 -4
  50. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +52 -4
  51. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +1294 -470
  52. package/tencentcloud/services/index.d.ts +1 -0
  53. package/tencentcloud/services/index.js +2 -0
  54. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +41 -0
  55. package/tencentcloud/services/organization/v20210331/organization_models.d.ts +5 -0
  56. package/tencentcloud/services/ses/v20201002/ses_client.d.ts +5 -1
  57. package/tencentcloud/services/ses/v20201002/ses_client.js +6 -0
  58. package/tencentcloud/services/ses/v20201002/ses_models.d.ts +46 -10
  59. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +4 -0
  60. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -5
  61. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -6
  62. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +34 -4
  63. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +12 -0
  64. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +1 -1
  65. package/tencentcloud/services/vpc/v20170312/vpc_client.js +1 -1
  66. package/test/casb.v20200507.test.js +31 -0
  67. package/test/ckafka.v20190819.test.js +32 -2
  68. package/test/cpdp.v20190820.test.js +82 -2
  69. package/test/ses.v20201002.test.js +10 -0
  70. package/test/tke.v20180525.test.js +14 -4
@@ -387,6 +387,35 @@ development: 开发环境
387
387
  AgencyClientInfo?: AgencyClientInfo
388
388
  }
389
389
 
390
+ /**
391
+ * QueryOpenBankBankBranchList返回参数结构体
392
+ */
393
+ export interface QueryOpenBankBankBranchListResponse {
394
+ /**
395
+ * 错误码。
396
+ __SUCCESS__: 成功
397
+ __其他__: 见附录-错误码表
398
+ */
399
+ ErrCode: string
400
+
401
+ /**
402
+ * 错误消息。
403
+ 注意:此字段可能返回 null,表示取不到有效值。
404
+ */
405
+ ErrMessage: string
406
+
407
+ /**
408
+ * 返回结果。
409
+ 注意:此字段可能返回 null,表示取不到有效值。
410
+ */
411
+ Result: QueryOpenBankBankBranchListResult
412
+
413
+ /**
414
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
415
+ */
416
+ RequestId?: string
417
+ }
418
+
390
419
  /**
391
420
  * MigrateOrderRefundQuery返回参数结构体
392
421
  */
@@ -472,6 +501,11 @@ export interface UploadOrgFileRequest {
472
501
  */
473
502
  OpenId: string
474
503
 
504
+ /**
505
+ * 收单系统分配的密钥
506
+ */
507
+ OpenKey: string
508
+
475
509
  /**
476
510
  * 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
477
511
  */
@@ -492,11 +526,6 @@ export interface UploadOrgFileRequest {
492
526
  */
493
527
  FileExtension: string
494
528
 
495
- /**
496
- * 收单系统分配的密钥
497
- */
498
- OpenKey: string
499
-
500
529
  /**
501
530
  * 沙箱环境填sandbox,正式环境不填
502
531
  */
@@ -902,12 +931,12 @@ __PROCESSING__: 进件中
902
931
  */
903
932
  export interface RefundTlinxOrderRequest {
904
933
  /**
905
- * 收单系统分配的开放ID
934
+ * 使用门店OpenId
906
935
  */
907
936
  OpenId: string
908
937
 
909
938
  /**
910
- * 收单系统分配的密钥
939
+ * 使用门店OpenKey
911
940
  */
912
941
  OpenKey: string
913
942
 
@@ -1219,6 +1248,35 @@ export interface CreateInvoiceResultData {
1219
1248
  OrderSn: string
1220
1249
  }
1221
1250
 
1251
+ /**
1252
+ * 对账文件信息
1253
+ */
1254
+ export interface FileItem {
1255
+ /**
1256
+ * STRING(256),文件名称
1257
+ 注意:此字段可能返回 null,表示取不到有效值。
1258
+ */
1259
+ FileName: string
1260
+
1261
+ /**
1262
+ * STRING(120),随机密码
1263
+ 注意:此字段可能返回 null,表示取不到有效值。
1264
+ */
1265
+ RandomPassword: string
1266
+
1267
+ /**
1268
+ * STRING(512),文件路径
1269
+ 注意:此字段可能返回 null,表示取不到有效值。
1270
+ */
1271
+ FilePath: string
1272
+
1273
+ /**
1274
+ * STRING(64),提取码
1275
+ 注意:此字段可能返回 null,表示取不到有效值。
1276
+ */
1277
+ DrawCode: string
1278
+ }
1279
+
1222
1280
  /**
1223
1281
  * UnbindOpenBankExternalSubMerchantBankAccount请求参数结构体
1224
1282
  */
@@ -2185,24 +2243,19 @@ export interface RevokeMemberRechargeThirdPayResponse {
2185
2243
  */
2186
2244
  export interface DistributeAccreditTlinxRequest {
2187
2245
  /**
2188
- * 收单系统分配的开放ID
2246
+ * 使用门店OpenId
2189
2247
  */
2190
2248
  OpenId: string
2191
2249
 
2192
2250
  /**
2193
- * 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
2194
- */
2195
- AuthType: string
2196
-
2197
- /**
2198
- * 收单系统分配的密钥
2251
+ * 使用门店OpenKey
2199
2252
  */
2200
2253
  OpenKey: string
2201
2254
 
2202
2255
  /**
2203
- * 沙箱环境填sandbox,正式环境不填
2256
+ * 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
2204
2257
  */
2205
- Profile?: string
2258
+ AuthType: string
2206
2259
 
2207
2260
  /**
2208
2261
  * 分账比例(500=5%)不传默认百分之10
@@ -2213,6 +2266,11 @@ export interface DistributeAccreditTlinxRequest {
2213
2266
  * 营业执照商户全称
2214
2267
  */
2215
2268
  FullName?: string
2269
+
2270
+ /**
2271
+ * 沙箱环境填sandbox,正式环境不填
2272
+ */
2273
+ Profile?: string
2216
2274
  }
2217
2275
 
2218
2276
  /**
@@ -2293,24 +2351,24 @@ export interface QueryExceedingInfoResponse {
2293
2351
  */
2294
2352
  export interface AddContractRequest {
2295
2353
  /**
2296
- * 签约扣率百分比(如:0.32)
2354
+ * 收单系统分配的开放ID
2297
2355
  */
2298
- Fee: string
2356
+ OpenId: string
2299
2357
 
2300
2358
  /**
2301
- * 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
2359
+ * 收单系统分配的密钥
2302
2360
  */
2303
- OutContractId: string
2361
+ OpenKey: string
2304
2362
 
2305
2363
  /**
2306
- * 封顶值(分为单位,无封顶填0)
2364
+ * 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
2307
2365
  */
2308
- PaymentClassificationLimit: string
2366
+ OutContractId: string
2309
2367
 
2310
2368
  /**
2311
- * 联系人电话
2369
+ * 合同编号(系统有唯一性校验)
2312
2370
  */
2313
- ContactTelephone: string
2371
+ Code: string
2314
2372
 
2315
2373
  /**
2316
2374
  * 支付方式编号
@@ -2318,9 +2376,24 @@ export interface AddContractRequest {
2318
2376
  PaymentId: string
2319
2377
 
2320
2378
  /**
2321
- * 收单系统分配的密钥
2379
+ * 支付方式行业分类编号
2322
2380
  */
2323
- OpenKey: string
2381
+ PaymentClassificationId: string
2382
+
2383
+ /**
2384
+ * 封顶值(分为单位,无封顶填0)
2385
+ */
2386
+ PaymentClassificationLimit: string
2387
+
2388
+ /**
2389
+ * 商户编号
2390
+ */
2391
+ MerchantNo: string
2392
+
2393
+ /**
2394
+ * 签约扣率百分比(如:0.32)
2395
+ */
2396
+ Fee: string
2324
2397
 
2325
2398
  /**
2326
2399
  * 合同生效日期(yyyy-mm-dd)
@@ -2343,19 +2416,14 @@ export interface AddContractRequest {
2343
2416
  SignName: string
2344
2417
 
2345
2418
  /**
2346
- * 收单系统分配的开放ID
2347
- */
2348
- OpenId: string
2349
-
2350
- /**
2351
- * 商户编号
2419
+ * 合同签署日期(yyyy-mm-dd)
2352
2420
  */
2353
- MerchantNo: string
2421
+ SignDate: string
2354
2422
 
2355
2423
  /**
2356
- * 合同照片【私密区】
2424
+ * 是否自动续签(1是,0否)
2357
2425
  */
2358
- PictureOne: string
2426
+ AutoSign: string
2359
2427
 
2360
2428
  /**
2361
2429
  * 联系人
@@ -2363,24 +2431,24 @@ export interface AddContractRequest {
2363
2431
  Contact: string
2364
2432
 
2365
2433
  /**
2366
- * 合同签署日期(yyyy-mm-dd)
2434
+ * 联系人电话
2367
2435
  */
2368
- SignDate: string
2436
+ ContactTelephone: string
2369
2437
 
2370
2438
  /**
2371
- * 合同编号(系统有唯一性校验)
2439
+ * 合同照片【私密区】
2372
2440
  */
2373
- Code: string
2441
+ PictureOne: string
2374
2442
 
2375
2443
  /**
2376
- * 是否自动续签(1是,0否)
2444
+ * 合同照片【私密区】
2377
2445
  */
2378
- AutoSign: string
2446
+ PictureTwo?: string
2379
2447
 
2380
2448
  /**
2381
- * 支付方式行业分类编号
2449
+ * 渠道扩展字段,json格式
2382
2450
  */
2383
- PaymentClassificationId: string
2451
+ ChannelExtJson?: string
2384
2452
 
2385
2453
  /**
2386
2454
  * 沙箱环境填sandbox,正式环境不填
@@ -2388,29 +2456,19 @@ export interface AddContractRequest {
2388
2456
  Profile?: string
2389
2457
 
2390
2458
  /**
2391
- * 合同照片【私密区】
2392
- */
2393
- PictureTwo?: string
2394
-
2395
- /**
2396
- * 合同选项8
2397
- */
2398
- PaymentOptionTen?: string
2399
-
2400
- /**
2401
- * 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
2459
+ * 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2402
2460
  */
2403
- PaymentOptionNine?: string
2461
+ PaymentOptionOne?: string
2404
2462
 
2405
2463
  /**
2406
- * 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
2464
+ * 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2407
2465
  */
2408
- PaymentOptionOther?: string
2466
+ PaymentOptionTwo?: string
2409
2467
 
2410
2468
  /**
2411
- * 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2469
+ * 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
2412
2470
  */
2413
- PaymentOptionFive?: string
2471
+ PaymentOptionThree?: string
2414
2472
 
2415
2473
  /**
2416
2474
  * 合同选项4(不同支付方式规则不一样,请以支付方式规定的格式传值)
@@ -2418,9 +2476,9 @@ export interface AddContractRequest {
2418
2476
  PaymentOptionFour?: string
2419
2477
 
2420
2478
  /**
2421
- * 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
2479
+ * 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2422
2480
  */
2423
- PaymentOptionSeven?: string
2481
+ PaymentOptionFive?: string
2424
2482
 
2425
2483
  /**
2426
2484
  * 合同证书选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
@@ -2428,24 +2486,24 @@ export interface AddContractRequest {
2428
2486
  PaymentOptionSix?: string
2429
2487
 
2430
2488
  /**
2431
- * 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2489
+ * 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
2432
2490
  */
2433
- PaymentOptionOne?: string
2491
+ PaymentOptionSeven?: string
2434
2492
 
2435
2493
  /**
2436
- * 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
2494
+ * 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
2437
2495
  */
2438
- PaymentOptionThree?: string
2496
+ PaymentOptionOther?: string
2439
2497
 
2440
2498
  /**
2441
- * 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2499
+ * 合同选项8
2442
2500
  */
2443
- PaymentOptionTwo?: string
2501
+ PaymentOptionTen?: string
2444
2502
 
2445
2503
  /**
2446
- * 渠道扩展字段,json格式
2504
+ * 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
2447
2505
  */
2448
- ChannelExtJson?: string
2506
+ PaymentOptionNine?: string
2449
2507
  }
2450
2508
 
2451
2509
  /**
@@ -2473,12 +2531,12 @@ export interface CreateAcctResponse {
2473
2531
  */
2474
2532
  export interface DistributeAddReceiverRequest {
2475
2533
  /**
2476
- * 收单系统分配的开放ID
2534
+ * 使用门店OpenId
2477
2535
  */
2478
2536
  OpenId: string
2479
2537
 
2480
2538
  /**
2481
- * 收单系统分配的密钥
2539
+ * 使用门店OpenKey
2482
2540
  */
2483
2541
  OpenKey: string
2484
2542
 
@@ -2488,14 +2546,14 @@ export interface DistributeAddReceiverRequest {
2488
2546
  MerchantNo: string
2489
2547
 
2490
2548
  /**
2491
- * 沙箱环境填sandbox,正式环境不填
2549
+ * 备注
2492
2550
  */
2493
- Profile?: string
2551
+ Remark?: string
2494
2552
 
2495
2553
  /**
2496
- * 备注
2554
+ * 沙箱环境填sandbox,正式环境不填
2497
2555
  */
2498
- Remark?: string
2556
+ Profile?: string
2499
2557
  }
2500
2558
 
2501
2559
  /**
@@ -2573,6 +2631,33 @@ export interface WithdrawBill {
2573
2631
  ExtendFieldData?: string
2574
2632
  }
2575
2633
 
2634
+ /**
2635
+ * QueryOpenBankDailyReceiptDownloadUrl返回参数结构体
2636
+ */
2637
+ export interface QueryOpenBankDailyReceiptDownloadUrlResponse {
2638
+ /**
2639
+ * 业务系统返回码,SUCCESS表示成功,其他表示失败。
2640
+ */
2641
+ ErrCode: string
2642
+
2643
+ /**
2644
+ * 业务系统返回消息。
2645
+ 注意:此字段可能返回 null,表示取不到有效值。
2646
+ */
2647
+ ErrMessage: string
2648
+
2649
+ /**
2650
+ * 按日期查询回单下载地址响应对象。
2651
+ 注意:此字段可能返回 null,表示取不到有效值。
2652
+ */
2653
+ Result: QueryOpenBankDailyReceiptDownloadUrlResult
2654
+
2655
+ /**
2656
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2657
+ */
2658
+ RequestId?: string
2659
+ }
2660
+
2576
2661
  /**
2577
2662
  * QueryPayerInfo返回参数结构体
2578
2663
  */
@@ -2617,18 +2702,31 @@ __其他__: 见附录-错误码表
2617
2702
  }
2618
2703
 
2619
2704
  /**
2620
- * 付款人查询结果
2705
+ * QueryMemberTransactionDetails返回参数结构体
2621
2706
  */
2622
- export interface QueryPayerinfoResult {
2707
+ export interface QueryMemberTransactionDetailsResponse {
2623
2708
  /**
2624
- * 错误码
2709
+ * 错误码。
2710
+ __SUCCESS__: 成功
2711
+ __其他__: 见附录-错误码表
2712
+ */
2713
+ ErrCode: string
2714
+
2715
+ /**
2716
+ * 错误消息。
2625
2717
  */
2626
- Code: string
2718
+ ErrMessage: string
2627
2719
 
2628
2720
  /**
2629
- * 付款人查询数据
2721
+ * 返回结果。
2722
+ 注意:此字段可能返回 null,表示取不到有效值。
2723
+ */
2724
+ Result: QueryMemberTransactionDetailsResult
2725
+
2726
+ /**
2727
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2630
2728
  */
2631
- Data: QueryPayerinfoData
2729
+ RequestId?: string
2632
2730
  }
2633
2731
 
2634
2732
  /**
@@ -2708,28 +2806,107 @@ export interface QueryInvoiceResultData {
2708
2806
  }
2709
2807
 
2710
2808
  /**
2711
- * AddMerchant返回参数结构体
2809
+ * 会员资金交易明细信息
2712
2810
  */
2713
- export interface AddMerchantResponse {
2811
+ export interface FundsTransactionItem {
2714
2812
  /**
2715
- * 业务系统返回消息
2716
- 注意:此字段可能返回 null,表示取不到有效值。
2813
+ * 资金交易类型。
2814
+ __1__:提现/退款
2815
+ __2__:清分/充值
2717
2816
  */
2718
- ErrMessage: string
2817
+ TransType: string
2719
2818
 
2720
2819
  /**
2721
- * 业务系统返回码,0表示成功,其他表示失败。
2722
- */
2723
- ErrCode: string
2724
-
2725
- /**
2726
- * 添加商户响应对象
2820
+ * 银行记账说明。
2727
2821
  注意:此字段可能返回 null,表示取不到有效值。
2728
2822
  */
2729
- Result: AddMerchantResult
2823
+ BankBookingMessage: string
2730
2824
 
2731
2825
  /**
2732
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2826
+ * 交易状态。
2827
+ __0__:成功
2828
+ */
2829
+ TranStatus: string
2830
+
2831
+ /**
2832
+ * 业务方会员标识。
2833
+ _平安渠道为交易网会员代码_
2834
+ 注意:此字段可能返回 null,表示取不到有效值。
2835
+ */
2836
+ TransNetMemberCode: string
2837
+
2838
+ /**
2839
+ * 子账户账号。
2840
+ _平安渠道为见证子账户的账号_
2841
+ */
2842
+ SubAccountNumber: string
2843
+
2844
+ /**
2845
+ * 子账户名称。
2846
+ _平安渠道为见证子账户的户名_
2847
+ 注意:此字段可能返回 null,表示取不到有效值。
2848
+ */
2849
+ SubAccountName: string
2850
+
2851
+ /**
2852
+ * 交易金额。
2853
+ */
2854
+ TransAmount: string
2855
+
2856
+ /**
2857
+ * 交易手续费。
2858
+ 注意:此字段可能返回 null,表示取不到有效值。
2859
+ */
2860
+ TransFee: string
2861
+
2862
+ /**
2863
+ * 交易日期,格式:yyyyMMdd。
2864
+ */
2865
+ TransDate: string
2866
+
2867
+ /**
2868
+ * 交易时间,格式:HHmmss。
2869
+ 注意:此字段可能返回 null,表示取不到有效值。
2870
+ */
2871
+ TransTime: string
2872
+
2873
+ /**
2874
+ * 银行系统流水号。
2875
+ _平安渠道为见证系统流水号_
2876
+ */
2877
+ BankSequenceNumber: string
2878
+
2879
+ /**
2880
+ * 备注。
2881
+ _平安渠道,如果是见证+收单的交易,返回交易订单号_
2882
+ 注意:此字段可能返回 null,表示取不到有效值。
2883
+ */
2884
+ Remark: string
2885
+ }
2886
+
2887
+ /**
2888
+ * AddMerchant返回参数结构体
2889
+ */
2890
+ export interface AddMerchantResponse {
2891
+ /**
2892
+ * 业务系统返回消息
2893
+ 注意:此字段可能返回 null,表示取不到有效值。
2894
+ */
2895
+ ErrMessage: string
2896
+
2897
+ /**
2898
+ * 业务系统返回码,0表示成功,其他表示失败。
2899
+ */
2900
+ ErrCode: string
2901
+
2902
+ /**
2903
+ * 添加商户响应对象
2904
+ 注意:此字段可能返回 null,表示取不到有效值。
2905
+ */
2906
+ Result: AddMerchantResult
2907
+
2908
+ /**
2909
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2733
2910
  */
2734
2911
  RequestId?: string
2735
2912
  }
@@ -2856,11 +3033,6 @@ export interface ViewMerchantRequest {
2856
3033
  */
2857
3034
  OpenKey: string
2858
3035
 
2859
- /**
2860
- * 沙箱环境填sandbox,正式环境不填
2861
- */
2862
- Profile?: string
2863
-
2864
3036
  /**
2865
3037
  * 外部商户主键编号(MerchantNo或OutMerchantId必须传一个)
2866
3038
  */
@@ -2870,6 +3042,11 @@ export interface ViewMerchantRequest {
2870
3042
  * 商户编号(MerchantNo或OutMerchantId必须传一个)
2871
3043
  */
2872
3044
  MerchantNo?: string
3045
+
3046
+ /**
3047
+ * 沙箱环境填sandbox,正式环境不填
3048
+ */
3049
+ Profile?: string
2873
3050
  }
2874
3051
 
2875
3052
  /**
@@ -3568,12 +3745,12 @@ export interface CreateOpenBankMerchantResult {
3568
3745
  */
3569
3746
  export interface DistributeQueryReceiverRequest {
3570
3747
  /**
3571
- * 收单系统分配的开放ID
3748
+ * 使用门店OpenId
3572
3749
  */
3573
3750
  OpenId: string
3574
3751
 
3575
3752
  /**
3576
- * 收单系统分配的密钥
3753
+ * 使用门店OpenKey
3577
3754
  */
3578
3755
  OpenKey: string
3579
3756
 
@@ -4190,6 +4367,39 @@ export interface ViewMerchantResult {
4190
4367
  TaxCollectionNo?: string
4191
4368
  }
4192
4369
 
4370
+ /**
4371
+ * QueryOpenBankSupportBankList请求参数结构体
4372
+ */
4373
+ export interface QueryOpenBankSupportBankListRequest {
4374
+ /**
4375
+ * 渠道商户ID。
4376
+ */
4377
+ ChannelMerchantId: string
4378
+
4379
+ /**
4380
+ * 渠道名称。
4381
+ __TENPAY__: 商企付
4382
+ __WECHAT__: 微信支付
4383
+ __ALIPAY__: 支付宝
4384
+ */
4385
+ ChannelName: string
4386
+
4387
+ /**
4388
+ * 支付方式。
4389
+ __EBANK_PAYMENT__:ebank付款
4390
+ __OPENBANK_PAYMENT__: openbank付款
4391
+ */
4392
+ PaymentMethod: string
4393
+
4394
+ /**
4395
+ * 环境类型。
4396
+ __release__:生产环境
4397
+ __sandbox__:沙箱环境
4398
+ _不填默认为生产环境_
4399
+ */
4400
+ Environment?: string
4401
+ }
4402
+
4193
4403
  /**
4194
4404
  * 提交贸易材料结果
4195
4405
  */
@@ -4308,6 +4518,16 @@ development: 开发环境
4308
4518
  MidasEnvironment?: string
4309
4519
  }
4310
4520
 
4521
+ /**
4522
+ * 查询支持的银行列表返回结果
4523
+ */
4524
+ export interface QueryOpenBankSupportBankListResult {
4525
+ /**
4526
+ * 支持的银行列表
4527
+ */
4528
+ SupportBankList: Array<SupportBankInfo>
4529
+ }
4530
+
4311
4531
  /**
4312
4532
  * BindRelateAcctSmallAmount请求参数结构体
4313
4533
  */
@@ -5227,12 +5447,12 @@ export interface QueryExceedingInfoResult {
5227
5447
  */
5228
5448
  export interface QueryMerchantPayWayListRequest {
5229
5449
  /**
5230
- * 收单系统分配的开放ID
5450
+ * 使用门店OpenId
5231
5451
  */
5232
5452
  OpenId: string
5233
5453
 
5234
5454
  /**
5235
- * 收单系统分配的密钥
5455
+ * 使用门店OpenKey
5236
5456
  */
5237
5457
  OpenKey: string
5238
5458
 
@@ -5397,69 +5617,69 @@ export interface CreateInvoiceResponse {
5397
5617
  */
5398
5618
  export interface AddMerchantRequest {
5399
5619
  /**
5400
- * 法人姓名
5620
+ * 收单系统分配的开放ID
5401
5621
  */
5402
- BossName: string
5622
+ OpenId: string
5403
5623
 
5404
5624
  /**
5405
- * 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
5625
+ * 收单系统分配的密钥
5406
5626
  */
5407
- BusinessLicensePicture: string
5627
+ OpenKey: string
5408
5628
 
5409
5629
  /**
5410
- * 招牌名称
5630
+ * 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
5411
5631
  */
5412
- BrandName: string
5632
+ OutMerchantId: string
5413
5633
 
5414
5634
  /**
5415
- * 收单系统分配的密钥
5635
+ * 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
5416
5636
  */
5417
- OpenKey: string
5637
+ MerchantName: string
5418
5638
 
5419
5639
  /**
5420
- * 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
5640
+ * 营业执照类型(1三证合一,2非三证合一)
5421
5641
  */
5422
- BusinessLicenseEndDate: string
5642
+ BusinessLicenseType: string
5423
5643
 
5424
5644
  /**
5425
- * 法人证件生效时间(yyyy-mm-dd)
5645
+ * 营业执照编号(系统有唯一性校验),(小微商户不效验,随意传要有值,公司/个体户必传)
5426
5646
  */
5427
- BossStartDate: string
5647
+ BusinessLicenseNo: string
5428
5648
 
5429
5649
  /**
5430
- * 清算联行号,开户行行号
5650
+ * 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
5431
5651
  */
5432
- BankNo: string
5652
+ BusinessLicensePicture: string
5433
5653
 
5434
5654
  /**
5435
- * 开户行名称
5655
+ * 营业执照生效时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
5436
5656
  */
5437
- BankName: string
5657
+ BusinessLicenseStartDate: string
5438
5658
 
5439
5659
  /**
5440
- * 营业执照类型(1三证合一,2非三证合一)
5660
+ * 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
5441
5661
  */
5442
- BusinessLicenseType: string
5662
+ BusinessLicenseEndDate: string
5443
5663
 
5444
5664
  /**
5445
- * 法人证件过期时间(yyyy-mm-dd)
5665
+ * 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
5446
5666
  */
5447
- BossEndDate: string
5667
+ ClassificationIds: Array<string>
5448
5668
 
5449
5669
  /**
5450
- * 营业执照编号(系统有唯一性校验),(小微商户不效验,随意传要有值,公司/个体户必传)
5670
+ * 招牌名称
5451
5671
  */
5452
- BusinessLicenseNo: string
5672
+ BrandName: string
5453
5673
 
5454
5674
  /**
5455
- * 营业执照生效时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
5675
+ * 联系电话
5456
5676
  */
5457
- BusinessLicenseStartDate: string
5677
+ Telephone: string
5458
5678
 
5459
5679
  /**
5460
- * 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
5680
+ * 城市编号
5461
5681
  */
5462
- BossIdType: string
5682
+ CityId: string
5463
5683
 
5464
5684
  /**
5465
5685
  * 详细地址,不含省市区县名称,长度需要大于5。
@@ -5467,29 +5687,39 @@ export interface AddMerchantRequest {
5467
5687
  Address: string
5468
5688
 
5469
5689
  /**
5470
- * 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
5690
+ * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
5471
5691
  */
5472
- BossIdCountry: string
5692
+ OpenHours: string
5473
5693
 
5474
5694
  /**
5475
- * 收单系统分配的开放ID
5695
+ * 结算账户类型(2对私,1对公)
5476
5696
  */
5477
- OpenId: string
5697
+ AccountType: string
5478
5698
 
5479
5699
  /**
5480
- * 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
5700
+ * 清算联行号,开户行行号
5481
5701
  */
5482
- MerchantName: string
5702
+ BankNo: string
5483
5703
 
5484
5704
  /**
5485
- * 法人性别(1男,2女)
5705
+ * 开户行名称
5486
5706
  */
5487
- BossSex: string
5707
+ BankName: string
5488
5708
 
5489
5709
  /**
5490
- * 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
5710
+ * 银行账号
5491
5711
  */
5492
- ClassificationIds: Array<string>
5712
+ AccountNo: string
5713
+
5714
+ /**
5715
+ * 银行户名
5716
+ */
5717
+ AccountName: string
5718
+
5719
+ /**
5720
+ * 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
5721
+ */
5722
+ BossIdType: string
5493
5723
 
5494
5724
  /**
5495
5725
  * 法人证件号码
@@ -5497,54 +5727,54 @@ export interface AddMerchantRequest {
5497
5727
  BossIdNo: string
5498
5728
 
5499
5729
  /**
5500
- * 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
5730
+ * 法人姓名
5501
5731
  */
5502
- LicencePicture: string
5732
+ BossName: string
5503
5733
 
5504
5734
  /**
5505
- * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
5735
+ * 法人性别(1男,2女)
5506
5736
  */
5507
- OpenHours: string
5737
+ BossSex: string
5508
5738
 
5509
5739
  /**
5510
- * 银行户名
5740
+ * 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
5511
5741
  */
5512
- AccountName: string
5742
+ BossIdCountry: string
5513
5743
 
5514
5744
  /**
5515
- * 银行账号
5745
+ * 法人身份证正面【私密区】(系统返回的图片路径)
5516
5746
  */
5517
- AccountNo: string
5747
+ BossPositive: string
5518
5748
 
5519
5749
  /**
5520
- * 结算账户类型(2对私,1对公)
5750
+ * 法人身份证背面【私密区】(系统返回的图片路径)
5521
5751
  */
5522
- AccountType: string
5752
+ BossBack: string
5523
5753
 
5524
5754
  /**
5525
- * 联系电话
5755
+ * 法人证件生效时间(yyyy-mm-dd)
5526
5756
  */
5527
- Telephone: string
5757
+ BossStartDate: string
5528
5758
 
5529
5759
  /**
5530
- * 法人身份证正面【私密区】(系统返回的图片路径)
5760
+ * 法人证件过期时间(yyyy-mm-dd)
5531
5761
  */
5532
- BossPositive: string
5762
+ BossEndDate: string
5533
5763
 
5534
5764
  /**
5535
- * 城市编号
5765
+ * 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
5536
5766
  */
5537
- CityId: string
5767
+ LicencePicture: string
5538
5768
 
5539
5769
  /**
5540
- * 法人身份证背面【私密区】(系统返回的图片路径)
5770
+ * 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
5541
5771
  */
5542
- BossBack: string
5772
+ Type?: string
5543
5773
 
5544
5774
  /**
5545
- * 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
5775
+ * 组织机构代码证号
5546
5776
  */
5547
- OutMerchantId: string
5777
+ OrganizationNo?: string
5548
5778
 
5549
5779
  /**
5550
5780
  * 组织机构代码证生效时间(yyyy-mm-dd)
@@ -5552,29 +5782,29 @@ export interface AddMerchantRequest {
5552
5782
  OrganizationStartDate?: string
5553
5783
 
5554
5784
  /**
5555
- * 法人亲属证件号码
5785
+ * 组织机构代码证图片【私密区】
5556
5786
  */
5557
- AccountIdNo?: string
5787
+ OrganizationPicture?: string
5558
5788
 
5559
5789
  /**
5560
- * 财务联系人
5790
+ * 组织机构代码证过期时间(yyyy-mm-dd)
5561
5791
  */
5562
- FinancialContact?: string
5792
+ OrganizationEndDate?: string
5563
5793
 
5564
5794
  /**
5565
- * 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
5795
+ * 商户简介
5566
5796
  */
5567
- AccountIdType?: string
5797
+ Intro?: string
5568
5798
 
5569
5799
  /**
5570
- * 组织机构代码证号
5800
+ * 商户logo【公共区】
5571
5801
  */
5572
- OrganizationNo?: string
5802
+ Logo?: string
5573
5803
 
5574
5804
  /**
5575
- * 其他资料1
5805
+ * 商户标记,自定义参数
5576
5806
  */
5577
- OtherPictureOne?: string
5807
+ Tag?: string
5578
5808
 
5579
5809
  /**
5580
5810
  * 财务联系人电话
@@ -5582,14 +5812,19 @@ export interface AddMerchantRequest {
5582
5812
  FinancialTelephone?: string
5583
5813
 
5584
5814
  /**
5585
- * 沙箱环境填sandbox,正式环境不填
5815
+ * 财务联系人
5586
5816
  */
5587
- Profile?: string
5817
+ FinancialContact?: string
5588
5818
 
5589
5819
  /**
5590
- * 组织机构代码证图片【私密区】
5820
+ * 税务登记证号
5591
5821
  */
5592
- OrganizationPicture?: string
5822
+ TaxRegistrationNo?: string
5823
+
5824
+ /**
5825
+ * 税务登记证图片【私密区】
5826
+ */
5827
+ TaxRegistrationPicture?: string
5593
5828
 
5594
5829
  /**
5595
5830
  * 税务登记证生效时间(yyyy-mm-dd)
@@ -5597,9 +5832,9 @@ export interface AddMerchantRequest {
5597
5832
  TaxRegistrationStartDate?: string
5598
5833
 
5599
5834
  /**
5600
- * 商户标记,自定义参数
5835
+ * 税务登记证过期时间(yyyy-mm-dd)
5601
5836
  */
5602
- Tag?: string
5837
+ TaxRegistrationEndDate?: string
5603
5838
 
5604
5839
  /**
5605
5840
  * 结算账户人身份(1法人,2法人亲属),结算帐户为对私时必填
@@ -5607,19 +5842,14 @@ export interface AddMerchantRequest {
5607
5842
  AccountBoss?: string
5608
5843
 
5609
5844
  /**
5610
- * 法人电话
5611
- */
5612
- BossTelephone?: string
5613
-
5614
- /**
5615
- * 税务登记证图片【私密区】
5845
+ * 客户经理姓名,必须为系统后台的管理员真实姓名
5616
5846
  */
5617
- TaxRegistrationPicture?: string
5847
+ AccountManagerName?: string
5618
5848
 
5619
5849
  /**
5620
- * 组织机构代码证过期时间(yyyy-mm-dd)
5850
+ * 法人电话
5621
5851
  */
5622
- OrganizationEndDate?: string
5852
+ BossTelephone?: string
5623
5853
 
5624
5854
  /**
5625
5855
  * 法人职业
@@ -5627,19 +5857,9 @@ export interface AddMerchantRequest {
5627
5857
  BossJob?: string
5628
5858
 
5629
5859
  /**
5630
- * 其他资料3
5631
- */
5632
- OtherPictureThree?: string
5633
-
5634
- /**
5635
- * 授权文件【私密区】
5636
- */
5637
- LicencePictureTwo?: string
5638
-
5639
- /**
5640
- * 商户logo【公共区】
5860
+ * 法人邮箱
5641
5861
  */
5642
- Logo?: string
5862
+ BossEmail?: string
5643
5863
 
5644
5864
  /**
5645
5865
  * 法人住址
@@ -5647,44 +5867,44 @@ export interface AddMerchantRequest {
5647
5867
  BossAddress?: string
5648
5868
 
5649
5869
  /**
5650
- * 法人邮箱
5870
+ * 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
5651
5871
  */
5652
- BossEmail?: string
5872
+ AccountIdType?: string
5653
5873
 
5654
5874
  /**
5655
- * 其他资料2
5875
+ * 法人亲属证件号码
5656
5876
  */
5657
- OtherPictureTwo?: string
5877
+ AccountIdNo?: string
5658
5878
 
5659
5879
  /**
5660
- * 商户简介
5880
+ * 授权文件【私密区】
5661
5881
  */
5662
- Intro?: string
5882
+ LicencePictureTwo?: string
5663
5883
 
5664
5884
  /**
5665
- * 客户经理姓名,必须为系统后台的管理员真实姓名
5885
+ * 其他资料1
5666
5886
  */
5667
- AccountManagerName?: string
5887
+ OtherPictureOne?: string
5668
5888
 
5669
5889
  /**
5670
- * 税务登记证过期时间(yyyy-mm-dd)
5890
+ * 其他资料2
5671
5891
  */
5672
- TaxRegistrationEndDate?: string
5892
+ OtherPictureTwo?: string
5673
5893
 
5674
5894
  /**
5675
- * 其他资料4
5895
+ * 其他资料3
5676
5896
  */
5677
- OtherPictureFour?: string
5897
+ OtherPictureThree?: string
5678
5898
 
5679
5899
  /**
5680
- * 税务登记证号
5900
+ * 其他资料4
5681
5901
  */
5682
- TaxRegistrationNo?: string
5902
+ OtherPictureFour?: string
5683
5903
 
5684
5904
  /**
5685
- * 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
5905
+ * 沙箱环境填sandbox,正式环境不填
5686
5906
  */
5687
- Type?: string
5907
+ Profile?: string
5688
5908
  }
5689
5909
 
5690
5910
  /**
@@ -6273,6 +6493,54 @@ export interface RevokeRechargeByThirdPayResponse {
6273
6493
  RequestId?: string
6274
6494
  }
6275
6495
 
6496
+ /**
6497
+ * QueryOpenBankDailyReceiptDownloadUrl请求参数结构体
6498
+ */
6499
+ export interface QueryOpenBankDailyReceiptDownloadUrlRequest {
6500
+ /**
6501
+ * 云企付渠道商户号。外部接入平台入驻云企付平台后下发。
6502
+ */
6503
+ ChannelMerchantId: string
6504
+
6505
+ /**
6506
+ * 云企付渠道子商户号。入驻在渠道商户下的子商户ID,如付款方的商户ID,对应创建支付订单中接口参数中的PayerInfo中的payerId。
6507
+ */
6508
+ ChannelSubMerchantId: string
6509
+
6510
+ /**
6511
+ * 渠道名称。
6512
+ __TENPAY__: 商企付
6513
+ __WECHAT__: 微信支付
6514
+ __ALIPAY__: 支付宝
6515
+ */
6516
+ ChannelName: string
6517
+
6518
+ /**
6519
+ * 付款方式。如
6520
+ __EBANK_PAYMENT__:ebank付款
6521
+ __OPENBANK_PAYMENT__: openbank付款
6522
+ */
6523
+ PaymentMethod: string
6524
+
6525
+ /**
6526
+ * 绑卡序列号,银行卡唯一标记,资金账户ID,用于区分商户绑定多卡或多账户场景
6527
+ */
6528
+ BindSerialNo: string
6529
+
6530
+ /**
6531
+ * 查询日期,D日查询D-1日的回单文件
6532
+ */
6533
+ QueryDate: string
6534
+
6535
+ /**
6536
+ * 环境类型
6537
+ release:生产环境
6538
+ sandbox:沙箱环境
6539
+ 缺省默认为生产环境
6540
+ */
6541
+ Environment?: string
6542
+ }
6543
+
6276
6544
  /**
6277
6545
  * CreateAcct请求参数结构体
6278
6546
  */
@@ -6433,6 +6701,25 @@ export interface CreateAgentTaxPaymentInfosRequest {
6433
6701
  Profile?: string
6434
6702
  }
6435
6703
 
6704
+ /**
6705
+ * QueryReconciliationFileApplyInfo请求参数结构体
6706
+ */
6707
+ export interface QueryReconciliationFileApplyInfoRequest {
6708
+ /**
6709
+ * 申请对账文件的任务ID。
6710
+ */
6711
+ ApplyFileId: string
6712
+
6713
+ /**
6714
+ * 环境名。
6715
+ __release__: 现网环境
6716
+ __sandbox__: 沙箱环境
6717
+ __development__: 开发环境
6718
+ _缺省: release_
6719
+ */
6720
+ MidasEnvironment?: string
6721
+ }
6722
+
6436
6723
  /**
6437
6724
  * QueryBillDownloadURL返回参数结构体
6438
6725
  */
@@ -6707,12 +6994,12 @@ export interface RefundOrderResponse {
6707
6994
  */
6708
6995
  export interface QueryOrderStatusRequest {
6709
6996
  /**
6710
- * 收单系统分配的开放ID
6997
+ * 使用门店OpenId
6711
6998
  */
6712
6999
  OpenId: string
6713
7000
 
6714
7001
  /**
6715
- * 收单系统分配的密钥
7002
+ * 使用门店OpenKey
6716
7003
  */
6717
7004
  OpenKey: string
6718
7005
 
@@ -7047,6 +7334,34 @@ export interface UploadTaxListResponse {
7047
7334
  RequestId?: string
7048
7335
  }
7049
7336
 
7337
+ /**
7338
+ * QueryReconciliationFileApplyInfo返回参数结构体
7339
+ */
7340
+ export interface QueryReconciliationFileApplyInfoResponse {
7341
+ /**
7342
+ * 错误码。
7343
+ __SUCCESS__: 成功
7344
+ __其他__: 见附录-错误码表
7345
+ */
7346
+ ErrCode: string
7347
+
7348
+ /**
7349
+ * 错误消息。
7350
+ */
7351
+ ErrMessage: string
7352
+
7353
+ /**
7354
+ * 返回结果。
7355
+ 注意:此字段可能返回 null,表示取不到有效值。
7356
+ */
7357
+ Result: QueryReconciliationFileApplyInfoResult
7358
+
7359
+ /**
7360
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7361
+ */
7362
+ RequestId?: string
7363
+ }
7364
+
7050
7365
  /**
7051
7366
  * BindRelateAcctUnionPay请求参数结构体
7052
7367
  */
@@ -7118,32 +7433,33 @@ export interface BindRelateAcctUnionPayRequest {
7118
7433
  }
7119
7434
 
7120
7435
  /**
7121
- * 对账文件信息
7436
+ * 查询会员资金交易信息列表结果
7122
7437
  */
7123
- export interface FileItem {
7438
+ export interface QueryFundsTransactionDetailsResult {
7124
7439
  /**
7125
- * STRING(256),文件名称
7126
- 注意:此字段可能返回 null,表示取不到有效值。
7127
- */
7128
- FileName: string
7440
+ * 本次交易返回查询结果记录数。
7441
+ */
7442
+ ResultCount: number
7129
7443
 
7130
7444
  /**
7131
- * STRING(120),随机密码
7445
+ * 符合业务查询条件的记录总数。
7132
7446
  注意:此字段可能返回 null,表示取不到有效值。
7133
7447
  */
7134
- RandomPassword: string
7448
+ TotalCount: number
7135
7449
 
7136
7450
  /**
7137
- * STRING(512),文件路径
7451
+ * 结束标志。
7452
+ __0__:否
7453
+ __1__:是
7138
7454
  注意:此字段可能返回 null,表示取不到有效值。
7139
7455
  */
7140
- FilePath: string
7456
+ EndFlag: string
7141
7457
 
7142
7458
  /**
7143
- * STRING(64),提取码
7459
+ * 会员资金交易信息数组。
7144
7460
  注意:此字段可能返回 null,表示取不到有效值。
7145
7461
  */
7146
- DrawCode: string
7462
+ TranItemArray: Array<FundsTransactionItem>
7147
7463
  }
7148
7464
 
7149
7465
  /**
@@ -7288,24 +7604,19 @@ export interface QueryMerchantInfoForManagementRequest {
7288
7604
  */
7289
7605
  export interface UnifiedTlinxOrderRequest {
7290
7606
  /**
7291
- * 开发者流水号
7292
- */
7293
- DeveloperNo: string
7294
-
7295
- /**
7296
- * 收单系统分配的开放ID
7607
+ * 使用门店OpenId
7297
7608
  */
7298
7609
  OpenId: string
7299
7610
 
7300
7611
  /**
7301
- * 交易结果异步通知url地址
7612
+ * 使用门店OpenKey
7302
7613
  */
7303
- NotifyUrl: string
7614
+ OpenKey: string
7304
7615
 
7305
7616
  /**
7306
- * 收单系统分配的密钥
7617
+ * 开发者流水号
7307
7618
  */
7308
- OpenKey: string
7619
+ DeveloperNo: string
7309
7620
 
7310
7621
  /**
7311
7622
  * 支付标签
@@ -7318,24 +7629,24 @@ export interface UnifiedTlinxOrderRequest {
7318
7629
  TradeAmount: string
7319
7630
 
7320
7631
  /**
7321
- * 订单备注
7632
+ * 交易结果异步通知url地址
7322
7633
  */
7323
- Remark?: string
7634
+ NotifyUrl: string
7324
7635
 
7325
7636
  /**
7326
- * 订单标记,订单附加数据。
7637
+ * 付款方式名称(当PayTag为Diy时,PayName不能为空)
7327
7638
  */
7328
- Tag?: string
7639
+ PayName?: string
7329
7640
 
7330
7641
  /**
7331
- * 抹零金额(以分为单位,没有小数点)
7642
+ * 公众号支付时,支付成功后跳转url地址
7332
7643
  */
7333
- IgnoreAmount?: string
7644
+ JumpUrl?: string
7334
7645
 
7335
7646
  /**
7336
- * 条码支付的授权码(条码抢扫手机扫到的一串数字)
7647
+ * 订单名称(描述)
7337
7648
  */
7338
- AuthCode?: string
7649
+ OrderName?: string
7339
7650
 
7340
7651
  /**
7341
7652
  * 原始交易金额(以分为单位,没有小数点)
@@ -7343,44 +7654,44 @@ export interface UnifiedTlinxOrderRequest {
7343
7654
  OriginalAmount?: string
7344
7655
 
7345
7656
  /**
7346
- * 订单名称(描述)
7657
+ * 抹零金额(以分为单位,没有小数点)
7347
7658
  */
7348
- OrderName?: string
7659
+ IgnoreAmount?: string
7349
7660
 
7350
7661
  /**
7351
- * 公众号支付时,支付成功后跳转url地址
7662
+ * 折扣金额(以分为单位,没有小数点)
7352
7663
  */
7353
- JumpUrl?: string
7664
+ DiscountAmount?: string
7354
7665
 
7355
7666
  /**
7356
- * 沙箱环境填sandbox,正式环境不填
7667
+ * 交易帐号(银行卡号)
7357
7668
  */
7358
- Profile?: string
7669
+ TradeAccount?: string
7359
7670
 
7360
7671
  /**
7361
- * 收单机构原始交易报文,请转换为json
7672
+ * 交易号(收单机构交易号)
7362
7673
  */
7363
- TradeResult?: string
7674
+ TradeNo?: string
7364
7675
 
7365
7676
  /**
7366
- * 交易帐号(银行卡号)
7677
+ * 条码支付的授权码(条码抢扫手机扫到的一串数字)
7367
7678
  */
7368
- TradeAccount?: string
7679
+ AuthCode?: string
7369
7680
 
7370
7681
  /**
7371
- * 交易号(收单机构交易号)
7682
+ * 订单标记,订单附加数据。
7372
7683
  */
7373
- TradeNo?: string
7684
+ Tag?: string
7374
7685
 
7375
7686
  /**
7376
- * 折扣金额(以分为单位,没有小数点)
7687
+ * 订单备注
7377
7688
  */
7378
- DiscountAmount?: string
7689
+ Remark?: string
7379
7690
 
7380
7691
  /**
7381
- * 付款方式名称(当PayTag为Diy时,PayName不能为空)
7692
+ * 收单机构原始交易报文,请转换为json
7382
7693
  */
7383
- PayName?: string
7694
+ TradeResult?: string
7384
7695
 
7385
7696
  /**
7386
7697
  * 0-不分账,1-需分账。为1时标记为待分账订单,待分账订单不会进行清算。不传默认为不分账。
@@ -7403,6 +7714,11 @@ export interface UnifiedTlinxOrderRequest {
7403
7714
  用户在子商户appid下的唯一标识。
7404
7715
  */
7405
7716
  SubOpenId?: string
7717
+
7718
+ /**
7719
+ * 沙箱环境填sandbox,正式环境不填
7720
+ */
7721
+ Profile?: string
7406
7722
  }
7407
7723
 
7408
7724
  /**
@@ -7547,6 +7863,64 @@ export interface QueryExchangerateResult {
7547
7863
  Data: Array<QueryExchangerateData>
7548
7864
  }
7549
7865
 
7866
+ /**
7867
+ * QueryMemberTransactionDetails请求参数结构体
7868
+ */
7869
+ export interface QueryMemberTransactionDetailsRequest {
7870
+ /**
7871
+ * 查询的交易发生时间类型。
7872
+ __1__:当日
7873
+ __2__:历史
7874
+ */
7875
+ QueryDateType: string
7876
+
7877
+ /**
7878
+ * 查询的交易类型。
7879
+ __1__:全部
7880
+ __2__:转出
7881
+ __3__:转入
7882
+ */
7883
+ QueryTranType: string
7884
+
7885
+ /**
7886
+ * 父账户账号。
7887
+ _平安渠道为资金汇总账号_
7888
+ */
7889
+ BankAccountNumber: string
7890
+
7891
+ /**
7892
+ * 子账户账号。
7893
+ _平安渠道为见证子账户的账号_
7894
+ */
7895
+ SubAccountNumber: string
7896
+
7897
+ /**
7898
+ * 分页号, 起始值为1。
7899
+ */
7900
+ PageOffSet: string
7901
+
7902
+ /**
7903
+ * 查询开始日期,格式:yyyyMMdd。
7904
+ __若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
7905
+ */
7906
+ QueryStartDate?: string
7907
+
7908
+ /**
7909
+ * 查询终止日期,格式:yyyyMMdd。
7910
+ __若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
7911
+ */
7912
+ QueryEndDate?: string
7913
+
7914
+ /**
7915
+ * 环境名。
7916
+ __release__: 现网环境
7917
+ __sandbox__: 沙箱环境
7918
+ __development__: 开发环境
7919
+ _缺省: release_
7920
+ */
7921
+ MidasEnvironment?: string
7922
+ }
7923
+
7550
7924
  /**
7551
7925
  * QueryBatchPaymentResult请求参数结构体
7552
7926
  */
@@ -8107,19 +8481,42 @@ development: 开发环境
8107
8481
  }
8108
8482
 
8109
8483
  /**
8110
- * QueryAgentStatements请求参数结构体
8484
+ * QueryRefund请求参数结构体
8111
8485
  */
8112
- export interface QueryAgentStatementsRequest {
8486
+ export interface QueryRefundRequest {
8113
8487
  /**
8114
- * 结算单日期,月结算单填每月1日
8488
+ * 用户ID,长度不小于5位,仅支持字母和数字的组合。
8115
8489
  */
8116
- Date: string
8490
+ UserId: string
8117
8491
 
8118
8492
  /**
8119
- * 日结算单:daily
8120
- 月结算单:monthly
8493
+ * 退款订单号,仅支持数字、字母、下划线(_)、横杠字符(-)、点(.)的组合。
8494
+ */
8495
+ RefundId: string
8496
+
8497
+ /**
8498
+ * 聚鑫分配的支付主MidasAppId
8499
+ */
8500
+ MidasAppId: string
8501
+
8502
+ /**
8503
+ * 聚鑫分配的安全ID
8504
+ */
8505
+ MidasSecretId: string
8506
+
8507
+ /**
8508
+ * 按照聚鑫安全密钥计算的签名
8509
+ */
8510
+ MidasSignature: string
8511
+
8512
+ /**
8513
+ * 环境名:
8514
+ release: 现网环境
8515
+ sandbox: 沙箱环境
8516
+ development: 开发环境
8517
+ 缺省: release
8121
8518
  */
8122
- Type: string
8519
+ MidasEnvironment?: string
8123
8520
  }
8124
8521
 
8125
8522
  /**
@@ -8250,12 +8647,12 @@ export interface CreateBatchPaymentData {
8250
8647
  */
8251
8648
  export interface DistributeQueryRequest {
8252
8649
  /**
8253
- * 收单系统分配的开放ID
8650
+ * 使用门店OpenId
8254
8651
  */
8255
8652
  OpenId: string
8256
8653
 
8257
8654
  /**
8258
- * 收单系统分配的密钥
8655
+ * 使用门店OpenKey
8259
8656
  */
8260
8657
  OpenKey: string
8261
8658
 
@@ -8265,9 +8662,9 @@ export interface DistributeQueryRequest {
8265
8662
  Type: string
8266
8663
 
8267
8664
  /**
8268
- * 沙箱环境填sandbox,正式环境不填
8665
+ * 商户分账单号,type为2时,和DistributeNo二者传其一
8269
8666
  */
8270
- Profile?: string
8667
+ OutDistributeNo?: string
8271
8668
 
8272
8669
  /**
8273
8670
  * 平台分账单号,type为2时,和OutDistributeNo二者传其一
@@ -8275,14 +8672,14 @@ export interface DistributeQueryRequest {
8275
8672
  DistributeNo?: string
8276
8673
 
8277
8674
  /**
8278
- * 商户分账单号,type为2时,和DistributeNo二者传其一
8675
+ * 平台交易订单号
8279
8676
  */
8280
- OutDistributeNo?: string
8677
+ OrderNo?: string
8281
8678
 
8282
8679
  /**
8283
- * 平台交易订单号
8680
+ * 沙箱环境填sandbox,正式环境不填
8284
8681
  */
8285
- OrderNo?: string
8682
+ Profile?: string
8286
8683
  }
8287
8684
 
8288
8685
  /**
@@ -8726,11 +9123,6 @@ export interface ViewContractRequest {
8726
9123
  */
8727
9124
  OpenKey: string
8728
9125
 
8729
- /**
8730
- * 沙箱环境填sandbox,正式环境不填
8731
- */
8732
- Profile?: string
8733
-
8734
9126
  /**
8735
9127
  * 外部合同主键编号(ContractId或OutContractId必须传一个)
8736
9128
  */
@@ -8740,6 +9132,11 @@ export interface ViewContractRequest {
8740
9132
  * 合同主键(ContractId或OutContractId必须传一个)
8741
9133
  */
8742
9134
  ContractId?: string
9135
+
9136
+ /**
9137
+ * 沙箱环境填sandbox,正式环境不填
9138
+ */
9139
+ Profile?: string
8743
9140
  }
8744
9141
 
8745
9142
  /**
@@ -10319,12 +10716,12 @@ export interface QueryInvoiceV2Request {
10319
10716
  */
10320
10717
  export interface DistributeAccreditQueryRequest {
10321
10718
  /**
10322
- * 收单系统分配的开放ID
10719
+ * 使用门店OpenId
10323
10720
  */
10324
10721
  OpenId: string
10325
10722
 
10326
10723
  /**
10327
- * 收单系统分配的密钥
10724
+ * 使用门店OpenKey
10328
10725
  */
10329
10726
  OpenKey: string
10330
10727
 
@@ -10584,19 +10981,48 @@ export interface QuerySmallAmountTransferRequest {
10584
10981
  OldTranSeqNo: string
10585
10982
 
10586
10983
  /**
10587
- * STRING(8),交易日期(格式:20190101)
10984
+ * STRING(8),交易日期(格式:20190101)
10985
+ */
10986
+ TranDate: string
10987
+
10988
+ /**
10989
+ * STRING(1027),保留域
10990
+ */
10991
+ ReservedMsg?: string
10992
+
10993
+ /**
10994
+ * STRING(12),接入环境,默认接入沙箱环境。接入正式环境填"prod"
10995
+ */
10996
+ Profile?: string
10997
+ }
10998
+
10999
+ /**
11000
+ * 支持的银行信息
11001
+ */
11002
+ export interface SupportBankInfo {
11003
+ /**
11004
+ * 银行简称。
11005
+ */
11006
+ BankCode: string
11007
+
11008
+ /**
11009
+ * 银行名称。
10588
11010
  */
10589
- TranDate: string
11011
+ BankName: string
10590
11012
 
10591
11013
  /**
10592
- * STRING(1027),保留域
10593
- */
10594
- ReservedMsg?: string
11014
+ * 状态。
11015
+ __MAINTAINING__: 维护中
11016
+ __WORKING__: 正常工作
11017
+ 注意:此字段可能返回 null,表示取不到有效值。
11018
+ */
11019
+ MaintainStatus: string
10595
11020
 
10596
11021
  /**
10597
- * STRING(12),接入环境,默认接入沙箱环境。接入正式环境填"prod"
10598
- */
10599
- Profile?: string
11022
+ * 银行渠道维护公告。
11023
+ 注意:此字段可能返回 null,表示取不到有效值。
11024
+ */
11025
+ BankNotice: string
10600
11026
  }
10601
11027
 
10602
11028
  /**
@@ -10776,6 +11202,40 @@ export interface AgentTaxPayment {
10776
11202
  Tax: number
10777
11203
  }
10778
11204
 
11205
+ /**
11206
+ * UploadFile请求参数结构体
11207
+ */
11208
+ export interface UploadFileRequest {
11209
+ /**
11210
+ * 文件名
11211
+ */
11212
+ FileName: string
11213
+
11214
+ /**
11215
+ * 文件类型
11216
+ __IdCard__:身份证
11217
+ __IdCardCheck__:身份证加验证(只支持人像面)
11218
+ */
11219
+ FileType: string
11220
+
11221
+ /**
11222
+ * 文件链接
11223
+ __FileUrl和FileContent二选一__
11224
+ */
11225
+ FileUrl?: string
11226
+
11227
+ /**
11228
+ * 文件内容,Base64编码
11229
+ __FileUrl和FileContent二选一__
11230
+ */
11231
+ FileContent?: string
11232
+
11233
+ /**
11234
+ * 文件扩展信息
11235
+ */
11236
+ FileExtendInfo?: Array<AnchorExtendInfo>
11237
+ }
11238
+
10779
11239
  /**
10780
11240
  * QueryBankWithdrawCashDetails返回参数结构体
10781
11241
  */
@@ -11852,12 +12312,12 @@ _不填默认为生产环境_
11852
12312
  */
11853
12313
  export interface DistributeRemoveReceiverRequest {
11854
12314
  /**
11855
- * 收单系统分配的开放ID
12315
+ * 使用门店OpenId
11856
12316
  */
11857
12317
  OpenId: string
11858
12318
 
11859
12319
  /**
11860
- * 收单系统分配的密钥
12320
+ * 使用门店OpenKey
11861
12321
  */
11862
12322
  OpenKey: string
11863
12323
 
@@ -11867,14 +12327,14 @@ export interface DistributeRemoveReceiverRequest {
11867
12327
  MerchantNo: string
11868
12328
 
11869
12329
  /**
11870
- * 沙箱环境填sandbox,正式环境不填
12330
+ * 备注
11871
12331
  */
11872
- Profile?: string
12332
+ Remark?: string
11873
12333
 
11874
12334
  /**
11875
- * 备注
12335
+ * 沙箱环境填sandbox,正式环境不填
11876
12336
  */
11877
- Remark?: string
12337
+ Profile?: string
11878
12338
  }
11879
12339
 
11880
12340
  /**
@@ -11949,29 +12409,29 @@ export interface AddShopRequest {
11949
12409
  OpenId: string
11950
12410
 
11951
12411
  /**
11952
- * 门店简称(例如:南山店)
12412
+ * 收单系统分配的密钥
11953
12413
  */
11954
- ShopName: string
12414
+ OpenKey: string
11955
12415
 
11956
12416
  /**
11957
- * 商户编号
12417
+ * 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
11958
12418
  */
11959
- MerchantNo: string
12419
+ OutShopId: string
11960
12420
 
11961
12421
  /**
11962
- * 整体门面(含招牌)图片【公共区】
12422
+ * 门店简称(例如:南山店)
11963
12423
  */
11964
- PictureTwo: string
12424
+ ShopName: string
11965
12425
 
11966
12426
  /**
11967
- * 店内环境图片【公共区】
12427
+ * 门店全称(例如:江山小厨(南山店))
11968
12428
  */
11969
- PictureThree: string
12429
+ ShopFullName: string
11970
12430
 
11971
12431
  /**
11972
- * 整体门面(含招牌)图片【公共区】
12432
+ * 商户编号
11973
12433
  */
11974
- PictureOne: string
12434
+ MerchantNo: string
11975
12435
 
11976
12436
  /**
11977
12437
  * 门店电话
@@ -11979,9 +12439,9 @@ export interface AddShopRequest {
11979
12439
  Telephone: string
11980
12440
 
11981
12441
  /**
11982
- * 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
12442
+ * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
11983
12443
  */
11984
- OutShopId: string
12444
+ OpenHours: string
11985
12445
 
11986
12446
  /**
11987
12447
  * 门店所在的城市编码
@@ -11989,64 +12449,64 @@ export interface AddShopRequest {
11989
12449
  CityId: string
11990
12450
 
11991
12451
  /**
11992
- * 门店全称(例如:江山小厨(南山店))
12452
+ * 门店详细地址,不含省市区县名称
11993
12453
  */
11994
- ShopFullName: string
12454
+ Address: string
11995
12455
 
11996
12456
  /**
11997
- * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
12457
+ * 整体门面(含招牌)图片【公共区】
11998
12458
  */
11999
- OpenHours: string
12459
+ PictureOne: string
12000
12460
 
12001
12461
  /**
12002
- * 门店详细地址,不含省市区县名称
12462
+ * 整体门面(含招牌)图片【公共区】
12003
12463
  */
12004
- Address: string
12464
+ PictureTwo: string
12005
12465
 
12006
12466
  /**
12007
- * 收单系统分配的密钥
12467
+ * 店内环境图片【公共区】
12008
12468
  */
12009
- OpenKey: string
12469
+ PictureThree: string
12010
12470
 
12011
12471
  /**
12012
- * 沙箱环境填sandbox,正式环境不填
12472
+ * 负责人手机号码
12013
12473
  */
12014
- Profile?: string
12474
+ FinancialTelephone?: string
12015
12475
 
12016
12476
  /**
12017
- * 高德地图纬度
12477
+ * 门店负责人
12018
12478
  */
12019
- LatitudeTwo?: string
12479
+ Contact?: string
12020
12480
 
12021
12481
  /**
12022
- * 其他照片【公共区】
12482
+ * 百度地图纬度
12023
12483
  */
12024
- OtherPicture?: string
12484
+ Latitude?: string
12025
12485
 
12026
12486
  /**
12027
- * 高德地图经度
12487
+ * 高德地图纬度
12028
12488
  */
12029
- LongitudeTwo?: string
12489
+ LatitudeTwo?: string
12030
12490
 
12031
12491
  /**
12032
- * 门店负责人
12492
+ * 百度地图经度
12033
12493
  */
12034
- Contact?: string
12494
+ Longitude?: string
12035
12495
 
12036
12496
  /**
12037
- * 百度地图经度
12497
+ * 高德地图经度
12038
12498
  */
12039
- Longitude?: string
12499
+ LongitudeTwo?: string
12040
12500
 
12041
12501
  /**
12042
- * 百度地图纬度
12502
+ * 其他照片【公共区】
12043
12503
  */
12044
- Latitude?: string
12504
+ OtherPicture?: string
12045
12505
 
12046
12506
  /**
12047
- * 负责人手机号码
12507
+ * 沙箱环境填sandbox,正式环境不填
12048
12508
  */
12049
- FinancialTelephone?: string
12509
+ Profile?: string
12050
12510
  }
12051
12511
 
12052
12512
  /**
@@ -12409,6 +12869,60 @@ export interface QueryTransferResultRequest {
12409
12869
  Profile?: string
12410
12870
  }
12411
12871
 
12872
+ /**
12873
+ * 查询对账文件申请结果
12874
+ */
12875
+ export interface QueryReconciliationFileApplyInfoResult {
12876
+ /**
12877
+ * 申请对账文件的任务ID。
12878
+ */
12879
+ ApplyFileId: string
12880
+
12881
+ /**
12882
+ * 对账文件申请状态。
12883
+ __I__:申请中
12884
+ __S__:申请成功
12885
+ __F__:申请失败
12886
+ */
12887
+ ApplyStatus: string
12888
+
12889
+ /**
12890
+ * 申请结果描述。
12891
+ 注意:此字段可能返回 null,表示取不到有效值。
12892
+ */
12893
+ ApplyMessage: string
12894
+
12895
+ /**
12896
+ * 对账文件下载地址列表。
12897
+ 注意:此字段可能返回 null,表示取不到有效值。
12898
+ */
12899
+ FileUrlArray: Array<string>
12900
+ }
12901
+
12902
+ /**
12903
+ * 申请对账文件结果
12904
+ */
12905
+ export interface ApplyReconciliationFileResult {
12906
+ /**
12907
+ * 申请对账文件的任务ID。
12908
+ */
12909
+ ApplyFileId: string
12910
+
12911
+ /**
12912
+ * 对账文件申请状态。
12913
+ __I__:申请中
12914
+ __S__:申请成功
12915
+ __F__:申请失败
12916
+ */
12917
+ ApplyStatus: string
12918
+
12919
+ /**
12920
+ * 申请结果描述。
12921
+ 注意:此字段可能返回 null,表示取不到有效值。
12922
+ */
12923
+ ApplyMessage: string
12924
+ }
12925
+
12412
12926
  /**
12413
12927
  * QueryOpenBankExternalSubMerchantBankAccount返回参数结构体
12414
12928
  */
@@ -12817,6 +13331,63 @@ development 开发环境
12817
13331
  TransFee?: string
12818
13332
  }
12819
13333
 
13334
+ /**
13335
+ * QueryFundsTransactionDetails请求参数结构体
13336
+ */
13337
+ export interface QueryFundsTransactionDetailsRequest {
13338
+ /**
13339
+ * 查询的交易发生时间类型。
13340
+ __1__:当日
13341
+ __2__:历史
13342
+ */
13343
+ QueryDateType: string
13344
+
13345
+ /**
13346
+ * 查询的交易类型。
13347
+ __2__:提现/退款
13348
+ __3__:清分/充值
13349
+ */
13350
+ QueryTranType: string
13351
+
13352
+ /**
13353
+ * 父账户账号。
13354
+ _平安渠道为资金汇总账号_
13355
+ */
13356
+ BankAccountNumber: string
13357
+
13358
+ /**
13359
+ * 子账户账号。
13360
+ _平安渠道为见证子账户的账号_
13361
+ */
13362
+ SubAccountNumber: string
13363
+
13364
+ /**
13365
+ * 分页号, 起始值为1。
13366
+ */
13367
+ PageOffSet: string
13368
+
13369
+ /**
13370
+ * 查询开始日期,格式:yyyyMMdd。
13371
+ __若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
13372
+ */
13373
+ QueryStartDate?: string
13374
+
13375
+ /**
13376
+ * 查询终止日期,格式:yyyyMMdd。
13377
+ __若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
13378
+ */
13379
+ QueryEndDate?: string
13380
+
13381
+ /**
13382
+ * 环境名。
13383
+ __release__: 现网环境
13384
+ __sandbox__: 沙箱环境
13385
+ __development__: 开发环境
13386
+ _缺省: release_
13387
+ */
13388
+ MidasEnvironment?: string
13389
+ }
13390
+
12820
13391
  /**
12821
13392
  * 第三方子商户银行卡绑定返回结果
12822
13393
  */
@@ -12919,12 +13490,12 @@ export interface CreateMerchantResultData {
12919
13490
  */
12920
13491
  export interface DistributeCancelRequest {
12921
13492
  /**
12922
- * 收单系统分配的开放ID
13493
+ * 使用门店OpenId
12923
13494
  */
12924
13495
  OpenId: string
12925
13496
 
12926
13497
  /**
12927
- * 收单系统分配的密钥
13498
+ * 使用门店OpenKey
12928
13499
  */
12929
13500
  OpenKey: string
12930
13501
 
@@ -12934,9 +13505,9 @@ export interface DistributeCancelRequest {
12934
13505
  OrderNo: string
12935
13506
 
12936
13507
  /**
12937
- * 沙箱环境填sandbox,正式环境不填
13508
+ * 商户分账单号,type为2时,和DistributeNo二者传其一
12938
13509
  */
12939
- Profile?: string
13510
+ OutDistributeNo?: string
12940
13511
 
12941
13512
  /**
12942
13513
  * 平台分账单号,type为2时,和OutDistributeNo二者传其一
@@ -12944,64 +13515,38 @@ export interface DistributeCancelRequest {
12944
13515
  DistributeNo?: string
12945
13516
 
12946
13517
  /**
12947
- * 商户分账单号,type为2时,和DistributeNo二者传其一
13518
+ * 沙箱环境填sandbox,正式环境不填
12948
13519
  */
12949
- OutDistributeNo?: string
13520
+ Profile?: string
12950
13521
  }
12951
13522
 
12952
13523
  /**
12953
- * RegisterBillSupportWithdraw请求参数结构体
13524
+ * QueryOpenBankSupportBankList返回参数结构体
12954
13525
  */
12955
- export interface RegisterBillSupportWithdrawRequest {
12956
- /**
12957
- * STRING(32),交易网会员代码
12958
- */
12959
- TranNetMemberCode: string
12960
-
12961
- /**
12962
- * STRING(50),订单号
12963
- */
12964
- OrderNo: string
12965
-
12966
- /**
12967
- * STRING(20),挂账金额(包含交易费用)
12968
- */
12969
- SuspendAmt: string
12970
-
12971
- /**
12972
- * STRING(20),交易费用(暂未使用,默认传0.0)
12973
- */
12974
- TranFee: string
12975
-
12976
- /**
12977
- * String(22),商户号(签约客户号)
12978
- */
12979
- MrchCode: string
12980
-
12981
- /**
12982
- * STRING(300),备注
12983
- */
12984
- Remark?: string
12985
-
13526
+ export interface QueryOpenBankSupportBankListResponse {
12986
13527
  /**
12987
- * STRING(300),保留域1
12988
- */
12989
- ReservedMsgOne?: string
13528
+ * 错误码。
13529
+ __SUCCESS__: 成功
13530
+ __其他__: 见附录-错误码表
13531
+ */
13532
+ ErrCode: string
12990
13533
 
12991
13534
  /**
12992
- * STRING(300),保留域2
12993
- */
12994
- ReservedMsgTwo?: string
13535
+ * 错误消息。
13536
+ 注意:此字段可能返回 null,表示取不到有效值。
13537
+ */
13538
+ ErrMessage: string
12995
13539
 
12996
13540
  /**
12997
- * STRING(300),保留域3
12998
- */
12999
- ReservedMsgThree?: string
13541
+ * 返回结果。
13542
+ 注意:此字段可能返回 null,表示取不到有效值。
13543
+ */
13544
+ Result: QueryOpenBankSupportBankListResult
13000
13545
 
13001
13546
  /**
13002
- * STRING(12),接入环境,默认接入沙箱环境。接入正式环境填"prod"
13547
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13003
13548
  */
13004
- Profile?: string
13549
+ RequestId?: string
13005
13550
  }
13006
13551
 
13007
13552
  /**
@@ -13174,6 +13719,12 @@ export interface OpenBankPayeeInfo {
13174
13719
  * 联行号。渠道为TENPAY,付款方式为OPENBANK_PAYMENT时必选
13175
13720
  */
13176
13721
  BankBranchId?: string
13722
+
13723
+ /**
13724
+ * 收款方绑卡序列号。
13725
+ 当渠道为TENPAY,付款方式为EBANK_PAYMENT时,上送收款方入驻云企付平台时,下发的绑卡序列号。
13726
+ */
13727
+ BindSerialNo?: string
13177
13728
  }
13178
13729
 
13179
13730
  /**
@@ -13563,6 +14114,21 @@ export interface MigrateOrderRefundRequest {
13563
14114
  RefundReason?: string
13564
14115
  }
13565
14116
 
14117
+ /**
14118
+ * 云企付-查询账户余额
14119
+ */
14120
+ export interface QueryOpenBankBankAccountBalanceResult {
14121
+ /**
14122
+ * 总余额,单位分
14123
+ */
14124
+ TotalBalance: string
14125
+
14126
+ /**
14127
+ * 昨日余额,单位分
14128
+ */
14129
+ YesterdayBalance: string
14130
+ }
14131
+
13566
14132
  /**
13567
14133
  * QuerySinglePaymentResult接口返回响应
13568
14134
  */
@@ -13734,6 +14300,31 @@ export interface ExternalContractUserInfo {
13734
14300
  ExternalUserId: string
13735
14301
  }
13736
14302
 
14303
+ /**
14304
+ * 支行信息
14305
+ */
14306
+ export interface BankBranchInfo {
14307
+ /**
14308
+ * 银行名称。
14309
+ */
14310
+ BankName: string
14311
+
14312
+ /**
14313
+ * 银行简称。
14314
+ */
14315
+ BankAbbreviation: string
14316
+
14317
+ /**
14318
+ * 支行名。
14319
+ */
14320
+ BankBranchName: string
14321
+
14322
+ /**
14323
+ * 联行号。
14324
+ */
14325
+ BankBranchId: string
14326
+ }
14327
+
13737
14328
  /**
13738
14329
  * 用户信息
13739
14330
  */
@@ -13805,6 +14396,49 @@ export interface ApplyApplicationMaterialRequest {
13805
14396
  Profile?: string
13806
14397
  }
13807
14398
 
14399
+ /**
14400
+ * QueryOpenBankBankAccountBalance请求参数结构体
14401
+ */
14402
+ export interface QueryOpenBankBankAccountBalanceRequest {
14403
+ /**
14404
+ * 云企付渠道商户号。外部接入平台入驻云企付平台后下发。
14405
+ */
14406
+ ChannelMerchantId: string
14407
+
14408
+ /**
14409
+ * 云企付渠道子商户号。入驻在渠道商户下的子商户ID,如付款方的商户ID,对应创建支付订单中接口参数中的PayerInfo中的payerId。
14410
+ */
14411
+ ChannelSubMerchantId: string
14412
+
14413
+ /**
14414
+ * 渠道名称。
14415
+ __TENPAY__: 商企付
14416
+ __WECHAT__: 微信支付
14417
+ __ALIPAY__: 支付宝
14418
+ */
14419
+ ChannelName: string
14420
+
14421
+ /**
14422
+ * 支付方式,如
14423
+ __EBANK_PAYMENT__:ebank付款
14424
+ __OPENBANK_PAYMENT__: openbank付款
14425
+ */
14426
+ PaymentMethod: string
14427
+
14428
+ /**
14429
+ * 绑卡序列号,银行账户唯一ID,区分多卡或多账户的场景
14430
+ */
14431
+ BindSerialNo: string
14432
+
14433
+ /**
14434
+ * 环境类型
14435
+ release:生产环境
14436
+ sandbox:沙箱环境
14437
+ 缺省默认为生产环境
14438
+ */
14439
+ Environment?: string
14440
+ }
14441
+
13808
14442
  /**
13809
14443
  * ModifyAgentTaxPaymentInfo请求参数结构体
13810
14444
  */
@@ -14136,11 +14770,6 @@ export interface DownloadOrgFileRequest {
14136
14770
  */
14137
14771
  OpenKey: string
14138
14772
 
14139
- /**
14140
- * 沙箱环境填sandbox,正式环境不填
14141
- */
14142
- Profile?: string
14143
-
14144
14773
  /**
14145
14774
  * 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
14146
14775
  */
@@ -14150,6 +14779,11 @@ export interface DownloadOrgFileRequest {
14150
14779
  * 文件路径
14151
14780
  */
14152
14781
  FilePath?: string
14782
+
14783
+ /**
14784
+ * 沙箱环境填sandbox,正式环境不填
14785
+ */
14786
+ Profile?: string
14153
14787
  }
14154
14788
 
14155
14789
  /**
@@ -14253,42 +14887,19 @@ export interface Order {
14253
14887
  }
14254
14888
 
14255
14889
  /**
14256
- * QueryRefund请求参数结构体
14890
+ * QueryAgentStatements请求参数结构体
14257
14891
  */
14258
- export interface QueryRefundRequest {
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
-
14892
+ export interface QueryAgentStatementsRequest {
14279
14893
  /**
14280
- * 按照聚鑫安全密钥计算的签名
14894
+ * 结算单日期,月结算单填每月1日
14281
14895
  */
14282
- MidasSignature: string
14896
+ Date: string
14283
14897
 
14284
14898
  /**
14285
- * 环境名:
14286
- release: 现网环境
14287
- sandbox: 沙箱环境
14288
- development: 开发环境
14289
- 缺省: release
14899
+ * 日结算单:daily
14900
+ 月结算单:monthly
14290
14901
  */
14291
- MidasEnvironment?: string
14902
+ Type: string
14292
14903
  }
14293
14904
 
14294
14905
  /**
@@ -14540,37 +15151,30 @@ export interface QueryInvoiceResponse {
14540
15151
  }
14541
15152
 
14542
15153
  /**
14543
- * UploadFile请求参数结构体
15154
+ * QueryOpenBankBankAccountBalance返回参数结构体
14544
15155
  */
14545
- export interface UploadFileRequest {
15156
+ export interface QueryOpenBankBankAccountBalanceResponse {
14546
15157
  /**
14547
- * 文件名
15158
+ * 业务系统返回码,SUCCESS表示成功,其他表示失败。
14548
15159
  */
14549
- FileName: string
14550
-
14551
- /**
14552
- * 文件类型
14553
- __IdCard__:身份证
14554
- __IdCardCheck__:身份证加验证(只支持人像面)
14555
- */
14556
- FileType: string
15160
+ ErrCode: string
14557
15161
 
14558
15162
  /**
14559
- * 文件链接
14560
- __FileUrl和FileContent二选一__
15163
+ * 业务系统返回消息。
15164
+ 注意:此字段可能返回 null,表示取不到有效值。
14561
15165
  */
14562
- FileUrl?: string
15166
+ ErrMessage: string
14563
15167
 
14564
15168
  /**
14565
- * 文件内容,Base64编码
14566
- __FileUrl和FileContent二选一__
15169
+ * 账户余额查询响应对象。
15170
+ 注意:此字段可能返回 null,表示取不到有效值。
14567
15171
  */
14568
- FileContent?: string
15172
+ Result: QueryOpenBankBankAccountBalanceResult
14569
15173
 
14570
15174
  /**
14571
- * 文件扩展信息
15175
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14572
15176
  */
14573
- FileExtendInfo?: Array<AnchorExtendInfo>
15177
+ RequestId?: string
14574
15178
  }
14575
15179
 
14576
15180
  /**
@@ -14642,6 +15246,36 @@ export interface UploadFileResponse {
14642
15246
  RequestId?: string
14643
15247
  }
14644
15248
 
15249
+ /**
15250
+ * 聚鑫-查询会员间交易信息列表结果
15251
+ */
15252
+ export interface QueryMemberTransactionDetailsResult {
15253
+ /**
15254
+ * 本次交易返回查询结果记录数。
15255
+ */
15256
+ ResultCount: number
15257
+
15258
+ /**
15259
+ * 符合业务查询条件的记录总数。
15260
+ 注意:此字段可能返回 null,表示取不到有效值。
15261
+ */
15262
+ TotalCount: number
15263
+
15264
+ /**
15265
+ * 结束标志。
15266
+ __0__:否
15267
+ __1__:是
15268
+ 注意:此字段可能返回 null,表示取不到有效值。
15269
+ */
15270
+ EndFlag: string
15271
+
15272
+ /**
15273
+ * 会员间交易信息数组
15274
+ 注意:此字段可能返回 null,表示取不到有效值。
15275
+ */
15276
+ TranItemArray: Array<MemberTransactionItem>
15277
+ }
15278
+
14645
15279
  /**
14646
15280
  * 创建商户结果
14647
15281
  */
@@ -15091,6 +15725,83 @@ export interface CreateSinglePaymentRequest {
15091
15725
  NotifyUrl?: string
15092
15726
  }
15093
15727
 
15728
+ /**
15729
+ * 会员间交易明细信息
15730
+ */
15731
+ export interface MemberTransactionItem {
15732
+ /**
15733
+ * 交易类型。
15734
+ __1__:转出
15735
+ __2__:转入
15736
+ */
15737
+ TransType: string
15738
+
15739
+ /**
15740
+ * 交易状态。
15741
+ __0__:成功
15742
+ */
15743
+ TranStatus: string
15744
+
15745
+ /**
15746
+ * 交易金额。
15747
+ */
15748
+ TransAmount: string
15749
+
15750
+ /**
15751
+ * 交易日期,格式:yyyyMMdd。
15752
+ */
15753
+ TransDate: string
15754
+
15755
+ /**
15756
+ * 交易时间,格式:HHmmss。
15757
+ 注意:此字段可能返回 null,表示取不到有效值。
15758
+ */
15759
+ TransTime: string
15760
+
15761
+ /**
15762
+ * 银行系统流水号。
15763
+ _平安渠道为见证系统流水号_
15764
+ */
15765
+ BankSequenceNumber: string
15766
+
15767
+ /**
15768
+ * 银行记账类型。
15769
+ _平安渠道为:_
15770
+ _1:会员支付_
15771
+ _2:会员冻结_
15772
+ _3:会员解冻_
15773
+ _4:登记挂账_
15774
+ _6:下单预支付_
15775
+ _7:确认并付款_
15776
+ _8:会员退款_
15777
+ _22:见证+收单平台调账_
15778
+ _23:见证+收单资金冻结_
15779
+ _24:见证+收单资金解冻_
15780
+ _25:会员间交易退款_
15781
+ 注意:此字段可能返回 null,表示取不到有效值。
15782
+ */
15783
+ BankBookingType: string
15784
+
15785
+ /**
15786
+ * 转入方子账户账号。
15787
+ _平安渠道为转入见证子账户的账号_
15788
+ */
15789
+ InSubAccountNumber: string
15790
+
15791
+ /**
15792
+ * 转出方子账户账号。
15793
+ _平安渠道为转出见证子账户的账号_
15794
+ */
15795
+ OutSubAccountNumber: string
15796
+
15797
+ /**
15798
+ * 备注。
15799
+ _平安渠道,如果是见证+收单的交易,返回交易订单号_
15800
+ 注意:此字段可能返回 null,表示取不到有效值。
15801
+ */
15802
+ Remark: string
15803
+ }
15804
+
15094
15805
  /**
15095
15806
  * 分账接收方响应对象
15096
15807
  */
@@ -15107,19 +15818,19 @@ export interface DistributeReceiverResult {
15107
15818
  */
15108
15819
  export interface DistributeApplyRequest {
15109
15820
  /**
15110
- * 收单系统分配的开放ID
15821
+ * 使用门店OpenId
15111
15822
  */
15112
15823
  OpenId: string
15113
15824
 
15114
15825
  /**
15115
- * 商户分账单号
15826
+ * 使用门店OpenKey
15116
15827
  */
15117
- OutDistributeNo: string
15828
+ OpenKey: string
15118
15829
 
15119
15830
  /**
15120
- * 收单系统分配的密钥
15831
+ * 商户分账单号
15121
15832
  */
15122
- OpenKey: string
15833
+ OutDistributeNo: string
15123
15834
 
15124
15835
  /**
15125
15836
  * 分账明细
@@ -15127,24 +15838,24 @@ export interface DistributeApplyRequest {
15127
15838
  Details: Array<MultiApplyDetail>
15128
15839
 
15129
15840
  /**
15130
- * 沙箱环境填sandbox,正式环境不填
15841
+ * 商户交易订单号,和OrderNo二者传其一
15131
15842
  */
15132
- Profile?: string
15843
+ DeveloperNo?: string
15133
15844
 
15134
15845
  /**
15135
- * 说明
15846
+ * 平台交易订单号,和DeveloperNo二者传其一
15136
15847
  */
15137
- Remark?: string
15848
+ OrderNo?: string
15138
15849
 
15139
15850
  /**
15140
- * 商户交易订单号,和OrderNo二者传其一
15851
+ * 说明
15141
15852
  */
15142
- DeveloperNo?: string
15853
+ Remark?: string
15143
15854
 
15144
15855
  /**
15145
- * 平台交易订单号,和DeveloperNo二者传其一
15856
+ * 沙箱环境填sandbox,正式环境不填
15146
15857
  */
15147
- OrderNo?: string
15858
+ Profile?: string
15148
15859
  }
15149
15860
 
15150
15861
  /**
@@ -15161,11 +15872,6 @@ export interface ViewShopRequest {
15161
15872
  */
15162
15873
  OpenKey: string
15163
15874
 
15164
- /**
15165
- * 沙箱环境填sandbox,正式环境不填
15166
- */
15167
- Profile?: string
15168
-
15169
15875
  /**
15170
15876
  * 外部商户主键编号(ShopNo或OutShopId必须传一个)
15171
15877
  */
@@ -15175,6 +15881,11 @@ export interface ViewShopRequest {
15175
15881
  * 门店编号(ShopNo或OutShopId必须传一个)
15176
15882
  */
15177
15883
  ShopNo?: string
15884
+
15885
+ /**
15886
+ * 沙箱环境填sandbox,正式环境不填
15887
+ */
15888
+ Profile?: string
15178
15889
  }
15179
15890
 
15180
15891
  /**
@@ -15471,45 +16182,73 @@ export interface CreateAgentTaxPaymentInfosResponse {
15471
16182
  RequestId?: string
15472
16183
  }
15473
16184
 
16185
+ /**
16186
+ * ApplyReconciliationFile返回参数结构体
16187
+ */
16188
+ export interface ApplyReconciliationFileResponse {
16189
+ /**
16190
+ * 错误码。
16191
+ __SUCCESS__: 成功
16192
+ __其他__: 见附录-错误码表
16193
+ */
16194
+ ErrCode: string
16195
+
16196
+ /**
16197
+ * 错误消息。
16198
+ */
16199
+ ErrMessage: string
16200
+
16201
+ /**
16202
+ * 返回结果。
16203
+ 注意:此字段可能返回 null,表示取不到有效值。
16204
+ */
16205
+ Result: ApplyReconciliationFileResult
16206
+
16207
+ /**
16208
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16209
+ */
16210
+ RequestId?: string
16211
+ }
16212
+
15474
16213
  /**
15475
16214
  * 合同-支付方式列表响应对象
15476
16215
  */
15477
16216
  export interface ContractPayListResult {
15478
16217
  /**
15479
- * 支付标签
16218
+ * 支付方式编号
15480
16219
  注意:此字段可能返回 null,表示取不到有效值。
15481
16220
  */
15482
- PaymentTag: string
16221
+ PaymentId: string
15483
16222
 
15484
16223
  /**
15485
- * 支付方式图片url路径
16224
+ * 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
15486
16225
  注意:此字段可能返回 null,表示取不到有效值。
15487
16226
  */
15488
- PaymentIcon: string
16227
+ PaymentType: string
15489
16228
 
15490
16229
  /**
15491
- * 支付方式
16230
+ * 支付标签
15492
16231
  注意:此字段可能返回 null,表示取不到有效值。
15493
16232
  */
15494
- PaymentOptionSix?: string
16233
+ PaymentTag: string
15495
16234
 
15496
16235
  /**
15497
- * 付款方式名称
16236
+ * 支付方式图片url路径
15498
16237
  注意:此字段可能返回 null,表示取不到有效值。
15499
16238
  */
15500
- PaymentName: string
16239
+ PaymentIcon: string
15501
16240
 
15502
16241
  /**
15503
- * 支付方式
16242
+ * 付款方式名称
15504
16243
  注意:此字段可能返回 null,表示取不到有效值。
15505
16244
  */
15506
- PaymentOptionSeven?: string
16245
+ PaymentName: string
15507
16246
 
15508
16247
  /**
15509
- * 支付方式
16248
+ * 付款方式名称(内部名称)
15510
16249
  注意:此字段可能返回 null,表示取不到有效值。
15511
16250
  */
15512
- PaymentOptionTwo?: string
16251
+ PaymentInternalName: string
15513
16252
 
15514
16253
  /**
15515
16254
  * 支付方式
@@ -15521,49 +16260,49 @@ export interface ContractPayListResult {
15521
16260
  * 支付方式
15522
16261
  注意:此字段可能返回 null,表示取不到有效值。
15523
16262
  */
15524
- PaymentOptionOther?: string
16263
+ PaymentOptionTwo?: string
15525
16264
 
15526
16265
  /**
15527
- * 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
16266
+ * 支付方式
15528
16267
  注意:此字段可能返回 null,表示取不到有效值。
15529
16268
  */
15530
- PaymentType: string
16269
+ PaymentOptionThree?: string
15531
16270
 
15532
16271
  /**
15533
16272
  * 支付方式
15534
16273
  注意:此字段可能返回 null,表示取不到有效值。
15535
16274
  */
15536
- PaymentOptionFive?: string
16275
+ PaymentOptionFour?: string
15537
16276
 
15538
16277
  /**
15539
16278
  * 支付方式
15540
16279
  注意:此字段可能返回 null,表示取不到有效值。
15541
16280
  */
15542
- PaymentOptionNine?: string
16281
+ PaymentOptionFive?: string
15543
16282
 
15544
16283
  /**
15545
- * 支付方式编号
16284
+ * 支付方式
15546
16285
  注意:此字段可能返回 null,表示取不到有效值。
15547
16286
  */
15548
- PaymentId: string
16287
+ PaymentOptionSix?: string
15549
16288
 
15550
16289
  /**
15551
16290
  * 支付方式
15552
16291
  注意:此字段可能返回 null,表示取不到有效值。
15553
16292
  */
15554
- PaymentOptionThree?: string
16293
+ PaymentOptionSeven?: string
15555
16294
 
15556
16295
  /**
15557
- * 付款方式名称(内部名称)
16296
+ * 支付方式
15558
16297
  注意:此字段可能返回 null,表示取不到有效值。
15559
16298
  */
15560
- PaymentInternalName: string
16299
+ PaymentOptionOther?: string
15561
16300
 
15562
16301
  /**
15563
16302
  * 支付方式
15564
16303
  注意:此字段可能返回 null,表示取不到有效值。
15565
16304
  */
15566
- PaymentOptionFour?: string
16305
+ PaymentOptionNine?: string
15567
16306
 
15568
16307
  /**
15569
16308
  * 支付方式
@@ -15679,23 +16418,18 @@ export interface DescribeOrderStatusRequest {
15679
16418
  }
15680
16419
 
15681
16420
  /**
15682
- * 云企付-关单响应
16421
+ * 米大师内部存放的合约信息
15683
16422
  */
15684
- export interface CloseOpenBankPaymentOrderResult {
15685
- /**
15686
- * 外部商户订单号
15687
- */
15688
- OutOrderId: string
15689
-
16423
+ export interface ChannelContractInfo {
15690
16424
  /**
15691
- * 云企付平台订单号
16425
+ * 外部合约协议号
15692
16426
  */
15693
- ChannelOrderId: string
16427
+ OutContractCode: string
15694
16428
 
15695
16429
  /**
15696
- * 订单状态。关单成功CLOSED
16430
+ * 米大师内部生成的合约协议号
15697
16431
  */
15698
- OrderStatus: string
16432
+ ChannelContractCode: string
15699
16433
  }
15700
16434
 
15701
16435
  /**
@@ -15730,6 +16464,21 @@ export interface MerchantRiskInfo {
15730
16464
  RiskTypes: string
15731
16465
  }
15732
16466
 
16467
+ /**
16468
+ * 付款人查询结果
16469
+ */
16470
+ export interface QueryPayerinfoResult {
16471
+ /**
16472
+ * 错误码
16473
+ */
16474
+ Code: string
16475
+
16476
+ /**
16477
+ * 付款人查询数据
16478
+ */
16479
+ Data: QueryPayerinfoData
16480
+ }
16481
+
15733
16482
  /**
15734
16483
  * 查询订单付款状态响应对象
15735
16484
  */
@@ -16509,6 +17258,40 @@ export interface QueryAgentTaxPaymentBatchRequest {
16509
17258
  Profile?: string
16510
17259
  }
16511
17260
 
17261
+ /**
17262
+ * ApplyReconciliationFile请求参数结构体
17263
+ */
17264
+ export interface ApplyReconciliationFileRequest {
17265
+ /**
17266
+ * 申请的文件类型。
17267
+ __CZ__:充值文件
17268
+ __TX__:提现文件
17269
+ __JY__:交易文件
17270
+ __YE__:余额文件
17271
+ */
17272
+ ApplyFileType: string
17273
+
17274
+ /**
17275
+ * 申请的对账文件日期,格式:yyyyMMdd。
17276
+ */
17277
+ ApplyFileDate: string
17278
+
17279
+ /**
17280
+ * 父账户账号。
17281
+ _平安渠道为资金汇总账号_
17282
+ */
17283
+ BankAccountNumber: string
17284
+
17285
+ /**
17286
+ * 环境名。
17287
+ __release__: 现网环境
17288
+ __sandbox__: 沙箱环境
17289
+ __development__: 开发环境
17290
+ _缺省: release_
17291
+ */
17292
+ MidasEnvironment?: string
17293
+ }
17294
+
16512
17295
  /**
16513
17296
  * RegisterBillSupportWithdraw返回参数结构体
16514
17297
  */
@@ -16946,6 +17729,34 @@ export interface QueryMerchantBalanceResult {
16946
17729
  Data: QueryMerchantBalanceData
16947
17730
  }
16948
17731
 
17732
+ /**
17733
+ * QueryFundsTransactionDetails返回参数结构体
17734
+ */
17735
+ export interface QueryFundsTransactionDetailsResponse {
17736
+ /**
17737
+ * 错误码。
17738
+ __SUCCESS__: 成功
17739
+ __其他__: 见附录-错误码表
17740
+ */
17741
+ ErrCode: string
17742
+
17743
+ /**
17744
+ * 错误消息。
17745
+ */
17746
+ ErrMessage: string
17747
+
17748
+ /**
17749
+ * 返回结果。
17750
+ 注意:此字段可能返回 null,表示取不到有效值。
17751
+ */
17752
+ Result: QueryFundsTransactionDetailsResult
17753
+
17754
+ /**
17755
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17756
+ */
17757
+ RequestId?: string
17758
+ }
17759
+
16949
17760
  /**
16950
17761
  * 米大师内部生成的合约信息
16951
17762
  */
@@ -17549,6 +18360,69 @@ export interface DistributeCancelResponse {
17549
18360
  RequestId?: string
17550
18361
  }
17551
18362
 
18363
+ /**
18364
+ * QueryOpenBankBankBranchList请求参数结构体
18365
+ */
18366
+ export interface QueryOpenBankBankBranchListRequest {
18367
+ /**
18368
+ * 渠道商户ID。
18369
+ */
18370
+ ChannelMerchantId: string
18371
+
18372
+ /**
18373
+ * 渠道名称。
18374
+ __TENPAY__: 商企付
18375
+ __WECHAT__: 微信支付
18376
+ __ALIPAY__: 支付宝
18377
+ */
18378
+ ChannelName: string
18379
+
18380
+ /**
18381
+ * 支付方式。
18382
+ __EBANK_PAYMENT__:ebank付款
18383
+ __OPENBANK_PAYMENT__: openbank付款
18384
+ */
18385
+ PaymentMethod: string
18386
+
18387
+ /**
18388
+ * 支行名称。
18389
+ */
18390
+ BankBranchName: string
18391
+
18392
+ /**
18393
+ * 银行简称。
18394
+ */
18395
+ BankAbbreviation: string
18396
+
18397
+ /**
18398
+ * 页码。Index和Count必须大于等于1。
18399
+ */
18400
+ PageNumber: Paging
18401
+
18402
+ /**
18403
+ * 环境类型。
18404
+ __release__:生产环境
18405
+ __sandbox__:沙箱环境
18406
+ _不填默认为生产环境_
18407
+ */
18408
+ Environment?: string
18409
+ }
18410
+
18411
+ /**
18412
+ * 查询联行号返回结果
18413
+ */
18414
+ export interface QueryOpenBankBankBranchListResult {
18415
+ /**
18416
+ * 支行列表。
18417
+ */
18418
+ BankBranchList: Array<BankBranchInfo>
18419
+
18420
+ /**
18421
+ * 列表总数。
18422
+ */
18423
+ Count: number
18424
+ }
18425
+
17552
18426
  /**
17553
18427
  * 提交贸易材料结果
17554
18428
  */
@@ -17648,18 +18522,23 @@ export interface DeduceQuotaResponse {
17648
18522
  }
17649
18523
 
17650
18524
  /**
17651
- * 米大师内部存放的合约信息
18525
+ * 云企付-关单响应
17652
18526
  */
17653
- export interface ChannelContractInfo {
18527
+ export interface CloseOpenBankPaymentOrderResult {
17654
18528
  /**
17655
- * 外部合约协议号
18529
+ * 外部商户订单号
17656
18530
  */
17657
- OutContractCode: string
18531
+ OutOrderId: string
17658
18532
 
17659
18533
  /**
17660
- * 米大师内部生成的合约协议号
18534
+ * 云企付平台订单号
17661
18535
  */
17662
- ChannelContractCode: string
18536
+ ChannelOrderId: string
18537
+
18538
+ /**
18539
+ * 订单状态。关单成功CLOSED
18540
+ */
18541
+ OrderStatus: string
17663
18542
  }
17664
18543
 
17665
18544
  /**
@@ -17702,6 +18581,61 @@ export interface CreateBatchPaymentRecipient {
17702
18581
  ReqReserved?: string
17703
18582
  }
17704
18583
 
18584
+ /**
18585
+ * RegisterBillSupportWithdraw请求参数结构体
18586
+ */
18587
+ export interface RegisterBillSupportWithdrawRequest {
18588
+ /**
18589
+ * STRING(32),交易网会员代码
18590
+ */
18591
+ TranNetMemberCode: string
18592
+
18593
+ /**
18594
+ * STRING(50),订单号
18595
+ */
18596
+ OrderNo: string
18597
+
18598
+ /**
18599
+ * STRING(20),挂账金额(包含交易费用)
18600
+ */
18601
+ SuspendAmt: string
18602
+
18603
+ /**
18604
+ * STRING(20),交易费用(暂未使用,默认传0.0)
18605
+ */
18606
+ TranFee: string
18607
+
18608
+ /**
18609
+ * String(22),商户号(签约客户号)
18610
+ */
18611
+ MrchCode: string
18612
+
18613
+ /**
18614
+ * STRING(300),备注
18615
+ */
18616
+ Remark?: string
18617
+
18618
+ /**
18619
+ * STRING(300),保留域1
18620
+ */
18621
+ ReservedMsgOne?: string
18622
+
18623
+ /**
18624
+ * STRING(300),保留域2
18625
+ */
18626
+ ReservedMsgTwo?: string
18627
+
18628
+ /**
18629
+ * STRING(300),保留域3
18630
+ */
18631
+ ReservedMsgThree?: string
18632
+
18633
+ /**
18634
+ * STRING(12),接入环境,默认接入沙箱环境。接入正式环境填"prod"
18635
+ */
18636
+ Profile?: string
18637
+ }
18638
+
17705
18639
  /**
17706
18640
  * DeleteAgentTaxPaymentInfo返回参数结构体
17707
18641
  */
@@ -17712,6 +18646,28 @@ export interface DeleteAgentTaxPaymentInfoResponse {
17712
18646
  RequestId?: string
17713
18647
  }
17714
18648
 
18649
+ /**
18650
+ * 云企付-按日期查询回单下载地址
18651
+ */
18652
+ export interface QueryOpenBankDailyReceiptDownloadUrlResult {
18653
+ /**
18654
+ * 回单文件下载链接
18655
+ */
18656
+ DownloadUrl: string
18657
+
18658
+ /**
18659
+ * 过期时间
18660
+ */
18661
+ ExpireTime: string
18662
+
18663
+ /**
18664
+ * 回单状态
18665
+ PENDING: 处理中
18666
+ READY: 可以下载
18667
+ */
18668
+ ReceiptStatus: string
18669
+ }
18670
+
17715
18671
  /**
17716
18672
  * CreateSinglePay请求参数结构体
17717
18673
  */