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.
@@ -381,6 +381,10 @@ export interface UploadOrgFileRequest {
381
381
  * 收单系统分配的开放ID
382
382
  */
383
383
  OpenId: string;
384
+ /**
385
+ * 收单系统分配的密钥
386
+ */
387
+ OpenKey: string;
384
388
  /**
385
389
  * 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
386
390
  */
@@ -397,10 +401,6 @@ export interface UploadOrgFileRequest {
397
401
  * 文件扩展名(png,jpg,gif)
398
402
  */
399
403
  FileExtension: string;
400
- /**
401
- * 收单系统分配的密钥
402
- */
403
- OpenKey: string;
404
404
  /**
405
405
  * 沙箱环境填sandbox,正式环境不填
406
406
  */
@@ -741,11 +741,11 @@ __PROCESSING__: 进件中
741
741
  */
742
742
  export interface RefundTlinxOrderRequest {
743
743
  /**
744
- * 收单系统分配的开放ID
744
+ * 使用门店OpenId
745
745
  */
746
746
  OpenId: string;
747
747
  /**
748
- * 收单系统分配的密钥
748
+ * 使用门店OpenKey
749
749
  */
750
750
  OpenKey: string;
751
751
  /**
@@ -1006,6 +1006,31 @@ export interface CreateInvoiceResultData {
1006
1006
  */
1007
1007
  OrderSn: string;
1008
1008
  }
1009
+ /**
1010
+ * 对账文件信息
1011
+ */
1012
+ export interface FileItem {
1013
+ /**
1014
+ * STRING(256),文件名称
1015
+ 注意:此字段可能返回 null,表示取不到有效值。
1016
+ */
1017
+ FileName: string;
1018
+ /**
1019
+ * STRING(120),随机密码
1020
+ 注意:此字段可能返回 null,表示取不到有效值。
1021
+ */
1022
+ RandomPassword: string;
1023
+ /**
1024
+ * STRING(512),文件路径
1025
+ 注意:此字段可能返回 null,表示取不到有效值。
1026
+ */
1027
+ FilePath: string;
1028
+ /**
1029
+ * STRING(64),提取码
1030
+ 注意:此字段可能返回 null,表示取不到有效值。
1031
+ */
1032
+ DrawCode: string;
1033
+ }
1009
1034
  /**
1010
1035
  * UnbindOpenBankExternalSubMerchantBankAccount请求参数结构体
1011
1036
  */
@@ -1826,21 +1851,17 @@ export interface RevokeMemberRechargeThirdPayResponse {
1826
1851
  */
1827
1852
  export interface DistributeAccreditTlinxRequest {
1828
1853
  /**
1829
- * 收单系统分配的开放ID
1854
+ * 使用门店OpenId
1830
1855
  */
1831
1856
  OpenId: string;
1832
1857
  /**
1833
- * 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
1834
- */
1835
- AuthType: string;
1836
- /**
1837
- * 收单系统分配的密钥
1858
+ * 使用门店OpenKey
1838
1859
  */
1839
1860
  OpenKey: string;
1840
1861
  /**
1841
- * 沙箱环境填sandbox,正式环境不填
1862
+ * 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
1842
1863
  */
1843
- Profile?: string;
1864
+ AuthType: string;
1844
1865
  /**
1845
1866
  * 分账比例(500=5%)不传默认百分之10
1846
1867
  */
@@ -1849,6 +1870,10 @@ export interface DistributeAccreditTlinxRequest {
1849
1870
  * 营业执照商户全称
1850
1871
  */
1851
1872
  FullName?: string;
1873
+ /**
1874
+ * 沙箱环境填sandbox,正式环境不填
1875
+ */
1876
+ Profile?: string;
1852
1877
  }
1853
1878
  /**
1854
1879
  * QueryContractRelateShop请求参数结构体
@@ -1917,29 +1942,41 @@ export interface QueryExceedingInfoResponse {
1917
1942
  */
1918
1943
  export interface AddContractRequest {
1919
1944
  /**
1920
- * 签约扣率百分比(如:0.32)
1945
+ * 收单系统分配的开放ID
1921
1946
  */
1922
- Fee: string;
1947
+ OpenId: string;
1923
1948
  /**
1924
- * 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
1949
+ * 收单系统分配的密钥
1925
1950
  */
1926
- OutContractId: string;
1951
+ OpenKey: string;
1927
1952
  /**
1928
- * 封顶值(分为单位,无封顶填0)
1953
+ * 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
1929
1954
  */
1930
- PaymentClassificationLimit: string;
1955
+ OutContractId: string;
1931
1956
  /**
1932
- * 联系人电话
1957
+ * 合同编号(系统有唯一性校验)
1933
1958
  */
1934
- ContactTelephone: string;
1959
+ Code: string;
1935
1960
  /**
1936
1961
  * 支付方式编号
1937
1962
  */
1938
1963
  PaymentId: string;
1939
1964
  /**
1940
- * 收单系统分配的密钥
1965
+ * 支付方式行业分类编号
1941
1966
  */
1942
- OpenKey: string;
1967
+ PaymentClassificationId: string;
1968
+ /**
1969
+ * 封顶值(分为单位,无封顶填0)
1970
+ */
1971
+ PaymentClassificationLimit: string;
1972
+ /**
1973
+ * 商户编号
1974
+ */
1975
+ MerchantNo: string;
1976
+ /**
1977
+ * 签约扣率百分比(如:0.32)
1978
+ */
1979
+ Fee: string;
1943
1980
  /**
1944
1981
  * 合同生效日期(yyyy-mm-dd)
1945
1982
  */
@@ -1957,89 +1994,77 @@ export interface AddContractRequest {
1957
1994
  */
1958
1995
  SignName: string;
1959
1996
  /**
1960
- * 收单系统分配的开放ID
1961
- */
1962
- OpenId: string;
1963
- /**
1964
- * 商户编号
1997
+ * 合同签署日期(yyyy-mm-dd)
1965
1998
  */
1966
- MerchantNo: string;
1999
+ SignDate: string;
1967
2000
  /**
1968
- * 合同照片【私密区】
2001
+ * 是否自动续签(1是,0否)
1969
2002
  */
1970
- PictureOne: string;
2003
+ AutoSign: string;
1971
2004
  /**
1972
2005
  * 联系人
1973
2006
  */
1974
2007
  Contact: string;
1975
2008
  /**
1976
- * 合同签署日期(yyyy-mm-dd)
2009
+ * 联系人电话
1977
2010
  */
1978
- SignDate: string;
2011
+ ContactTelephone: string;
1979
2012
  /**
1980
- * 合同编号(系统有唯一性校验)
2013
+ * 合同照片【私密区】
1981
2014
  */
1982
- Code: string;
2015
+ PictureOne: string;
1983
2016
  /**
1984
- * 是否自动续签(1是,0否)
2017
+ * 合同照片【私密区】
1985
2018
  */
1986
- AutoSign: string;
2019
+ PictureTwo?: string;
1987
2020
  /**
1988
- * 支付方式行业分类编号
2021
+ * 渠道扩展字段,json格式
1989
2022
  */
1990
- PaymentClassificationId: string;
2023
+ ChannelExtJson?: string;
1991
2024
  /**
1992
2025
  * 沙箱环境填sandbox,正式环境不填
1993
2026
  */
1994
2027
  Profile?: string;
1995
2028
  /**
1996
- * 合同照片【私密区】
1997
- */
1998
- PictureTwo?: string;
1999
- /**
2000
- * 合同选项8
2001
- */
2002
- PaymentOptionTen?: string;
2003
- /**
2004
- * 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
2029
+ * 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2005
2030
  */
2006
- PaymentOptionNine?: string;
2031
+ PaymentOptionOne?: string;
2007
2032
  /**
2008
- * 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
2033
+ * 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2009
2034
  */
2010
- PaymentOptionOther?: string;
2035
+ PaymentOptionTwo?: string;
2011
2036
  /**
2012
- * 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2037
+ * 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
2013
2038
  */
2014
- PaymentOptionFive?: string;
2039
+ PaymentOptionThree?: string;
2015
2040
  /**
2016
2041
  * 合同选项4(不同支付方式规则不一样,请以支付方式规定的格式传值)
2017
2042
  */
2018
2043
  PaymentOptionFour?: string;
2019
2044
  /**
2020
- * 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
2045
+ * 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2021
2046
  */
2022
- PaymentOptionSeven?: string;
2047
+ PaymentOptionFive?: string;
2023
2048
  /**
2024
2049
  * 合同证书选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2025
2050
  */
2026
2051
  PaymentOptionSix?: string;
2027
2052
  /**
2028
- * 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2053
+ * 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
2029
2054
  */
2030
- PaymentOptionOne?: string;
2055
+ PaymentOptionSeven?: string;
2031
2056
  /**
2032
- * 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
2057
+ * 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
2033
2058
  */
2034
- PaymentOptionThree?: string;
2059
+ PaymentOptionOther?: string;
2035
2060
  /**
2036
- * 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2061
+ * 合同选项8
2037
2062
  */
2038
- PaymentOptionTwo?: string;
2063
+ PaymentOptionTen?: string;
2039
2064
  /**
2040
- * 渠道扩展字段,json格式
2065
+ * 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
2041
2066
  */
2042
- ChannelExtJson?: string;
2067
+ PaymentOptionNine?: string;
2043
2068
  }
2044
2069
  /**
2045
2070
  * CreateAcct返回参数结构体
@@ -2063,25 +2088,25 @@ export interface CreateAcctResponse {
2063
2088
  */
2064
2089
  export interface DistributeAddReceiverRequest {
2065
2090
  /**
2066
- * 收单系统分配的开放ID
2091
+ * 使用门店OpenId
2067
2092
  */
2068
2093
  OpenId: string;
2069
2094
  /**
2070
- * 收单系统分配的密钥
2095
+ * 使用门店OpenKey
2071
2096
  */
2072
2097
  OpenKey: string;
2073
2098
  /**
2074
2099
  * 商户编号
2075
2100
  */
2076
2101
  MerchantNo: string;
2077
- /**
2078
- * 沙箱环境填sandbox,正式环境不填
2079
- */
2080
- Profile?: string;
2081
2102
  /**
2082
2103
  * 备注
2083
2104
  */
2084
2105
  Remark?: string;
2106
+ /**
2107
+ * 沙箱环境填sandbox,正式环境不填
2108
+ */
2109
+ Profile?: string;
2085
2110
  }
2086
2111
  /**
2087
2112
  * 查询汇率数据
@@ -2257,6 +2282,73 @@ export interface QueryInvoiceResultData {
2257
2282
  */
2258
2283
  ImageUrl: string;
2259
2284
  }
2285
+ /**
2286
+ * 会员资金交易明细信息
2287
+ */
2288
+ export interface FundsTransactionItem {
2289
+ /**
2290
+ * 资金交易类型。
2291
+ __1__:提现/退款
2292
+ __2__:清分/充值
2293
+ */
2294
+ TransType: string;
2295
+ /**
2296
+ * 银行记账说明。
2297
+ 注意:此字段可能返回 null,表示取不到有效值。
2298
+ */
2299
+ BankBookingMessage: string;
2300
+ /**
2301
+ * 交易状态。
2302
+ __0__:成功
2303
+ */
2304
+ TranStatus: string;
2305
+ /**
2306
+ * 业务方会员标识。
2307
+ _平安渠道为交易网会员代码_
2308
+ 注意:此字段可能返回 null,表示取不到有效值。
2309
+ */
2310
+ TransNetMemberCode: string;
2311
+ /**
2312
+ * 子账户账号。
2313
+ _平安渠道为见证子账户的账号_
2314
+ */
2315
+ SubAccountNumber: string;
2316
+ /**
2317
+ * 子账户名称。
2318
+ _平安渠道为见证子账户的户名_
2319
+ 注意:此字段可能返回 null,表示取不到有效值。
2320
+ */
2321
+ SubAccountName: string;
2322
+ /**
2323
+ * 交易金额。
2324
+ */
2325
+ TransAmount: string;
2326
+ /**
2327
+ * 交易手续费。
2328
+ 注意:此字段可能返回 null,表示取不到有效值。
2329
+ */
2330
+ TransFee: string;
2331
+ /**
2332
+ * 交易日期,格式:yyyyMMdd。
2333
+ */
2334
+ TransDate: string;
2335
+ /**
2336
+ * 交易时间,格式:HHmmss。
2337
+ 注意:此字段可能返回 null,表示取不到有效值。
2338
+ */
2339
+ TransTime: string;
2340
+ /**
2341
+ * 银行系统流水号。
2342
+ _平安渠道为见证系统流水号_
2343
+ */
2344
+ BankSequenceNumber: string;
2345
+ /**
2346
+ * 备注。
2347
+ _平安渠道,如果是见证+收单的交易,返回交易订单号_
2348
+ 注意:此字段可能返回 null,表示取不到有效值。
2349
+ */
2350
+ Remark: string;
2351
+ }
2260
2352
  /**
2261
2353
  * AddMerchant返回参数结构体
2262
2354
  */
@@ -2384,10 +2476,6 @@ export interface ViewMerchantRequest {
2384
2476
  * 收单系统分配的密钥
2385
2477
  */
2386
2478
  OpenKey: string;
2387
- /**
2388
- * 沙箱环境填sandbox,正式环境不填
2389
- */
2390
- Profile?: string;
2391
2479
  /**
2392
2480
  * 外部商户主键编号(MerchantNo或OutMerchantId必须传一个)
2393
2481
  */
@@ -2396,6 +2484,10 @@ export interface ViewMerchantRequest {
2396
2484
  * 商户编号(MerchantNo或OutMerchantId必须传一个)
2397
2485
  */
2398
2486
  MerchantNo?: string;
2487
+ /**
2488
+ * 沙箱环境填sandbox,正式环境不填
2489
+ */
2490
+ Profile?: string;
2399
2491
  }
2400
2492
  /**
2401
2493
  * QueryDownloadBillURL返回参数结构体
@@ -2985,11 +3077,11 @@ export interface CreateOpenBankMerchantResult {
2985
3077
  */
2986
3078
  export interface DistributeQueryReceiverRequest {
2987
3079
  /**
2988
- * 收单系统分配的开放ID
3080
+ * 使用门店OpenId
2989
3081
  */
2990
3082
  OpenId: string;
2991
3083
  /**
2992
- * 收单系统分配的密钥
3084
+ * 使用门店OpenKey
2993
3085
  */
2994
3086
  OpenKey: string;
2995
3087
  /**
@@ -4387,11 +4479,11 @@ export interface QueryExceedingInfoResult {
4387
4479
  */
4388
4480
  export interface QueryMerchantPayWayListRequest {
4389
4481
  /**
4390
- * 收单系统分配的开放ID
4482
+ * 使用门店OpenId
4391
4483
  */
4392
4484
  OpenId: string;
4393
4485
  /**
4394
- * 收单系统分配的密钥
4486
+ * 使用门店OpenKey
4395
4487
  */
4396
4488
  OpenKey: string;
4397
4489
  /**
@@ -4527,237 +4619,237 @@ export interface CreateInvoiceResponse {
4527
4619
  */
4528
4620
  export interface AddMerchantRequest {
4529
4621
  /**
4530
- * 法人姓名
4531
- */
4532
- BossName: string;
4533
- /**
4534
- * 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
4535
- */
4536
- BusinessLicensePicture: string;
4537
- /**
4538
- * 招牌名称
4622
+ * 收单系统分配的开放ID
4539
4623
  */
4540
- BrandName: string;
4624
+ OpenId: string;
4541
4625
  /**
4542
4626
  * 收单系统分配的密钥
4543
4627
  */
4544
4628
  OpenKey: string;
4545
4629
  /**
4546
- * 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4547
- */
4548
- BusinessLicenseEndDate: string;
4549
- /**
4550
- * 法人证件生效时间(yyyy-mm-dd)
4551
- */
4552
- BossStartDate: string;
4553
- /**
4554
- * 清算联行号,开户行行号
4630
+ * 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
4555
4631
  */
4556
- BankNo: string;
4632
+ OutMerchantId: string;
4557
4633
  /**
4558
- * 开户行名称
4634
+ * 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
4559
4635
  */
4560
- BankName: string;
4636
+ MerchantName: string;
4561
4637
  /**
4562
4638
  * 营业执照类型(1三证合一,2非三证合一)
4563
4639
  */
4564
4640
  BusinessLicenseType: string;
4565
- /**
4566
- * 法人证件过期时间(yyyy-mm-dd)
4567
- */
4568
- BossEndDate: string;
4569
4641
  /**
4570
4642
  * 营业执照编号(系统有唯一性校验),(小微商户不效验,随意传要有值,公司/个体户必传)
4571
4643
  */
4572
4644
  BusinessLicenseNo: string;
4645
+ /**
4646
+ * 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
4647
+ */
4648
+ BusinessLicensePicture: string;
4573
4649
  /**
4574
4650
  * 营业执照生效时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4575
4651
  */
4576
4652
  BusinessLicenseStartDate: string;
4577
4653
  /**
4578
- * 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
4654
+ * 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4579
4655
  */
4580
- BossIdType: string;
4656
+ BusinessLicenseEndDate: string;
4581
4657
  /**
4582
- * 详细地址,不含省市区县名称,长度需要大于5。
4658
+ * 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
4583
4659
  */
4584
- Address: string;
4660
+ ClassificationIds: Array<string>;
4585
4661
  /**
4586
- * 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
4662
+ * 招牌名称
4587
4663
  */
4588
- BossIdCountry: string;
4664
+ BrandName: string;
4589
4665
  /**
4590
- * 收单系统分配的开放ID
4666
+ * 联系电话
4591
4667
  */
4592
- OpenId: string;
4668
+ Telephone: string;
4593
4669
  /**
4594
- * 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
4670
+ * 城市编号
4595
4671
  */
4596
- MerchantName: string;
4672
+ CityId: string;
4597
4673
  /**
4598
- * 法人性别(1男,2女)
4674
+ * 详细地址,不含省市区县名称,长度需要大于5。
4599
4675
  */
4600
- BossSex: string;
4676
+ Address: string;
4601
4677
  /**
4602
- * 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
4678
+ * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
4603
4679
  */
4604
- ClassificationIds: Array<string>;
4680
+ OpenHours: string;
4605
4681
  /**
4606
- * 法人证件号码
4682
+ * 结算账户类型(2对私,1对公)
4607
4683
  */
4608
- BossIdNo: string;
4684
+ AccountType: string;
4609
4685
  /**
4610
- * 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
4686
+ * 清算联行号,开户行行号
4611
4687
  */
4612
- LicencePicture: string;
4688
+ BankNo: string;
4613
4689
  /**
4614
- * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
4690
+ * 开户行名称
4615
4691
  */
4616
- OpenHours: string;
4692
+ BankName: string;
4693
+ /**
4694
+ * 银行账号
4695
+ */
4696
+ AccountNo: string;
4617
4697
  /**
4618
4698
  * 银行户名
4619
4699
  */
4620
4700
  AccountName: string;
4621
4701
  /**
4622
- * 银行账号
4702
+ * 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
4623
4703
  */
4624
- AccountNo: string;
4704
+ BossIdType: string;
4625
4705
  /**
4626
- * 结算账户类型(2对私,1对公)
4706
+ * 法人证件号码
4627
4707
  */
4628
- AccountType: string;
4708
+ BossIdNo: string;
4629
4709
  /**
4630
- * 联系电话
4710
+ * 法人姓名
4631
4711
  */
4632
- Telephone: string;
4712
+ BossName: string;
4633
4713
  /**
4634
- * 法人身份证正面【私密区】(系统返回的图片路径)
4714
+ * 法人性别(1男,2女)
4635
4715
  */
4636
- BossPositive: string;
4716
+ BossSex: string;
4637
4717
  /**
4638
- * 城市编号
4718
+ * 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
4639
4719
  */
4640
- CityId: string;
4720
+ BossIdCountry: string;
4641
4721
  /**
4642
- * 法人身份证背面【私密区】(系统返回的图片路径)
4722
+ * 法人身份证正面【私密区】(系统返回的图片路径)
4643
4723
  */
4644
- BossBack: string;
4724
+ BossPositive: string;
4645
4725
  /**
4646
- * 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
4726
+ * 法人身份证背面【私密区】(系统返回的图片路径)
4647
4727
  */
4648
- OutMerchantId: string;
4728
+ BossBack: string;
4649
4729
  /**
4650
- * 组织机构代码证生效时间(yyyy-mm-dd)
4730
+ * 法人证件生效时间(yyyy-mm-dd)
4651
4731
  */
4652
- OrganizationStartDate?: string;
4732
+ BossStartDate: string;
4653
4733
  /**
4654
- * 法人亲属证件号码
4734
+ * 法人证件过期时间(yyyy-mm-dd)
4655
4735
  */
4656
- AccountIdNo?: string;
4736
+ BossEndDate: string;
4657
4737
  /**
4658
- * 财务联系人
4738
+ * 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
4659
4739
  */
4660
- FinancialContact?: string;
4740
+ LicencePicture: string;
4661
4741
  /**
4662
- * 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
4742
+ * 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
4663
4743
  */
4664
- AccountIdType?: string;
4744
+ Type?: string;
4665
4745
  /**
4666
4746
  * 组织机构代码证号
4667
4747
  */
4668
4748
  OrganizationNo?: string;
4669
4749
  /**
4670
- * 其他资料1
4750
+ * 组织机构代码证生效时间(yyyy-mm-dd)
4671
4751
  */
4672
- OtherPictureOne?: string;
4752
+ OrganizationStartDate?: string;
4673
4753
  /**
4674
- * 财务联系人电话
4754
+ * 组织机构代码证图片【私密区】
4675
4755
  */
4676
- FinancialTelephone?: string;
4756
+ OrganizationPicture?: string;
4677
4757
  /**
4678
- * 沙箱环境填sandbox,正式环境不填
4758
+ * 组织机构代码证过期时间(yyyy-mm-dd)
4679
4759
  */
4680
- Profile?: string;
4760
+ OrganizationEndDate?: string;
4681
4761
  /**
4682
- * 组织机构代码证图片【私密区】
4762
+ * 商户简介
4683
4763
  */
4684
- OrganizationPicture?: string;
4764
+ Intro?: string;
4685
4765
  /**
4686
- * 税务登记证生效时间(yyyy-mm-dd)
4766
+ * 商户logo【公共区】
4687
4767
  */
4688
- TaxRegistrationStartDate?: string;
4768
+ Logo?: string;
4689
4769
  /**
4690
4770
  * 商户标记,自定义参数
4691
4771
  */
4692
4772
  Tag?: string;
4693
4773
  /**
4694
- * 结算账户人身份(1法人,2法人亲属),结算帐户为对私时必填
4774
+ * 财务联系人电话
4695
4775
  */
4696
- AccountBoss?: string;
4776
+ FinancialTelephone?: string;
4697
4777
  /**
4698
- * 法人电话
4778
+ * 财务联系人
4699
4779
  */
4700
- BossTelephone?: string;
4780
+ FinancialContact?: string;
4781
+ /**
4782
+ * 税务登记证号
4783
+ */
4784
+ TaxRegistrationNo?: string;
4701
4785
  /**
4702
4786
  * 税务登记证图片【私密区】
4703
4787
  */
4704
4788
  TaxRegistrationPicture?: string;
4705
4789
  /**
4706
- * 组织机构代码证过期时间(yyyy-mm-dd)
4790
+ * 税务登记证生效时间(yyyy-mm-dd)
4707
4791
  */
4708
- OrganizationEndDate?: string;
4792
+ TaxRegistrationStartDate?: string;
4709
4793
  /**
4710
- * 法人职业
4794
+ * 税务登记证过期时间(yyyy-mm-dd)
4711
4795
  */
4712
- BossJob?: string;
4796
+ TaxRegistrationEndDate?: string;
4713
4797
  /**
4714
- * 其他资料3
4798
+ * 结算账户人身份(1法人,2法人亲属),结算帐户为对私时必填
4715
4799
  */
4716
- OtherPictureThree?: string;
4800
+ AccountBoss?: string;
4717
4801
  /**
4718
- * 授权文件【私密区】
4802
+ * 客户经理姓名,必须为系统后台的管理员真实姓名
4719
4803
  */
4720
- LicencePictureTwo?: string;
4804
+ AccountManagerName?: string;
4721
4805
  /**
4722
- * 商户logo【公共区】
4806
+ * 法人电话
4723
4807
  */
4724
- Logo?: string;
4808
+ BossTelephone?: string;
4725
4809
  /**
4726
- * 法人住址
4810
+ * 法人职业
4727
4811
  */
4728
- BossAddress?: string;
4812
+ BossJob?: string;
4729
4813
  /**
4730
4814
  * 法人邮箱
4731
4815
  */
4732
4816
  BossEmail?: string;
4733
4817
  /**
4734
- * 其他资料2
4818
+ * 法人住址
4735
4819
  */
4736
- OtherPictureTwo?: string;
4820
+ BossAddress?: string;
4737
4821
  /**
4738
- * 商户简介
4822
+ * 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
4739
4823
  */
4740
- Intro?: string;
4824
+ AccountIdType?: string;
4741
4825
  /**
4742
- * 客户经理姓名,必须为系统后台的管理员真实姓名
4826
+ * 法人亲属证件号码
4743
4827
  */
4744
- AccountManagerName?: string;
4828
+ AccountIdNo?: string;
4745
4829
  /**
4746
- * 税务登记证过期时间(yyyy-mm-dd)
4830
+ * 授权文件【私密区】
4747
4831
  */
4748
- TaxRegistrationEndDate?: string;
4832
+ LicencePictureTwo?: string;
4749
4833
  /**
4750
- * 其他资料4
4834
+ * 其他资料1
4751
4835
  */
4752
- OtherPictureFour?: string;
4836
+ OtherPictureOne?: string;
4753
4837
  /**
4754
- * 税务登记证号
4838
+ * 其他资料2
4755
4839
  */
4756
- TaxRegistrationNo?: string;
4840
+ OtherPictureTwo?: string;
4757
4841
  /**
4758
- * 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
4842
+ * 其他资料3
4759
4843
  */
4760
- Type?: string;
4844
+ OtherPictureThree?: string;
4845
+ /**
4846
+ * 其他资料4
4847
+ */
4848
+ OtherPictureFour?: string;
4849
+ /**
4850
+ * 沙箱环境填sandbox,正式环境不填
4851
+ */
4852
+ Profile?: string;
4761
4853
  }
4762
4854
  /**
4763
4855
  * 红票结果V2
@@ -5385,6 +5477,23 @@ export interface CreateAgentTaxPaymentInfosRequest {
5385
5477
  */
5386
5478
  Profile?: string;
5387
5479
  }
5480
+ /**
5481
+ * QueryReconciliationFileApplyInfo请求参数结构体
5482
+ */
5483
+ export interface QueryReconciliationFileApplyInfoRequest {
5484
+ /**
5485
+ * 申请对账文件的任务ID。
5486
+ */
5487
+ ApplyFileId: string;
5488
+ /**
5489
+ * 环境名。
5490
+ __release__: 现网环境
5491
+ __sandbox__: 沙箱环境
5492
+ __development__: 开发环境
5493
+ _缺省: release_
5494
+ */
5495
+ MidasEnvironment?: string;
5496
+ }
5388
5497
  /**
5389
5498
  * QueryBillDownloadURL返回参数结构体
5390
5499
  */
@@ -5617,11 +5726,11 @@ export interface RefundOrderResponse {
5617
5726
  */
5618
5727
  export interface QueryOrderStatusRequest {
5619
5728
  /**
5620
- * 收单系统分配的开放ID
5729
+ * 使用门店OpenId
5621
5730
  */
5622
5731
  OpenId: string;
5623
5732
  /**
5624
- * 收单系统分配的密钥
5733
+ * 使用门店OpenKey
5625
5734
  */
5626
5735
  OpenKey: string;
5627
5736
  /**
@@ -5898,6 +6007,30 @@ export interface UploadTaxListResponse {
5898
6007
  */
5899
6008
  RequestId?: string;
5900
6009
  }
6010
+ /**
6011
+ * QueryReconciliationFileApplyInfo返回参数结构体
6012
+ */
6013
+ export interface QueryReconciliationFileApplyInfoResponse {
6014
+ /**
6015
+ * 错误码。
6016
+ __SUCCESS__: 成功
6017
+ __其他__: 见附录-错误码表
6018
+ */
6019
+ ErrCode: string;
6020
+ /**
6021
+ * 错误消息。
6022
+ */
6023
+ ErrMessage: string;
6024
+ /**
6025
+ * 返回结果。
6026
+ 注意:此字段可能返回 null,表示取不到有效值。
6027
+ */
6028
+ Result: QueryReconciliationFileApplyInfoResult;
6029
+ /**
6030
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6031
+ */
6032
+ RequestId?: string;
6033
+ }
5901
6034
  /**
5902
6035
  * BindRelateAcctUnionPay请求参数结构体
5903
6036
  */
@@ -5956,29 +6089,30 @@ export interface BindRelateAcctUnionPayRequest {
5956
6089
  Profile?: string;
5957
6090
  }
5958
6091
  /**
5959
- * 对账文件信息
6092
+ * 查询会员资金交易信息列表结果
5960
6093
  */
5961
- export interface FileItem {
6094
+ export interface QueryFundsTransactionDetailsResult {
5962
6095
  /**
5963
- * STRING(256),文件名称
5964
- 注意:此字段可能返回 null,表示取不到有效值。
6096
+ * 本次交易返回查询结果记录数。
5965
6097
  */
5966
- FileName: string;
6098
+ ResultCount: number;
5967
6099
  /**
5968
- * STRING(120),随机密码
6100
+ * 符合业务查询条件的记录总数。
5969
6101
  注意:此字段可能返回 null,表示取不到有效值。
5970
6102
  */
5971
- RandomPassword: string;
6103
+ TotalCount: number;
5972
6104
  /**
5973
- * STRING(512),文件路径
6105
+ * 结束标志。
6106
+ __0__:否
6107
+ __1__:是
5974
6108
  注意:此字段可能返回 null,表示取不到有效值。
5975
6109
  */
5976
- FilePath: string;
6110
+ EndFlag: string;
5977
6111
  /**
5978
- * STRING(64),提取码
6112
+ * 会员资金交易信息数组。
5979
6113
  注意:此字段可能返回 null,表示取不到有效值。
5980
6114
  */
5981
- DrawCode: string;
6115
+ TranItemArray: Array<FundsTransactionItem>;
5982
6116
  }
5983
6117
  /**
5984
6118
  * 聚鑫商户余额查询输出项
@@ -6103,21 +6237,17 @@ export interface QueryMerchantInfoForManagementRequest {
6103
6237
  */
6104
6238
  export interface UnifiedTlinxOrderRequest {
6105
6239
  /**
6106
- * 开发者流水号
6107
- */
6108
- DeveloperNo: string;
6109
- /**
6110
- * 收单系统分配的开放ID
6240
+ * 使用门店OpenId
6111
6241
  */
6112
6242
  OpenId: string;
6113
6243
  /**
6114
- * 交易结果异步通知url地址
6244
+ * 使用门店OpenKey
6115
6245
  */
6116
- NotifyUrl: string;
6246
+ OpenKey: string;
6117
6247
  /**
6118
- * 收单系统分配的密钥
6248
+ * 开发者流水号
6119
6249
  */
6120
- OpenKey: string;
6250
+ DeveloperNo: string;
6121
6251
  /**
6122
6252
  * 支付标签
6123
6253
  */
@@ -6127,41 +6257,33 @@ export interface UnifiedTlinxOrderRequest {
6127
6257
  */
6128
6258
  TradeAmount: string;
6129
6259
  /**
6130
- * 订单备注
6131
- */
6132
- Remark?: string;
6133
- /**
6134
- * 订单标记,订单附加数据。
6135
- */
6136
- Tag?: string;
6137
- /**
6138
- * 抹零金额(以分为单位,没有小数点)
6260
+ * 交易结果异步通知url地址
6139
6261
  */
6140
- IgnoreAmount?: string;
6262
+ NotifyUrl: string;
6141
6263
  /**
6142
- * 条码支付的授权码(条码抢扫手机扫到的一串数字)
6264
+ * 付款方式名称(当PayTag为Diy时,PayName不能为空)
6143
6265
  */
6144
- AuthCode?: string;
6266
+ PayName?: string;
6145
6267
  /**
6146
- * 原始交易金额(以分为单位,没有小数点)
6268
+ * 公众号支付时,支付成功后跳转url地址
6147
6269
  */
6148
- OriginalAmount?: string;
6270
+ JumpUrl?: string;
6149
6271
  /**
6150
6272
  * 订单名称(描述)
6151
6273
  */
6152
6274
  OrderName?: string;
6153
6275
  /**
6154
- * 公众号支付时,支付成功后跳转url地址
6276
+ * 原始交易金额(以分为单位,没有小数点)
6155
6277
  */
6156
- JumpUrl?: string;
6278
+ OriginalAmount?: string;
6157
6279
  /**
6158
- * 沙箱环境填sandbox,正式环境不填
6280
+ * 抹零金额(以分为单位,没有小数点)
6159
6281
  */
6160
- Profile?: string;
6282
+ IgnoreAmount?: string;
6161
6283
  /**
6162
- * 收单机构原始交易报文,请转换为json
6284
+ * 折扣金额(以分为单位,没有小数点)
6163
6285
  */
6164
- TradeResult?: string;
6286
+ DiscountAmount?: string;
6165
6287
  /**
6166
6288
  * 交易帐号(银行卡号)
6167
6289
  */
@@ -6171,13 +6293,21 @@ export interface UnifiedTlinxOrderRequest {
6171
6293
  */
6172
6294
  TradeNo?: string;
6173
6295
  /**
6174
- * 折扣金额(以分为单位,没有小数点)
6296
+ * 条码支付的授权码(条码抢扫手机扫到的一串数字)
6297
+ */
6298
+ AuthCode?: string;
6299
+ /**
6300
+ * 订单标记,订单附加数据。
6301
+ */
6302
+ Tag?: string;
6303
+ /**
6304
+ * 订单备注
6175
6305
  */
6176
- DiscountAmount?: string;
6306
+ Remark?: string;
6177
6307
  /**
6178
- * 付款方式名称(当PayTag为Diy时,PayName不能为空)
6308
+ * 收单机构原始交易报文,请转换为json
6179
6309
  */
6180
- PayName?: string;
6310
+ TradeResult?: string;
6181
6311
  /**
6182
6312
  * 0-不分账,1-需分账。为1时标记为待分账订单,待分账订单不会进行清算。不传默认为不分账。
6183
6313
  */
@@ -6196,6 +6326,10 @@ export interface UnifiedTlinxOrderRequest {
6196
6326
  用户在子商户appid下的唯一标识。
6197
6327
  */
6198
6328
  SubOpenId?: string;
6329
+ /**
6330
+ * 沙箱环境填sandbox,正式环境不填
6331
+ */
6332
+ Profile?: string;
6199
6333
  }
6200
6334
  /**
6201
6335
  * DeduceQuota请求参数结构体
@@ -6317,6 +6451,56 @@ export interface QueryExchangerateResult {
6317
6451
  */
6318
6452
  Data: Array<QueryExchangerateData>;
6319
6453
  }
6454
+ /**
6455
+ * QueryMemberTransactionDetails请求参数结构体
6456
+ */
6457
+ export interface QueryMemberTransactionDetailsRequest {
6458
+ /**
6459
+ * 查询的交易发生时间类型。
6460
+ __1__:当日
6461
+ __2__:历史
6462
+ */
6463
+ QueryDateType: string;
6464
+ /**
6465
+ * 查询的交易类型。
6466
+ __1__:全部
6467
+ __2__:转出
6468
+ __3__:转入
6469
+ */
6470
+ QueryTranType: string;
6471
+ /**
6472
+ * 父账户账号。
6473
+ _平安渠道为资金汇总账号_
6474
+ */
6475
+ BankAccountNumber: string;
6476
+ /**
6477
+ * 子账户账号。
6478
+ _平安渠道为见证子账户的账号_
6479
+ */
6480
+ SubAccountNumber: string;
6481
+ /**
6482
+ * 分页号, 起始值为1。
6483
+ */
6484
+ PageOffSet: string;
6485
+ /**
6486
+ * 查询开始日期,格式:yyyyMMdd。
6487
+ __若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
6488
+ */
6489
+ QueryStartDate?: string;
6490
+ /**
6491
+ * 查询终止日期,格式:yyyyMMdd。
6492
+ __若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
6493
+ */
6494
+ QueryEndDate?: string;
6495
+ /**
6496
+ * 环境名。
6497
+ __release__: 现网环境
6498
+ __sandbox__: 沙箱环境
6499
+ __development__: 开发环境
6500
+ _缺省: release_
6501
+ */
6502
+ MidasEnvironment?: string;
6503
+ }
6320
6504
  /**
6321
6505
  * QueryBatchPaymentResult请求参数结构体
6322
6506
  */
@@ -6787,18 +6971,37 @@ development: 开发环境
6787
6971
  MidasEnvironment?: string;
6788
6972
  }
6789
6973
  /**
6790
- * QueryAgentStatements请求参数结构体
6974
+ * QueryRefund请求参数结构体
6791
6975
  */
6792
- export interface QueryAgentStatementsRequest {
6976
+ export interface QueryRefundRequest {
6793
6977
  /**
6794
- * 结算单日期,月结算单填每月1日
6978
+ * 用户ID,长度不小于5位,仅支持字母和数字的组合。
6795
6979
  */
6796
- Date: string;
6980
+ UserId: string;
6797
6981
  /**
6798
- * 日结算单:daily
6799
- 月结算单:monthly
6982
+ * 退款订单号,仅支持数字、字母、下划线(_)、横杠字符(-)、点(.)的组合。
6800
6983
  */
6801
- Type: string;
6984
+ RefundId: string;
6985
+ /**
6986
+ * 聚鑫分配的支付主MidasAppId
6987
+ */
6988
+ MidasAppId: string;
6989
+ /**
6990
+ * 聚鑫分配的安全ID
6991
+ */
6992
+ MidasSecretId: string;
6993
+ /**
6994
+ * 按照聚鑫安全密钥计算的签名
6995
+ */
6996
+ MidasSignature: string;
6997
+ /**
6998
+ * 环境名:
6999
+ release: 现网环境
7000
+ sandbox: 沙箱环境
7001
+ development: 开发环境
7002
+ 缺省: release
7003
+ */
7004
+ MidasEnvironment?: string;
6802
7005
  }
6803
7006
  /**
6804
7007
  * CreateCustAcctId请求参数结构体
@@ -6907,11 +7110,11 @@ export interface CreateBatchPaymentData {
6907
7110
  */
6908
7111
  export interface DistributeQueryRequest {
6909
7112
  /**
6910
- * 收单系统分配的开放ID
7113
+ * 使用门店OpenId
6911
7114
  */
6912
7115
  OpenId: string;
6913
7116
  /**
6914
- * 收单系统分配的密钥
7117
+ * 使用门店OpenKey
6915
7118
  */
6916
7119
  OpenKey: string;
6917
7120
  /**
@@ -6919,21 +7122,21 @@ export interface DistributeQueryRequest {
6919
7122
  */
6920
7123
  Type: string;
6921
7124
  /**
6922
- * 沙箱环境填sandbox,正式环境不填
7125
+ * 商户分账单号,type为2时,和DistributeNo二者传其一
6923
7126
  */
6924
- Profile?: string;
7127
+ OutDistributeNo?: string;
6925
7128
  /**
6926
7129
  * 平台分账单号,type为2时,和OutDistributeNo二者传其一
6927
7130
  */
6928
7131
  DistributeNo?: string;
6929
- /**
6930
- * 商户分账单号,type为2时,和DistributeNo二者传其一
6931
- */
6932
- OutDistributeNo?: string;
6933
7132
  /**
6934
7133
  * 平台交易订单号
6935
7134
  */
6936
7135
  OrderNo?: string;
7136
+ /**
7137
+ * 沙箱环境填sandbox,正式环境不填
7138
+ */
7139
+ Profile?: string;
6937
7140
  }
6938
7141
  /**
6939
7142
  * CloseOrder请求参数结构体
@@ -7306,10 +7509,6 @@ export interface ViewContractRequest {
7306
7509
  * 收单系统分配的密钥
7307
7510
  */
7308
7511
  OpenKey: string;
7309
- /**
7310
- * 沙箱环境填sandbox,正式环境不填
7311
- */
7312
- Profile?: string;
7313
7512
  /**
7314
7513
  * 外部合同主键编号(ContractId或OutContractId必须传一个)
7315
7514
  */
@@ -7318,6 +7517,10 @@ export interface ViewContractRequest {
7318
7517
  * 合同主键(ContractId或OutContractId必须传一个)
7319
7518
  */
7320
7519
  ContractId?: string;
7520
+ /**
7521
+ * 沙箱环境填sandbox,正式环境不填
7522
+ */
7523
+ Profile?: string;
7321
7524
  }
7322
7525
  /**
7323
7526
  * QueryBankTransactionDetails请求参数结构体
@@ -8636,11 +8839,11 @@ export interface QueryInvoiceV2Request {
8636
8839
  */
8637
8840
  export interface DistributeAccreditQueryRequest {
8638
8841
  /**
8639
- * 收单系统分配的开放ID
8842
+ * 使用门店OpenId
8640
8843
  */
8641
8844
  OpenId: string;
8642
8845
  /**
8643
- * 收单系统分配的密钥
8846
+ * 使用门店OpenKey
8644
8847
  */
8645
8848
  OpenKey: string;
8646
8849
  /**
@@ -9917,25 +10120,25 @@ _不填默认为生产环境_
9917
10120
  */
9918
10121
  export interface DistributeRemoveReceiverRequest {
9919
10122
  /**
9920
- * 收单系统分配的开放ID
10123
+ * 使用门店OpenId
9921
10124
  */
9922
10125
  OpenId: string;
9923
10126
  /**
9924
- * 收单系统分配的密钥
10127
+ * 使用门店OpenKey
9925
10128
  */
9926
10129
  OpenKey: string;
9927
10130
  /**
9928
10131
  * 商户编号
9929
10132
  */
9930
10133
  MerchantNo: string;
9931
- /**
9932
- * 沙箱环境填sandbox,正式环境不填
9933
- */
9934
- Profile?: string;
9935
10134
  /**
9936
10135
  * 备注
9937
10136
  */
9938
10137
  Remark?: string;
10138
+ /**
10139
+ * 沙箱环境填sandbox,正式环境不填
10140
+ */
10141
+ Profile?: string;
9939
10142
  }
9940
10143
  /**
9941
10144
  * DeleteAgentTaxPaymentInfos请求参数结构体
@@ -9999,85 +10202,85 @@ export interface AddShopRequest {
9999
10202
  */
10000
10203
  OpenId: string;
10001
10204
  /**
10002
- * 门店简称(例如:南山店)
10205
+ * 收单系统分配的密钥
10003
10206
  */
10004
- ShopName: string;
10207
+ OpenKey: string;
10005
10208
  /**
10006
- * 商户编号
10209
+ * 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
10007
10210
  */
10008
- MerchantNo: string;
10211
+ OutShopId: string;
10009
10212
  /**
10010
- * 整体门面(含招牌)图片【公共区】
10213
+ * 门店简称(例如:南山店)
10011
10214
  */
10012
- PictureTwo: string;
10215
+ ShopName: string;
10013
10216
  /**
10014
- * 店内环境图片【公共区】
10217
+ * 门店全称(例如:江山小厨(南山店))
10015
10218
  */
10016
- PictureThree: string;
10219
+ ShopFullName: string;
10017
10220
  /**
10018
- * 整体门面(含招牌)图片【公共区】
10221
+ * 商户编号
10019
10222
  */
10020
- PictureOne: string;
10223
+ MerchantNo: string;
10021
10224
  /**
10022
10225
  * 门店电话
10023
10226
  */
10024
10227
  Telephone: string;
10025
10228
  /**
10026
- * 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
10229
+ * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
10027
10230
  */
10028
- OutShopId: string;
10231
+ OpenHours: string;
10029
10232
  /**
10030
10233
  * 门店所在的城市编码
10031
10234
  */
10032
10235
  CityId: string;
10033
- /**
10034
- * 门店全称(例如:江山小厨(南山店))
10035
- */
10036
- ShopFullName: string;
10037
- /**
10038
- * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
10039
- */
10040
- OpenHours: string;
10041
10236
  /**
10042
10237
  * 门店详细地址,不含省市区县名称
10043
10238
  */
10044
10239
  Address: string;
10045
10240
  /**
10046
- * 收单系统分配的密钥
10047
- */
10048
- OpenKey: string;
10049
- /**
10050
- * 沙箱环境填sandbox,正式环境不填
10241
+ * 整体门面(含招牌)图片【公共区】
10051
10242
  */
10052
- Profile?: string;
10243
+ PictureOne: string;
10053
10244
  /**
10054
- * 高德地图纬度
10245
+ * 整体门面(含招牌)图片【公共区】
10055
10246
  */
10056
- LatitudeTwo?: string;
10247
+ PictureTwo: string;
10057
10248
  /**
10058
- * 其他照片【公共区】
10249
+ * 店内环境图片【公共区】
10059
10250
  */
10060
- OtherPicture?: string;
10251
+ PictureThree: string;
10061
10252
  /**
10062
- * 高德地图经度
10253
+ * 负责人手机号码
10063
10254
  */
10064
- LongitudeTwo?: string;
10255
+ FinancialTelephone?: string;
10065
10256
  /**
10066
10257
  * 门店负责人
10067
10258
  */
10068
10259
  Contact?: string;
10260
+ /**
10261
+ * 百度地图纬度
10262
+ */
10263
+ Latitude?: string;
10264
+ /**
10265
+ * 高德地图纬度
10266
+ */
10267
+ LatitudeTwo?: string;
10069
10268
  /**
10070
10269
  * 百度地图经度
10071
10270
  */
10072
10271
  Longitude?: string;
10073
10272
  /**
10074
- * 百度地图纬度
10273
+ * 高德地图经度
10075
10274
  */
10076
- Latitude?: string;
10275
+ LongitudeTwo?: string;
10077
10276
  /**
10078
- * 负责人手机号码
10277
+ * 其他照片【公共区】
10079
10278
  */
10080
- FinancialTelephone?: string;
10279
+ OtherPicture?: string;
10280
+ /**
10281
+ * 沙箱环境填sandbox,正式环境不填
10282
+ */
10283
+ Profile?: string;
10081
10284
  }
10082
10285
  /**
10083
10286
  * 批量转账明细实体
@@ -10383,6 +10586,53 @@ export interface QueryTransferResultRequest {
10383
10586
  */
10384
10587
  Profile?: string;
10385
10588
  }
10589
+ /**
10590
+ * 查询对账文件申请结果
10591
+ */
10592
+ export interface QueryReconciliationFileApplyInfoResult {
10593
+ /**
10594
+ * 申请对账文件的任务ID。
10595
+ */
10596
+ ApplyFileId: string;
10597
+ /**
10598
+ * 对账文件申请状态。
10599
+ __I__:申请中
10600
+ __S__:申请成功
10601
+ __F__:申请失败
10602
+ */
10603
+ ApplyStatus: string;
10604
+ /**
10605
+ * 申请结果描述。
10606
+ 注意:此字段可能返回 null,表示取不到有效值。
10607
+ */
10608
+ ApplyMessage: string;
10609
+ /**
10610
+ * 对账文件下载地址列表。
10611
+ 注意:此字段可能返回 null,表示取不到有效值。
10612
+ */
10613
+ FileUrlArray: Array<string>;
10614
+ }
10615
+ /**
10616
+ * 申请对账文件结果
10617
+ */
10618
+ export interface ApplyReconciliationFileResult {
10619
+ /**
10620
+ * 申请对账文件的任务ID。
10621
+ */
10622
+ ApplyFileId: string;
10623
+ /**
10624
+ * 对账文件申请状态。
10625
+ __I__:申请中
10626
+ __S__:申请成功
10627
+ __F__:申请失败
10628
+ */
10629
+ ApplyStatus: string;
10630
+ /**
10631
+ * 申请结果描述。
10632
+ 注意:此字段可能返回 null,表示取不到有效值。
10633
+ */
10634
+ ApplyMessage: string;
10635
+ }
10386
10636
  /**
10387
10637
  * QueryOpenBankExternalSubMerchantBankAccount返回参数结构体
10388
10638
  */
@@ -10724,6 +10974,55 @@ development 开发环境
10724
10974
  */
10725
10975
  TransFee?: string;
10726
10976
  }
10977
+ /**
10978
+ * QueryFundsTransactionDetails请求参数结构体
10979
+ */
10980
+ export interface QueryFundsTransactionDetailsRequest {
10981
+ /**
10982
+ * 查询的交易发生时间类型。
10983
+ __1__:当日
10984
+ __2__:历史
10985
+ */
10986
+ QueryDateType: string;
10987
+ /**
10988
+ * 查询的交易类型。
10989
+ __2__:提现/退款
10990
+ __3__:清分/充值
10991
+ */
10992
+ QueryTranType: string;
10993
+ /**
10994
+ * 父账户账号。
10995
+ _平安渠道为资金汇总账号_
10996
+ */
10997
+ BankAccountNumber: string;
10998
+ /**
10999
+ * 子账户账号。
11000
+ _平安渠道为见证子账户的账号_
11001
+ */
11002
+ SubAccountNumber: string;
11003
+ /**
11004
+ * 分页号, 起始值为1。
11005
+ */
11006
+ PageOffSet: string;
11007
+ /**
11008
+ * 查询开始日期,格式:yyyyMMdd。
11009
+ __若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
11010
+ */
11011
+ QueryStartDate?: string;
11012
+ /**
11013
+ * 查询终止日期,格式:yyyyMMdd。
11014
+ __若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
11015
+ */
11016
+ QueryEndDate?: string;
11017
+ /**
11018
+ * 环境名。
11019
+ __release__: 现网环境
11020
+ __sandbox__: 沙箱环境
11021
+ __development__: 开发环境
11022
+ _缺省: release_
11023
+ */
11024
+ MidasEnvironment?: string;
11025
+ }
10727
11026
  /**
10728
11027
  * 第三方子商户银行卡绑定返回结果
10729
11028
  */
@@ -10811,11 +11110,11 @@ export interface CreateMerchantResultData {
10811
11110
  */
10812
11111
  export interface DistributeCancelRequest {
10813
11112
  /**
10814
- * 收单系统分配的开放ID
11113
+ * 使用门店OpenId
10815
11114
  */
10816
11115
  OpenId: string;
10817
11116
  /**
10818
- * 收单系统分配的密钥
11117
+ * 使用门店OpenKey
10819
11118
  */
10820
11119
  OpenKey: string;
10821
11120
  /**
@@ -10823,17 +11122,17 @@ export interface DistributeCancelRequest {
10823
11122
  */
10824
11123
  OrderNo: string;
10825
11124
  /**
10826
- * 沙箱环境填sandbox,正式环境不填
11125
+ * 商户分账单号,type为2时,和DistributeNo二者传其一
10827
11126
  */
10828
- Profile?: string;
11127
+ OutDistributeNo?: string;
10829
11128
  /**
10830
11129
  * 平台分账单号,type为2时,和OutDistributeNo二者传其一
10831
11130
  */
10832
11131
  DistributeNo?: string;
10833
11132
  /**
10834
- * 商户分账单号,type为2时,和DistributeNo二者传其一
11133
+ * 沙箱环境填sandbox,正式环境不填
10835
11134
  */
10836
- OutDistributeNo?: string;
11135
+ Profile?: string;
10837
11136
  }
10838
11137
  /**
10839
11138
  * RegisterBillSupportWithdraw请求参数结构体
@@ -11832,10 +12131,6 @@ export interface DownloadOrgFileRequest {
11832
12131
  * 收单系统分配的密钥
11833
12132
  */
11834
12133
  OpenKey: string;
11835
- /**
11836
- * 沙箱环境填sandbox,正式环境不填
11837
- */
11838
- Profile?: string;
11839
12134
  /**
11840
12135
  * 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
11841
12136
  */
@@ -11844,6 +12139,10 @@ export interface DownloadOrgFileRequest {
11844
12139
  * 文件路径
11845
12140
  */
11846
12141
  FilePath?: string;
12142
+ /**
12143
+ * 沙箱环境填sandbox,正式环境不填
12144
+ */
12145
+ Profile?: string;
11847
12146
  }
11848
12147
  /**
11849
12148
  * 签约同步信息
@@ -11923,45 +12222,26 @@ export interface Order {
11923
12222
  * 门店号
11924
12223
  注意:此字段可能返回 null,表示取不到有效值。
11925
12224
  */
11926
- StoreNo: string;
11927
- /**
11928
- * 明细
11929
- 注意:此字段可能返回 null,表示取不到有效值。
11930
- */
11931
- Items: Array<OrderItem>;
11932
- }
11933
- /**
11934
- * QueryRefund请求参数结构体
11935
- */
11936
- export interface QueryRefundRequest {
11937
- /**
11938
- * 用户ID,长度不小于5位,仅支持字母和数字的组合。
11939
- */
11940
- UserId: string;
11941
- /**
11942
- * 退款订单号,仅支持数字、字母、下划线(_)、横杠字符(-)、点(.)的组合。
11943
- */
11944
- RefundId: string;
11945
- /**
11946
- * 聚鑫分配的支付主MidasAppId
11947
- */
11948
- MidasAppId: string;
12225
+ StoreNo: string;
11949
12226
  /**
11950
- * 聚鑫分配的安全ID
12227
+ * 明细
12228
+ 注意:此字段可能返回 null,表示取不到有效值。
11951
12229
  */
11952
- MidasSecretId: string;
12230
+ Items: Array<OrderItem>;
12231
+ }
12232
+ /**
12233
+ * QueryAgentStatements请求参数结构体
12234
+ */
12235
+ export interface QueryAgentStatementsRequest {
11953
12236
  /**
11954
- * 按照聚鑫安全密钥计算的签名
12237
+ * 结算单日期,月结算单填每月1日
11955
12238
  */
11956
- MidasSignature: string;
12239
+ Date: string;
11957
12240
  /**
11958
- * 环境名:
11959
- release: 现网环境
11960
- sandbox: 沙箱环境
11961
- development: 开发环境
11962
- 缺省: release
12241
+ * 日结算单:daily
12242
+ 月结算单:monthly
11963
12243
  */
11964
- MidasEnvironment?: string;
12244
+ Type: string;
11965
12245
  }
11966
12246
  /**
11967
12247
  * CreateExternalAnchor接口返回参数
@@ -12260,6 +12540,32 @@ export interface UploadFileResponse {
12260
12540
  */
12261
12541
  RequestId?: string;
12262
12542
  }
12543
+ /**
12544
+ * 聚鑫-查询会员间交易信息列表结果
12545
+ */
12546
+ export interface QueryMemberTransactionDetailsResult {
12547
+ /**
12548
+ * 本次交易返回查询结果记录数。
12549
+ */
12550
+ ResultCount: number;
12551
+ /**
12552
+ * 符合业务查询条件的记录总数。
12553
+ 注意:此字段可能返回 null,表示取不到有效值。
12554
+ */
12555
+ TotalCount: number;
12556
+ /**
12557
+ * 结束标志。
12558
+ __0__:否
12559
+ __1__:是
12560
+ 注意:此字段可能返回 null,表示取不到有效值。
12561
+ */
12562
+ EndFlag: string;
12563
+ /**
12564
+ * 会员间交易信息数组
12565
+ 注意:此字段可能返回 null,表示取不到有效值。
12566
+ */
12567
+ TranItemArray: Array<MemberTransactionItem>;
12568
+ }
12263
12569
  /**
12264
12570
  * 创建商户结果
12265
12571
  */
@@ -12637,6 +12943,73 @@ export interface CreateSinglePaymentRequest {
12637
12943
  */
12638
12944
  NotifyUrl?: string;
12639
12945
  }
12946
+ /**
12947
+ * 会员间交易明细信息
12948
+ */
12949
+ export interface MemberTransactionItem {
12950
+ /**
12951
+ * 交易类型。
12952
+ __1__:转出
12953
+ __2__:转入
12954
+ */
12955
+ TransType: string;
12956
+ /**
12957
+ * 交易状态。
12958
+ __0__:成功
12959
+ */
12960
+ TranStatus: string;
12961
+ /**
12962
+ * 交易金额。
12963
+ */
12964
+ TransAmount: string;
12965
+ /**
12966
+ * 交易日期,格式:yyyyMMdd。
12967
+ */
12968
+ TransDate: string;
12969
+ /**
12970
+ * 交易时间,格式:HHmmss。
12971
+ 注意:此字段可能返回 null,表示取不到有效值。
12972
+ */
12973
+ TransTime: string;
12974
+ /**
12975
+ * 银行系统流水号。
12976
+ _平安渠道为见证系统流水号_
12977
+ */
12978
+ BankSequenceNumber: string;
12979
+ /**
12980
+ * 银行记账类型。
12981
+ _平安渠道为:_
12982
+ _1:会员支付_
12983
+ _2:会员冻结_
12984
+ _3:会员解冻_
12985
+ _4:登记挂账_
12986
+ _6:下单预支付_
12987
+ _7:确认并付款_
12988
+ _8:会员退款_
12989
+ _22:见证+收单平台调账_
12990
+ _23:见证+收单资金冻结_
12991
+ _24:见证+收单资金解冻_
12992
+ _25:会员间交易退款_
12993
+ 注意:此字段可能返回 null,表示取不到有效值。
12994
+ */
12995
+ BankBookingType: string;
12996
+ /**
12997
+ * 转入方子账户账号。
12998
+ _平安渠道为转入见证子账户的账号_
12999
+ */
13000
+ InSubAccountNumber: string;
13001
+ /**
13002
+ * 转出方子账户账号。
13003
+ _平安渠道为转出见证子账户的账号_
13004
+ */
13005
+ OutSubAccountNumber: string;
13006
+ /**
13007
+ * 备注。
13008
+ _平安渠道,如果是见证+收单的交易,返回交易订单号_
13009
+ 注意:此字段可能返回 null,表示取不到有效值。
13010
+ */
13011
+ Remark: string;
13012
+ }
12640
13013
  /**
12641
13014
  * 分账接收方响应对象
12642
13015
  */
@@ -12652,29 +13025,21 @@ export interface DistributeReceiverResult {
12652
13025
  */
12653
13026
  export interface DistributeApplyRequest {
12654
13027
  /**
12655
- * 收单系统分配的开放ID
13028
+ * 使用门店OpenId
12656
13029
  */
12657
13030
  OpenId: string;
12658
13031
  /**
12659
- * 商户分账单号
13032
+ * 使用门店OpenKey
12660
13033
  */
12661
- OutDistributeNo: string;
13034
+ OpenKey: string;
12662
13035
  /**
12663
- * 收单系统分配的密钥
13036
+ * 商户分账单号
12664
13037
  */
12665
- OpenKey: string;
13038
+ OutDistributeNo: string;
12666
13039
  /**
12667
13040
  * 分账明细
12668
13041
  */
12669
13042
  Details: Array<MultiApplyDetail>;
12670
- /**
12671
- * 沙箱环境填sandbox,正式环境不填
12672
- */
12673
- Profile?: string;
12674
- /**
12675
- * 说明
12676
- */
12677
- Remark?: string;
12678
13043
  /**
12679
13044
  * 商户交易订单号,和OrderNo二者传其一
12680
13045
  */
@@ -12683,6 +13048,14 @@ export interface DistributeApplyRequest {
12683
13048
  * 平台交易订单号,和DeveloperNo二者传其一
12684
13049
  */
12685
13050
  OrderNo?: string;
13051
+ /**
13052
+ * 说明
13053
+ */
13054
+ Remark?: string;
13055
+ /**
13056
+ * 沙箱环境填sandbox,正式环境不填
13057
+ */
13058
+ Profile?: string;
12686
13059
  }
12687
13060
  /**
12688
13061
  * ViewShop请求参数结构体
@@ -12696,10 +13069,6 @@ export interface ViewShopRequest {
12696
13069
  * 收单系统分配的密钥
12697
13070
  */
12698
13071
  OpenKey: string;
12699
- /**
12700
- * 沙箱环境填sandbox,正式环境不填
12701
- */
12702
- Profile?: string;
12703
13072
  /**
12704
13073
  * 外部商户主键编号(ShopNo或OutShopId必须传一个)
12705
13074
  */
@@ -12708,6 +13077,10 @@ export interface ViewShopRequest {
12708
13077
  * 门店编号(ShopNo或OutShopId必须传一个)
12709
13078
  */
12710
13079
  ShopNo?: string;
13080
+ /**
13081
+ * 沙箱环境填sandbox,正式环境不填
13082
+ */
13083
+ Profile?: string;
12711
13084
  }
12712
13085
  /**
12713
13086
  * ApplyOutwardOrder返回参数结构体
@@ -12959,10 +13332,44 @@ export interface CreateAgentTaxPaymentInfosResponse {
12959
13332
  */
12960
13333
  RequestId?: string;
12961
13334
  }
13335
+ /**
13336
+ * ApplyReconciliationFile返回参数结构体
13337
+ */
13338
+ export interface ApplyReconciliationFileResponse {
13339
+ /**
13340
+ * 错误码。
13341
+ __SUCCESS__: 成功
13342
+ __其他__: 见附录-错误码表
13343
+ */
13344
+ ErrCode: string;
13345
+ /**
13346
+ * 错误消息。
13347
+ */
13348
+ ErrMessage: string;
13349
+ /**
13350
+ * 返回结果。
13351
+ 注意:此字段可能返回 null,表示取不到有效值。
13352
+ */
13353
+ Result: ApplyReconciliationFileResult;
13354
+ /**
13355
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13356
+ */
13357
+ RequestId?: string;
13358
+ }
12962
13359
  /**
12963
13360
  * 合同-支付方式列表响应对象
12964
13361
  */
12965
13362
  export interface ContractPayListResult {
13363
+ /**
13364
+ * 支付方式编号
13365
+ 注意:此字段可能返回 null,表示取不到有效值。
13366
+ */
13367
+ PaymentId: string;
13368
+ /**
13369
+ * 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
13370
+ 注意:此字段可能返回 null,表示取不到有效值。
13371
+ */
13372
+ PaymentType: string;
12966
13373
  /**
12967
13374
  * 支付标签
12968
13375
  注意:此字段可能返回 null,表示取不到有效值。
@@ -12973,41 +13380,36 @@ export interface ContractPayListResult {
12973
13380
  注意:此字段可能返回 null,表示取不到有效值。
12974
13381
  */
12975
13382
  PaymentIcon: string;
12976
- /**
12977
- * 支付方式
12978
- 注意:此字段可能返回 null,表示取不到有效值。
12979
- */
12980
- PaymentOptionSix?: string;
12981
13383
  /**
12982
13384
  * 付款方式名称
12983
13385
  注意:此字段可能返回 null,表示取不到有效值。
12984
13386
  */
12985
13387
  PaymentName: string;
12986
13388
  /**
12987
- * 支付方式
13389
+ * 付款方式名称(内部名称)
12988
13390
  注意:此字段可能返回 null,表示取不到有效值。
12989
13391
  */
12990
- PaymentOptionSeven?: string;
13392
+ PaymentInternalName: string;
12991
13393
  /**
12992
13394
  * 支付方式
12993
13395
  注意:此字段可能返回 null,表示取不到有效值。
12994
13396
  */
12995
- PaymentOptionTwo?: string;
13397
+ PaymentOptionOne?: string;
12996
13398
  /**
12997
13399
  * 支付方式
12998
13400
  注意:此字段可能返回 null,表示取不到有效值。
12999
13401
  */
13000
- PaymentOptionOne?: string;
13402
+ PaymentOptionTwo?: string;
13001
13403
  /**
13002
13404
  * 支付方式
13003
13405
  注意:此字段可能返回 null,表示取不到有效值。
13004
13406
  */
13005
- PaymentOptionOther?: string;
13407
+ PaymentOptionThree?: string;
13006
13408
  /**
13007
- * 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
13409
+ * 支付方式
13008
13410
  注意:此字段可能返回 null,表示取不到有效值。
13009
13411
  */
13010
- PaymentType: string;
13412
+ PaymentOptionFour?: string;
13011
13413
  /**
13012
13414
  * 支付方式
13013
13415
  注意:此字段可能返回 null,表示取不到有效值。
@@ -13017,27 +13419,22 @@ export interface ContractPayListResult {
13017
13419
  * 支付方式
13018
13420
  注意:此字段可能返回 null,表示取不到有效值。
13019
13421
  */
13020
- PaymentOptionNine?: string;
13021
- /**
13022
- * 支付方式编号
13023
- 注意:此字段可能返回 null,表示取不到有效值。
13024
- */
13025
- PaymentId: string;
13422
+ PaymentOptionSix?: string;
13026
13423
  /**
13027
13424
  * 支付方式
13028
13425
  注意:此字段可能返回 null,表示取不到有效值。
13029
13426
  */
13030
- PaymentOptionThree?: string;
13427
+ PaymentOptionSeven?: string;
13031
13428
  /**
13032
- * 付款方式名称(内部名称)
13429
+ * 支付方式
13033
13430
  注意:此字段可能返回 null,表示取不到有效值。
13034
13431
  */
13035
- PaymentInternalName: string;
13432
+ PaymentOptionOther?: string;
13036
13433
  /**
13037
13434
  * 支付方式
13038
13435
  注意:此字段可能返回 null,表示取不到有效值。
13039
13436
  */
13040
- PaymentOptionFour?: string;
13437
+ PaymentOptionNine?: string;
13041
13438
  /**
13042
13439
  * 支付方式
13043
13440
  注意:此字段可能返回 null,表示取不到有效值。
@@ -13132,21 +13529,17 @@ export interface DescribeOrderStatusRequest {
13132
13529
  TransDate?: string;
13133
13530
  }
13134
13531
  /**
13135
- * 云企付-关单响应
13532
+ * 米大师内部存放的合约信息
13136
13533
  */
13137
- export interface CloseOpenBankPaymentOrderResult {
13138
- /**
13139
- * 外部商户订单号
13140
- */
13141
- OutOrderId: string;
13534
+ export interface ChannelContractInfo {
13142
13535
  /**
13143
- * 云企付平台订单号
13536
+ * 外部合约协议号
13144
13537
  */
13145
- ChannelOrderId: string;
13538
+ OutContractCode: string;
13146
13539
  /**
13147
- * 订单状态。关单成功CLOSED
13540
+ * 米大师内部生成的合约协议号
13148
13541
  */
13149
- OrderStatus: string;
13542
+ ChannelContractCode: string;
13150
13543
  }
13151
13544
  /**
13152
13545
  * CreateAnchor返回参数结构体
@@ -13176,6 +13569,30 @@ export interface MerchantRiskInfo {
13176
13569
  */
13177
13570
  RiskTypes: string;
13178
13571
  }
13572
+ /**
13573
+ * QueryMemberTransactionDetails返回参数结构体
13574
+ */
13575
+ export interface QueryMemberTransactionDetailsResponse {
13576
+ /**
13577
+ * 错误码。
13578
+ __SUCCESS__: 成功
13579
+ __其他__: 见附录-错误码表
13580
+ */
13581
+ ErrCode: string;
13582
+ /**
13583
+ * 错误消息。
13584
+ */
13585
+ ErrMessage: string;
13586
+ /**
13587
+ * 返回结果。
13588
+ 注意:此字段可能返回 null,表示取不到有效值。
13589
+ */
13590
+ Result: QueryMemberTransactionDetailsResult;
13591
+ /**
13592
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13593
+ */
13594
+ RequestId?: string;
13595
+ }
13179
13596
  /**
13180
13597
  * 查询订单付款状态响应对象
13181
13598
  */
@@ -13833,6 +14250,36 @@ export interface QueryAgentTaxPaymentBatchRequest {
13833
14250
  */
13834
14251
  Profile?: string;
13835
14252
  }
14253
+ /**
14254
+ * ApplyReconciliationFile请求参数结构体
14255
+ */
14256
+ export interface ApplyReconciliationFileRequest {
14257
+ /**
14258
+ * 申请的文件类型。
14259
+ __CZ__:充值文件
14260
+ __TX__:提现文件
14261
+ __JY__:交易文件
14262
+ __YE__:余额文件
14263
+ */
14264
+ ApplyFileType: string;
14265
+ /**
14266
+ * 申请的对账文件日期,格式:yyyyMMdd。
14267
+ */
14268
+ ApplyFileDate: string;
14269
+ /**
14270
+ * 父账户账号。
14271
+ _平安渠道为资金汇总账号_
14272
+ */
14273
+ BankAccountNumber: string;
14274
+ /**
14275
+ * 环境名。
14276
+ __release__: 现网环境
14277
+ __sandbox__: 沙箱环境
14278
+ __development__: 开发环境
14279
+ _缺省: release_
14280
+ */
14281
+ MidasEnvironment?: string;
14282
+ }
13836
14283
  /**
13837
14284
  * RegisterBillSupportWithdraw返回参数结构体
13838
14285
  */
@@ -14194,6 +14641,30 @@ export interface QueryMerchantBalanceResult {
14194
14641
  */
14195
14642
  Data: QueryMerchantBalanceData;
14196
14643
  }
14644
+ /**
14645
+ * QueryFundsTransactionDetails返回参数结构体
14646
+ */
14647
+ export interface QueryFundsTransactionDetailsResponse {
14648
+ /**
14649
+ * 错误码。
14650
+ __SUCCESS__: 成功
14651
+ __其他__: 见附录-错误码表
14652
+ */
14653
+ ErrCode: string;
14654
+ /**
14655
+ * 错误消息。
14656
+ */
14657
+ ErrMessage: string;
14658
+ /**
14659
+ * 返回结果。
14660
+ 注意:此字段可能返回 null,表示取不到有效值。
14661
+ */
14662
+ Result: QueryFundsTransactionDetailsResult;
14663
+ /**
14664
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14665
+ */
14666
+ RequestId?: string;
14667
+ }
14197
14668
  /**
14198
14669
  * 米大师内部生成的合约信息
14199
14670
  */
@@ -14793,17 +15264,21 @@ export interface DeduceQuotaResponse {
14793
15264
  RequestId?: string;
14794
15265
  }
14795
15266
  /**
14796
- * 米大师内部存放的合约信息
15267
+ * 云企付-关单响应
14797
15268
  */
14798
- export interface ChannelContractInfo {
15269
+ export interface CloseOpenBankPaymentOrderResult {
14799
15270
  /**
14800
- * 外部合约协议号
15271
+ * 外部商户订单号
14801
15272
  */
14802
- OutContractCode: string;
15273
+ OutOrderId: string;
14803
15274
  /**
14804
- * 米大师内部生成的合约协议号
15275
+ * 云企付平台订单号
14805
15276
  */
14806
- ChannelContractCode: string;
15277
+ ChannelOrderId: string;
15278
+ /**
15279
+ * 订单状态。关单成功CLOSED
15280
+ */
15281
+ OrderStatus: string;
14807
15282
  }
14808
15283
  /**
14809
15284
  * CreateBatchPayment转账明细