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
@@ -309,6 +309,31 @@ development: 开发环境
309
309
  */
310
310
  AgencyClientInfo?: AgencyClientInfo;
311
311
  }
312
+ /**
313
+ * QueryOpenBankBankBranchList返回参数结构体
314
+ */
315
+ export interface QueryOpenBankBankBranchListResponse {
316
+ /**
317
+ * 错误码。
318
+ __SUCCESS__: 成功
319
+ __其他__: 见附录-错误码表
320
+ */
321
+ ErrCode: string;
322
+ /**
323
+ * 错误消息。
324
+ 注意:此字段可能返回 null,表示取不到有效值。
325
+ */
326
+ ErrMessage: string;
327
+ /**
328
+ * 返回结果。
329
+ 注意:此字段可能返回 null,表示取不到有效值。
330
+ */
331
+ Result: QueryOpenBankBankBranchListResult;
332
+ /**
333
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
334
+ */
335
+ RequestId?: string;
336
+ }
312
337
  /**
313
338
  * MigrateOrderRefundQuery返回参数结构体
314
339
  */
@@ -381,6 +406,10 @@ export interface UploadOrgFileRequest {
381
406
  * 收单系统分配的开放ID
382
407
  */
383
408
  OpenId: string;
409
+ /**
410
+ * 收单系统分配的密钥
411
+ */
412
+ OpenKey: string;
384
413
  /**
385
414
  * 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
386
415
  */
@@ -397,10 +426,6 @@ export interface UploadOrgFileRequest {
397
426
  * 文件扩展名(png,jpg,gif)
398
427
  */
399
428
  FileExtension: string;
400
- /**
401
- * 收单系统分配的密钥
402
- */
403
- OpenKey: string;
404
429
  /**
405
430
  * 沙箱环境填sandbox,正式环境不填
406
431
  */
@@ -741,11 +766,11 @@ __PROCESSING__: 进件中
741
766
  */
742
767
  export interface RefundTlinxOrderRequest {
743
768
  /**
744
- * 收单系统分配的开放ID
769
+ * 使用门店OpenId
745
770
  */
746
771
  OpenId: string;
747
772
  /**
748
- * 收单系统分配的密钥
773
+ * 使用门店OpenKey
749
774
  */
750
775
  OpenKey: string;
751
776
  /**
@@ -1006,6 +1031,31 @@ export interface CreateInvoiceResultData {
1006
1031
  */
1007
1032
  OrderSn: string;
1008
1033
  }
1034
+ /**
1035
+ * 对账文件信息
1036
+ */
1037
+ export interface FileItem {
1038
+ /**
1039
+ * STRING(256),文件名称
1040
+ 注意:此字段可能返回 null,表示取不到有效值。
1041
+ */
1042
+ FileName: string;
1043
+ /**
1044
+ * STRING(120),随机密码
1045
+ 注意:此字段可能返回 null,表示取不到有效值。
1046
+ */
1047
+ RandomPassword: string;
1048
+ /**
1049
+ * STRING(512),文件路径
1050
+ 注意:此字段可能返回 null,表示取不到有效值。
1051
+ */
1052
+ FilePath: string;
1053
+ /**
1054
+ * STRING(64),提取码
1055
+ 注意:此字段可能返回 null,表示取不到有效值。
1056
+ */
1057
+ DrawCode: string;
1058
+ }
1009
1059
  /**
1010
1060
  * UnbindOpenBankExternalSubMerchantBankAccount请求参数结构体
1011
1061
  */
@@ -1826,21 +1876,17 @@ export interface RevokeMemberRechargeThirdPayResponse {
1826
1876
  */
1827
1877
  export interface DistributeAccreditTlinxRequest {
1828
1878
  /**
1829
- * 收单系统分配的开放ID
1879
+ * 使用门店OpenId
1830
1880
  */
1831
1881
  OpenId: string;
1832
1882
  /**
1833
- * 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
1834
- */
1835
- AuthType: string;
1836
- /**
1837
- * 收单系统分配的密钥
1883
+ * 使用门店OpenKey
1838
1884
  */
1839
1885
  OpenKey: string;
1840
1886
  /**
1841
- * 沙箱环境填sandbox,正式环境不填
1887
+ * 验证方式,传1手机验证(验证码时效60S)传2结算卡验证(时效6小时),多种方式用逗号隔开
1842
1888
  */
1843
- Profile?: string;
1889
+ AuthType: string;
1844
1890
  /**
1845
1891
  * 分账比例(500=5%)不传默认百分之10
1846
1892
  */
@@ -1849,6 +1895,10 @@ export interface DistributeAccreditTlinxRequest {
1849
1895
  * 营业执照商户全称
1850
1896
  */
1851
1897
  FullName?: string;
1898
+ /**
1899
+ * 沙箱环境填sandbox,正式环境不填
1900
+ */
1901
+ Profile?: string;
1852
1902
  }
1853
1903
  /**
1854
1904
  * QueryContractRelateShop请求参数结构体
@@ -1917,29 +1967,41 @@ export interface QueryExceedingInfoResponse {
1917
1967
  */
1918
1968
  export interface AddContractRequest {
1919
1969
  /**
1920
- * 签约扣率百分比(如:0.32)
1970
+ * 收单系统分配的开放ID
1921
1971
  */
1922
- Fee: string;
1972
+ OpenId: string;
1923
1973
  /**
1924
- * 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
1974
+ * 收单系统分配的密钥
1925
1975
  */
1926
- OutContractId: string;
1976
+ OpenKey: string;
1927
1977
  /**
1928
- * 封顶值(分为单位,无封顶填0)
1978
+ * 机构合同主键(系统有唯一性校验),建议使用合同表的主键ID,防止重复添加合同
1929
1979
  */
1930
- PaymentClassificationLimit: string;
1980
+ OutContractId: string;
1931
1981
  /**
1932
- * 联系人电话
1982
+ * 合同编号(系统有唯一性校验)
1933
1983
  */
1934
- ContactTelephone: string;
1984
+ Code: string;
1935
1985
  /**
1936
1986
  * 支付方式编号
1937
1987
  */
1938
1988
  PaymentId: string;
1939
1989
  /**
1940
- * 收单系统分配的密钥
1990
+ * 支付方式行业分类编号
1941
1991
  */
1942
- OpenKey: string;
1992
+ PaymentClassificationId: string;
1993
+ /**
1994
+ * 封顶值(分为单位,无封顶填0)
1995
+ */
1996
+ PaymentClassificationLimit: string;
1997
+ /**
1998
+ * 商户编号
1999
+ */
2000
+ MerchantNo: string;
2001
+ /**
2002
+ * 签约扣率百分比(如:0.32)
2003
+ */
2004
+ Fee: string;
1943
2005
  /**
1944
2006
  * 合同生效日期(yyyy-mm-dd)
1945
2007
  */
@@ -1957,89 +2019,77 @@ export interface AddContractRequest {
1957
2019
  */
1958
2020
  SignName: string;
1959
2021
  /**
1960
- * 收单系统分配的开放ID
1961
- */
1962
- OpenId: string;
1963
- /**
1964
- * 商户编号
2022
+ * 合同签署日期(yyyy-mm-dd)
1965
2023
  */
1966
- MerchantNo: string;
2024
+ SignDate: string;
1967
2025
  /**
1968
- * 合同照片【私密区】
2026
+ * 是否自动续签(1是,0否)
1969
2027
  */
1970
- PictureOne: string;
2028
+ AutoSign: string;
1971
2029
  /**
1972
2030
  * 联系人
1973
2031
  */
1974
2032
  Contact: string;
1975
2033
  /**
1976
- * 合同签署日期(yyyy-mm-dd)
2034
+ * 联系人电话
1977
2035
  */
1978
- SignDate: string;
2036
+ ContactTelephone: string;
1979
2037
  /**
1980
- * 合同编号(系统有唯一性校验)
2038
+ * 合同照片【私密区】
1981
2039
  */
1982
- Code: string;
2040
+ PictureOne: string;
1983
2041
  /**
1984
- * 是否自动续签(1是,0否)
2042
+ * 合同照片【私密区】
1985
2043
  */
1986
- AutoSign: string;
2044
+ PictureTwo?: string;
1987
2045
  /**
1988
- * 支付方式行业分类编号
2046
+ * 渠道扩展字段,json格式
1989
2047
  */
1990
- PaymentClassificationId: string;
2048
+ ChannelExtJson?: string;
1991
2049
  /**
1992
2050
  * 沙箱环境填sandbox,正式环境不填
1993
2051
  */
1994
2052
  Profile?: string;
1995
2053
  /**
1996
- * 合同照片【私密区】
1997
- */
1998
- PictureTwo?: string;
1999
- /**
2000
- * 合同选项8
2001
- */
2002
- PaymentOptionTen?: string;
2003
- /**
2004
- * 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
2054
+ * 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2005
2055
  */
2006
- PaymentOptionNine?: string;
2056
+ PaymentOptionOne?: string;
2007
2057
  /**
2008
- * 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
2058
+ * 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2009
2059
  */
2010
- PaymentOptionOther?: string;
2060
+ PaymentOptionTwo?: string;
2011
2061
  /**
2012
- * 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2062
+ * 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
2013
2063
  */
2014
- PaymentOptionFive?: string;
2064
+ PaymentOptionThree?: string;
2015
2065
  /**
2016
2066
  * 合同选项4(不同支付方式规则不一样,请以支付方式规定的格式传值)
2017
2067
  */
2018
2068
  PaymentOptionFour?: string;
2019
2069
  /**
2020
- * 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
2070
+ * 合同证书选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2021
2071
  */
2022
- PaymentOptionSeven?: string;
2072
+ PaymentOptionFive?: string;
2023
2073
  /**
2024
2074
  * 合同证书选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2025
2075
  */
2026
2076
  PaymentOptionSix?: string;
2027
2077
  /**
2028
- * 合同选项1(不同支付方式规则不一样,请以支付方式规定的格式传值)
2078
+ * 合同选项5(不同支付方式规则不一样,请以支付方式规定的格式传值)
2029
2079
  */
2030
- PaymentOptionOne?: string;
2080
+ PaymentOptionSeven?: string;
2031
2081
  /**
2032
- * 合同选项3(不同支付方式规则不一样,请以支付方式规定的格式传值)
2082
+ * 合同选项6(不同支付方式规则不一样,请以支付方式规定的格式传值)
2033
2083
  */
2034
- PaymentOptionThree?: string;
2084
+ PaymentOptionOther?: string;
2035
2085
  /**
2036
- * 合同选项2(不同支付方式规则不一样,请以支付方式规定的格式传值)
2086
+ * 合同选项8
2037
2087
  */
2038
- PaymentOptionTwo?: string;
2088
+ PaymentOptionTen?: string;
2039
2089
  /**
2040
- * 渠道扩展字段,json格式
2090
+ * 合同选项7(不同支付方式规则不一样,请以支付方式规定的格式传值)
2041
2091
  */
2042
- ChannelExtJson?: string;
2092
+ PaymentOptionNine?: string;
2043
2093
  }
2044
2094
  /**
2045
2095
  * CreateAcct返回参数结构体
@@ -2063,25 +2113,25 @@ export interface CreateAcctResponse {
2063
2113
  */
2064
2114
  export interface DistributeAddReceiverRequest {
2065
2115
  /**
2066
- * 收单系统分配的开放ID
2116
+ * 使用门店OpenId
2067
2117
  */
2068
2118
  OpenId: string;
2069
2119
  /**
2070
- * 收单系统分配的密钥
2120
+ * 使用门店OpenKey
2071
2121
  */
2072
2122
  OpenKey: string;
2073
2123
  /**
2074
2124
  * 商户编号
2075
2125
  */
2076
2126
  MerchantNo: string;
2077
- /**
2078
- * 沙箱环境填sandbox,正式环境不填
2079
- */
2080
- Profile?: string;
2081
2127
  /**
2082
2128
  * 备注
2083
2129
  */
2084
2130
  Remark?: string;
2131
+ /**
2132
+ * 沙箱环境填sandbox,正式环境不填
2133
+ */
2134
+ Profile?: string;
2085
2135
  }
2086
2136
  /**
2087
2137
  * 查询汇率数据
@@ -2145,6 +2195,29 @@ export interface WithdrawBill {
2145
2195
  */
2146
2196
  ExtendFieldData?: string;
2147
2197
  }
2198
+ /**
2199
+ * QueryOpenBankDailyReceiptDownloadUrl返回参数结构体
2200
+ */
2201
+ export interface QueryOpenBankDailyReceiptDownloadUrlResponse {
2202
+ /**
2203
+ * 业务系统返回码,SUCCESS表示成功,其他表示失败。
2204
+ */
2205
+ ErrCode: string;
2206
+ /**
2207
+ * 业务系统返回消息。
2208
+ 注意:此字段可能返回 null,表示取不到有效值。
2209
+ */
2210
+ ErrMessage: string;
2211
+ /**
2212
+ * 按日期查询回单下载地址响应对象。
2213
+ 注意:此字段可能返回 null,表示取不到有效值。
2214
+ */
2215
+ Result: QueryOpenBankDailyReceiptDownloadUrlResult;
2216
+ /**
2217
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2218
+ */
2219
+ RequestId?: string;
2220
+ }
2148
2221
  /**
2149
2222
  * QueryPayerInfo返回参数结构体
2150
2223
  */
@@ -2183,17 +2256,28 @@ __其他__: 见附录-错误码表
2183
2256
  RequestId?: string;
2184
2257
  }
2185
2258
  /**
2186
- * 付款人查询结果
2259
+ * QueryMemberTransactionDetails返回参数结构体
2187
2260
  */
2188
- export interface QueryPayerinfoResult {
2261
+ export interface QueryMemberTransactionDetailsResponse {
2189
2262
  /**
2190
- * 错误码
2263
+ * 错误码。
2264
+ __SUCCESS__: 成功
2265
+ __其他__: 见附录-错误码表
2191
2266
  */
2192
- Code: string;
2267
+ ErrCode: string;
2193
2268
  /**
2194
- * 付款人查询数据
2269
+ * 错误消息。
2195
2270
  */
2196
- Data: QueryPayerinfoData;
2271
+ ErrMessage: string;
2272
+ /**
2273
+ * 返回结果。
2274
+ 注意:此字段可能返回 null,表示取不到有效值。
2275
+ */
2276
+ Result: QueryMemberTransactionDetailsResult;
2277
+ /**
2278
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2279
+ */
2280
+ RequestId?: string;
2197
2281
  }
2198
2282
  /**
2199
2283
  * 查询发票结果数据
@@ -2258,53 +2342,120 @@ export interface QueryInvoiceResultData {
2258
2342
  ImageUrl: string;
2259
2343
  }
2260
2344
  /**
2261
- * AddMerchant返回参数结构体
2345
+ * 会员资金交易明细信息
2262
2346
  */
2263
- export interface AddMerchantResponse {
2347
+ export interface FundsTransactionItem {
2264
2348
  /**
2265
- * 业务系统返回消息
2349
+ * 资金交易类型。
2350
+ __1__:提现/退款
2351
+ __2__:清分/充值
2352
+ */
2353
+ TransType: string;
2354
+ /**
2355
+ * 银行记账说明。
2266
2356
  注意:此字段可能返回 null,表示取不到有效值。
2267
2357
  */
2268
- ErrMessage: string;
2358
+ BankBookingMessage: string;
2269
2359
  /**
2270
- * 业务系统返回码,0表示成功,其他表示失败。
2360
+ * 交易状态。
2361
+ __0__:成功
2271
2362
  */
2272
- ErrCode: string;
2363
+ TranStatus: string;
2273
2364
  /**
2274
- * 添加商户响应对象
2365
+ * 业务方会员标识。
2366
+ _平安渠道为交易网会员代码_
2275
2367
  注意:此字段可能返回 null,表示取不到有效值。
2276
2368
  */
2277
- Result: AddMerchantResult;
2369
+ TransNetMemberCode: string;
2278
2370
  /**
2279
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2371
+ * 子账户账号。
2372
+ _平安渠道为见证子账户的账号_
2280
2373
  */
2281
- RequestId?: string;
2282
- }
2283
- /**
2284
- * RegisterBill返回参数结构体
2285
- */
2286
- export interface RegisterBillResponse {
2374
+ SubAccountNumber: string;
2287
2375
  /**
2288
- * 银行流水号
2376
+ * 子账户名称。
2377
+ _平安渠道为见证子账户的户名_
2378
+ 注意:此字段可能返回 null,表示取不到有效值。
2289
2379
  */
2290
- FrontSeqNo?: string;
2380
+ SubAccountName: string;
2291
2381
  /**
2292
- * 保留字段
2382
+ * 交易金额。
2293
2383
  */
2294
- ReservedMessage?: string;
2384
+ TransAmount: string;
2295
2385
  /**
2296
- * 请求类型
2386
+ * 交易手续费。
2387
+ 注意:此字段可能返回 null,表示取不到有效值。
2297
2388
  */
2298
- RequestType?: string;
2389
+ TransFee: string;
2299
2390
  /**
2300
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
2391
+ * 交易日期,格式:yyyyMMdd
2301
2392
  */
2302
- RequestId?: string;
2303
- }
2304
- /**
2305
- * ApplyReWithdrawal请求参数结构体
2306
- */
2307
- export interface ApplyReWithdrawalRequest {
2393
+ TransDate: string;
2394
+ /**
2395
+ * 交易时间,格式:HHmmss。
2396
+ 注意:此字段可能返回 null,表示取不到有效值。
2397
+ */
2398
+ TransTime: string;
2399
+ /**
2400
+ * 银行系统流水号。
2401
+ _平安渠道为见证系统流水号_
2402
+ */
2403
+ BankSequenceNumber: string;
2404
+ /**
2405
+ * 备注。
2406
+ _平安渠道,如果是见证+收单的交易,返回交易订单号_
2407
+ 注意:此字段可能返回 null,表示取不到有效值。
2408
+ */
2409
+ Remark: string;
2410
+ }
2411
+ /**
2412
+ * AddMerchant返回参数结构体
2413
+ */
2414
+ export interface AddMerchantResponse {
2415
+ /**
2416
+ * 业务系统返回消息
2417
+ 注意:此字段可能返回 null,表示取不到有效值。
2418
+ */
2419
+ ErrMessage: string;
2420
+ /**
2421
+ * 业务系统返回码,0表示成功,其他表示失败。
2422
+ */
2423
+ ErrCode: string;
2424
+ /**
2425
+ * 添加商户响应对象
2426
+ 注意:此字段可能返回 null,表示取不到有效值。
2427
+ */
2428
+ Result: AddMerchantResult;
2429
+ /**
2430
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2431
+ */
2432
+ RequestId?: string;
2433
+ }
2434
+ /**
2435
+ * RegisterBill返回参数结构体
2436
+ */
2437
+ export interface RegisterBillResponse {
2438
+ /**
2439
+ * 银行流水号
2440
+ */
2441
+ FrontSeqNo?: string;
2442
+ /**
2443
+ * 保留字段
2444
+ */
2445
+ ReservedMessage?: string;
2446
+ /**
2447
+ * 请求类型
2448
+ */
2449
+ RequestType?: string;
2450
+ /**
2451
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2452
+ */
2453
+ RequestId?: string;
2454
+ }
2455
+ /**
2456
+ * ApplyReWithdrawal请求参数结构体
2457
+ */
2458
+ export interface ApplyReWithdrawalRequest {
2308
2459
  /**
2309
2460
  * 聚鑫业务类型
2310
2461
  */
@@ -2384,10 +2535,6 @@ export interface ViewMerchantRequest {
2384
2535
  * 收单系统分配的密钥
2385
2536
  */
2386
2537
  OpenKey: string;
2387
- /**
2388
- * 沙箱环境填sandbox,正式环境不填
2389
- */
2390
- Profile?: string;
2391
2538
  /**
2392
2539
  * 外部商户主键编号(MerchantNo或OutMerchantId必须传一个)
2393
2540
  */
@@ -2396,6 +2543,10 @@ export interface ViewMerchantRequest {
2396
2543
  * 商户编号(MerchantNo或OutMerchantId必须传一个)
2397
2544
  */
2398
2545
  MerchantNo?: string;
2546
+ /**
2547
+ * 沙箱环境填sandbox,正式环境不填
2548
+ */
2549
+ Profile?: string;
2399
2550
  }
2400
2551
  /**
2401
2552
  * QueryDownloadBillURL返回参数结构体
@@ -2985,11 +3136,11 @@ export interface CreateOpenBankMerchantResult {
2985
3136
  */
2986
3137
  export interface DistributeQueryReceiverRequest {
2987
3138
  /**
2988
- * 收单系统分配的开放ID
3139
+ * 使用门店OpenId
2989
3140
  */
2990
3141
  OpenId: string;
2991
3142
  /**
2992
- * 收单系统分配的密钥
3143
+ * 使用门店OpenKey
2993
3144
  */
2994
3145
  OpenKey: string;
2995
3146
  /**
@@ -3505,6 +3656,35 @@ export interface ViewMerchantResult {
3505
3656
  */
3506
3657
  TaxCollectionNo?: string;
3507
3658
  }
3659
+ /**
3660
+ * QueryOpenBankSupportBankList请求参数结构体
3661
+ */
3662
+ export interface QueryOpenBankSupportBankListRequest {
3663
+ /**
3664
+ * 渠道商户ID。
3665
+ */
3666
+ ChannelMerchantId: string;
3667
+ /**
3668
+ * 渠道名称。
3669
+ __TENPAY__: 商企付
3670
+ __WECHAT__: 微信支付
3671
+ __ALIPAY__: 支付宝
3672
+ */
3673
+ ChannelName: string;
3674
+ /**
3675
+ * 支付方式。
3676
+ __EBANK_PAYMENT__:ebank付款
3677
+ __OPENBANK_PAYMENT__: openbank付款
3678
+ */
3679
+ PaymentMethod: string;
3680
+ /**
3681
+ * 环境类型。
3682
+ __release__:生产环境
3683
+ __sandbox__:沙箱环境
3684
+ _不填默认为生产环境_
3685
+ */
3686
+ Environment?: string;
3687
+ }
3508
3688
  /**
3509
3689
  * 提交贸易材料结果
3510
3690
  */
@@ -3605,6 +3785,15 @@ development: 开发环境
3605
3785
  */
3606
3786
  MidasEnvironment?: string;
3607
3787
  }
3788
+ /**
3789
+ * 查询支持的银行列表返回结果
3790
+ */
3791
+ export interface QueryOpenBankSupportBankListResult {
3792
+ /**
3793
+ * 支持的银行列表
3794
+ */
3795
+ SupportBankList: Array<SupportBankInfo>;
3796
+ }
3608
3797
  /**
3609
3798
  * BindRelateAcctSmallAmount请求参数结构体
3610
3799
  */
@@ -4387,11 +4576,11 @@ export interface QueryExceedingInfoResult {
4387
4576
  */
4388
4577
  export interface QueryMerchantPayWayListRequest {
4389
4578
  /**
4390
- * 收单系统分配的开放ID
4579
+ * 使用门店OpenId
4391
4580
  */
4392
4581
  OpenId: string;
4393
4582
  /**
4394
- * 收单系统分配的密钥
4583
+ * 使用门店OpenKey
4395
4584
  */
4396
4585
  OpenKey: string;
4397
4586
  /**
@@ -4527,237 +4716,237 @@ export interface CreateInvoiceResponse {
4527
4716
  */
4528
4717
  export interface AddMerchantRequest {
4529
4718
  /**
4530
- * 法人姓名
4719
+ * 收单系统分配的开放ID
4531
4720
  */
4532
- BossName: string;
4721
+ OpenId: string;
4533
4722
  /**
4534
- * 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
4723
+ * 收单系统分配的密钥
4535
4724
  */
4536
- BusinessLicensePicture: string;
4725
+ OpenKey: string;
4537
4726
  /**
4538
- * 招牌名称
4727
+ * 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
4539
4728
  */
4540
- BrandName: string;
4729
+ OutMerchantId: string;
4541
4730
  /**
4542
- * 收单系统分配的密钥
4731
+ * 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
4543
4732
  */
4544
- OpenKey: string;
4733
+ MerchantName: string;
4545
4734
  /**
4546
- * 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4735
+ * 营业执照类型(1三证合一,2非三证合一)
4547
4736
  */
4548
- BusinessLicenseEndDate: string;
4737
+ BusinessLicenseType: string;
4549
4738
  /**
4550
- * 法人证件生效时间(yyyy-mm-dd)
4739
+ * 营业执照编号(系统有唯一性校验),(小微商户不效验,随意传要有值,公司/个体户必传)
4551
4740
  */
4552
- BossStartDate: string;
4741
+ BusinessLicenseNo: string;
4553
4742
  /**
4554
- * 清算联行号,开户行行号
4743
+ * 营业执照图片【私密区】(系统返回的图片路径),(小微商户不效验,随意传要有值,公司/个体户必传)
4555
4744
  */
4556
- BankNo: string;
4745
+ BusinessLicensePicture: string;
4557
4746
  /**
4558
- * 开户行名称
4747
+ * 营业执照生效时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4559
4748
  */
4560
- BankName: string;
4749
+ BusinessLicenseStartDate: string;
4561
4750
  /**
4562
- * 营业执照类型(1三证合一,2非三证合一)
4751
+ * 营业执照过期时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4563
4752
  */
4564
- BusinessLicenseType: string;
4753
+ BusinessLicenseEndDate: string;
4565
4754
  /**
4566
- * 法人证件过期时间(yyyy-mm-dd)
4755
+ * 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
4567
4756
  */
4568
- BossEndDate: string;
4757
+ ClassificationIds: Array<string>;
4569
4758
  /**
4570
- * 营业执照编号(系统有唯一性校验),(小微商户不效验,随意传要有值,公司/个体户必传)
4759
+ * 招牌名称
4571
4760
  */
4572
- BusinessLicenseNo: string;
4761
+ BrandName: string;
4573
4762
  /**
4574
- * 营业执照生效时间(yyyy-mm-dd),(小微商户不效验,随意传要有值,公司/个体户必传)
4763
+ * 联系电话
4575
4764
  */
4576
- BusinessLicenseStartDate: string;
4765
+ Telephone: string;
4577
4766
  /**
4578
- * 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
4767
+ * 城市编号
4579
4768
  */
4580
- BossIdType: string;
4769
+ CityId: string;
4581
4770
  /**
4582
4771
  * 详细地址,不含省市区县名称,长度需要大于5。
4583
4772
  */
4584
4773
  Address: string;
4585
4774
  /**
4586
- * 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
4775
+ * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
4587
4776
  */
4588
- BossIdCountry: string;
4777
+ OpenHours: string;
4589
4778
  /**
4590
- * 收单系统分配的开放ID
4779
+ * 结算账户类型(2对私,1对公)
4591
4780
  */
4592
- OpenId: string;
4781
+ AccountType: string;
4593
4782
  /**
4594
- * 商户名称,小微商户命名要符合“”商户_名字” (例如:商户_张三)
4783
+ * 清算联行号,开户行行号
4595
4784
  */
4596
- MerchantName: string;
4785
+ BankNo: string;
4597
4786
  /**
4598
- * 法人性别(1男,2女)
4787
+ * 开户行名称
4599
4788
  */
4600
- BossSex: string;
4789
+ BankName: string;
4601
4790
  /**
4602
- * 行业分类编号列表(第一个分类编号为主分类,后面的为二级分类)
4791
+ * 银行账号
4603
4792
  */
4604
- ClassificationIds: Array<string>;
4793
+ AccountNo: string;
4794
+ /**
4795
+ * 银行户名
4796
+ */
4797
+ AccountName: string;
4798
+ /**
4799
+ * 法人证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)
4800
+ */
4801
+ BossIdType: string;
4605
4802
  /**
4606
4803
  * 法人证件号码
4607
4804
  */
4608
4805
  BossIdNo: string;
4609
4806
  /**
4610
- * 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
4807
+ * 法人姓名
4611
4808
  */
4612
- LicencePicture: string;
4809
+ BossName: string;
4613
4810
  /**
4614
- * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
4811
+ * 法人性别(1男,2女)
4615
4812
  */
4616
- OpenHours: string;
4813
+ BossSex: string;
4617
4814
  /**
4618
- * 银行户名
4815
+ * 法人证件国别/地区(中国CHN,香港HKG,澳门MAC,台湾CTN)
4619
4816
  */
4620
- AccountName: string;
4817
+ BossIdCountry: string;
4621
4818
  /**
4622
- * 银行账号
4819
+ * 法人身份证正面【私密区】(系统返回的图片路径)
4623
4820
  */
4624
- AccountNo: string;
4821
+ BossPositive: string;
4625
4822
  /**
4626
- * 结算账户类型(2对私,1对公)
4823
+ * 法人身份证背面【私密区】(系统返回的图片路径)
4627
4824
  */
4628
- AccountType: string;
4825
+ BossBack: string;
4629
4826
  /**
4630
- * 联系电话
4827
+ * 法人证件生效时间(yyyy-mm-dd)
4631
4828
  */
4632
- Telephone: string;
4829
+ BossStartDate: string;
4633
4830
  /**
4634
- * 法人身份证正面【私密区】(系统返回的图片路径)
4831
+ * 法人证件过期时间(yyyy-mm-dd)
4635
4832
  */
4636
- BossPositive: string;
4833
+ BossEndDate: string;
4637
4834
  /**
4638
- * 城市编号
4835
+ * 许可证图片【私密区】,(小微商户不效验,随意传要有值,公司/个体户必传)
4639
4836
  */
4640
- CityId: string;
4837
+ LicencePicture: string;
4641
4838
  /**
4642
- * 法人身份证背面【私密区】(系统返回的图片路径)
4839
+ * 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
4643
4840
  */
4644
- BossBack: string;
4841
+ Type?: string;
4645
4842
  /**
4646
- * 机构商户主键(系统有唯一性校验),建议使用商户表的主键ID,防止重复添加商户
4843
+ * 组织机构代码证号
4647
4844
  */
4648
- OutMerchantId: string;
4845
+ OrganizationNo?: string;
4649
4846
  /**
4650
4847
  * 组织机构代码证生效时间(yyyy-mm-dd)
4651
4848
  */
4652
4849
  OrganizationStartDate?: string;
4653
4850
  /**
4654
- * 法人亲属证件号码
4851
+ * 组织机构代码证图片【私密区】
4655
4852
  */
4656
- AccountIdNo?: string;
4853
+ OrganizationPicture?: string;
4657
4854
  /**
4658
- * 财务联系人
4855
+ * 组织机构代码证过期时间(yyyy-mm-dd)
4659
4856
  */
4660
- FinancialContact?: string;
4857
+ OrganizationEndDate?: string;
4661
4858
  /**
4662
- * 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
4859
+ * 商户简介
4663
4860
  */
4664
- AccountIdType?: string;
4861
+ Intro?: string;
4665
4862
  /**
4666
- * 组织机构代码证号
4863
+ * 商户logo【公共区】
4667
4864
  */
4668
- OrganizationNo?: string;
4865
+ Logo?: string;
4669
4866
  /**
4670
- * 其他资料1
4867
+ * 商户标记,自定义参数
4671
4868
  */
4672
- OtherPictureOne?: string;
4869
+ Tag?: string;
4673
4870
  /**
4674
4871
  * 财务联系人电话
4675
4872
  */
4676
4873
  FinancialTelephone?: string;
4677
4874
  /**
4678
- * 沙箱环境填sandbox,正式环境不填
4875
+ * 财务联系人
4679
4876
  */
4680
- Profile?: string;
4877
+ FinancialContact?: string;
4681
4878
  /**
4682
- * 组织机构代码证图片【私密区】
4879
+ * 税务登记证号
4683
4880
  */
4684
- OrganizationPicture?: string;
4881
+ TaxRegistrationNo?: string;
4882
+ /**
4883
+ * 税务登记证图片【私密区】
4884
+ */
4885
+ TaxRegistrationPicture?: string;
4685
4886
  /**
4686
4887
  * 税务登记证生效时间(yyyy-mm-dd)
4687
4888
  */
4688
4889
  TaxRegistrationStartDate?: string;
4689
4890
  /**
4690
- * 商户标记,自定义参数
4891
+ * 税务登记证过期时间(yyyy-mm-dd)
4691
4892
  */
4692
- Tag?: string;
4893
+ TaxRegistrationEndDate?: string;
4693
4894
  /**
4694
4895
  * 结算账户人身份(1法人,2法人亲属),结算帐户为对私时必填
4695
4896
  */
4696
4897
  AccountBoss?: string;
4697
4898
  /**
4698
- * 法人电话
4699
- */
4700
- BossTelephone?: string;
4701
- /**
4702
- * 税务登记证图片【私密区】
4899
+ * 客户经理姓名,必须为系统后台的管理员真实姓名
4703
4900
  */
4704
- TaxRegistrationPicture?: string;
4901
+ AccountManagerName?: string;
4705
4902
  /**
4706
- * 组织机构代码证过期时间(yyyy-mm-dd)
4903
+ * 法人电话
4707
4904
  */
4708
- OrganizationEndDate?: string;
4905
+ BossTelephone?: string;
4709
4906
  /**
4710
4907
  * 法人职业
4711
4908
  */
4712
4909
  BossJob?: string;
4713
4910
  /**
4714
- * 其他资料3
4715
- */
4716
- OtherPictureThree?: string;
4717
- /**
4718
- * 授权文件【私密区】
4719
- */
4720
- LicencePictureTwo?: string;
4721
- /**
4722
- * 商户logo【公共区】
4911
+ * 法人邮箱
4723
4912
  */
4724
- Logo?: string;
4913
+ BossEmail?: string;
4725
4914
  /**
4726
4915
  * 法人住址
4727
4916
  */
4728
4917
  BossAddress?: string;
4729
4918
  /**
4730
- * 法人邮箱
4919
+ * 法人亲属证件类型(1居民身份证,2临时居民身份证,3居民户口簿,4护照,5港澳居民来往内地通行证,6回乡证,7军人证,8武警身份证,9其他法定文件)结算账户人身份为法人亲属时必填
4731
4920
  */
4732
- BossEmail?: string;
4921
+ AccountIdType?: string;
4733
4922
  /**
4734
- * 其他资料2
4923
+ * 法人亲属证件号码
4735
4924
  */
4736
- OtherPictureTwo?: string;
4925
+ AccountIdNo?: string;
4737
4926
  /**
4738
- * 商户简介
4927
+ * 授权文件【私密区】
4739
4928
  */
4740
- Intro?: string;
4929
+ LicencePictureTwo?: string;
4741
4930
  /**
4742
- * 客户经理姓名,必须为系统后台的管理员真实姓名
4931
+ * 其他资料1
4743
4932
  */
4744
- AccountManagerName?: string;
4933
+ OtherPictureOne?: string;
4745
4934
  /**
4746
- * 税务登记证过期时间(yyyy-mm-dd)
4935
+ * 其他资料2
4747
4936
  */
4748
- TaxRegistrationEndDate?: string;
4937
+ OtherPictureTwo?: string;
4749
4938
  /**
4750
- * 其他资料4
4939
+ * 其他资料3
4751
4940
  */
4752
- OtherPictureFour?: string;
4941
+ OtherPictureThree?: string;
4753
4942
  /**
4754
- * 税务登记证号
4943
+ * 其他资料4
4755
4944
  */
4756
- TaxRegistrationNo?: string;
4945
+ OtherPictureFour?: string;
4757
4946
  /**
4758
- * 商户类型:1-个体,2-小微,3-企业。不传默认为2-小微商户。
4947
+ * 沙箱环境填sandbox,正式环境不填
4759
4948
  */
4760
- Type?: string;
4949
+ Profile?: string;
4761
4950
  }
4762
4951
  /**
4763
4952
  * 红票结果V2
@@ -5251,6 +5440,47 @@ export interface RevokeRechargeByThirdPayResponse {
5251
5440
  */
5252
5441
  RequestId?: string;
5253
5442
  }
5443
+ /**
5444
+ * QueryOpenBankDailyReceiptDownloadUrl请求参数结构体
5445
+ */
5446
+ export interface QueryOpenBankDailyReceiptDownloadUrlRequest {
5447
+ /**
5448
+ * 云企付渠道商户号。外部接入平台入驻云企付平台后下发。
5449
+ */
5450
+ ChannelMerchantId: string;
5451
+ /**
5452
+ * 云企付渠道子商户号。入驻在渠道商户下的子商户ID,如付款方的商户ID,对应创建支付订单中接口参数中的PayerInfo中的payerId。
5453
+ */
5454
+ ChannelSubMerchantId: string;
5455
+ /**
5456
+ * 渠道名称。
5457
+ __TENPAY__: 商企付
5458
+ __WECHAT__: 微信支付
5459
+ __ALIPAY__: 支付宝
5460
+ */
5461
+ ChannelName: string;
5462
+ /**
5463
+ * 付款方式。如
5464
+ __EBANK_PAYMENT__:ebank付款
5465
+ __OPENBANK_PAYMENT__: openbank付款
5466
+ */
5467
+ PaymentMethod: string;
5468
+ /**
5469
+ * 绑卡序列号,银行卡唯一标记,资金账户ID,用于区分商户绑定多卡或多账户场景
5470
+ */
5471
+ BindSerialNo: string;
5472
+ /**
5473
+ * 查询日期,D日查询D-1日的回单文件
5474
+ */
5475
+ QueryDate: string;
5476
+ /**
5477
+ * 环境类型
5478
+ release:生产环境
5479
+ sandbox:沙箱环境
5480
+ 缺省默认为生产环境
5481
+ */
5482
+ Environment?: string;
5483
+ }
5254
5484
  /**
5255
5485
  * CreateAcct请求参数结构体
5256
5486
  */
@@ -5385,6 +5615,23 @@ export interface CreateAgentTaxPaymentInfosRequest {
5385
5615
  */
5386
5616
  Profile?: string;
5387
5617
  }
5618
+ /**
5619
+ * QueryReconciliationFileApplyInfo请求参数结构体
5620
+ */
5621
+ export interface QueryReconciliationFileApplyInfoRequest {
5622
+ /**
5623
+ * 申请对账文件的任务ID。
5624
+ */
5625
+ ApplyFileId: string;
5626
+ /**
5627
+ * 环境名。
5628
+ __release__: 现网环境
5629
+ __sandbox__: 沙箱环境
5630
+ __development__: 开发环境
5631
+ _缺省: release_
5632
+ */
5633
+ MidasEnvironment?: string;
5634
+ }
5388
5635
  /**
5389
5636
  * QueryBillDownloadURL返回参数结构体
5390
5637
  */
@@ -5617,11 +5864,11 @@ export interface RefundOrderResponse {
5617
5864
  */
5618
5865
  export interface QueryOrderStatusRequest {
5619
5866
  /**
5620
- * 收单系统分配的开放ID
5867
+ * 使用门店OpenId
5621
5868
  */
5622
5869
  OpenId: string;
5623
5870
  /**
5624
- * 收单系统分配的密钥
5871
+ * 使用门店OpenKey
5625
5872
  */
5626
5873
  OpenKey: string;
5627
5874
  /**
@@ -5898,6 +6145,30 @@ export interface UploadTaxListResponse {
5898
6145
  */
5899
6146
  RequestId?: string;
5900
6147
  }
6148
+ /**
6149
+ * QueryReconciliationFileApplyInfo返回参数结构体
6150
+ */
6151
+ export interface QueryReconciliationFileApplyInfoResponse {
6152
+ /**
6153
+ * 错误码。
6154
+ __SUCCESS__: 成功
6155
+ __其他__: 见附录-错误码表
6156
+ */
6157
+ ErrCode: string;
6158
+ /**
6159
+ * 错误消息。
6160
+ */
6161
+ ErrMessage: string;
6162
+ /**
6163
+ * 返回结果。
6164
+ 注意:此字段可能返回 null,表示取不到有效值。
6165
+ */
6166
+ Result: QueryReconciliationFileApplyInfoResult;
6167
+ /**
6168
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6169
+ */
6170
+ RequestId?: string;
6171
+ }
5901
6172
  /**
5902
6173
  * BindRelateAcctUnionPay请求参数结构体
5903
6174
  */
@@ -5956,29 +6227,30 @@ export interface BindRelateAcctUnionPayRequest {
5956
6227
  Profile?: string;
5957
6228
  }
5958
6229
  /**
5959
- * 对账文件信息
6230
+ * 查询会员资金交易信息列表结果
5960
6231
  */
5961
- export interface FileItem {
6232
+ export interface QueryFundsTransactionDetailsResult {
5962
6233
  /**
5963
- * STRING(256),文件名称
5964
- 注意:此字段可能返回 null,表示取不到有效值。
6234
+ * 本次交易返回查询结果记录数。
5965
6235
  */
5966
- FileName: string;
6236
+ ResultCount: number;
5967
6237
  /**
5968
- * STRING(120),随机密码
6238
+ * 符合业务查询条件的记录总数。
5969
6239
  注意:此字段可能返回 null,表示取不到有效值。
5970
6240
  */
5971
- RandomPassword: string;
6241
+ TotalCount: number;
5972
6242
  /**
5973
- * STRING(512),文件路径
6243
+ * 结束标志。
6244
+ __0__:否
6245
+ __1__:是
5974
6246
  注意:此字段可能返回 null,表示取不到有效值。
5975
6247
  */
5976
- FilePath: string;
6248
+ EndFlag: string;
5977
6249
  /**
5978
- * STRING(64),提取码
6250
+ * 会员资金交易信息数组。
5979
6251
  注意:此字段可能返回 null,表示取不到有效值。
5980
6252
  */
5981
- DrawCode: string;
6253
+ TranItemArray: Array<FundsTransactionItem>;
5982
6254
  }
5983
6255
  /**
5984
6256
  * 聚鑫商户余额查询输出项
@@ -6103,21 +6375,17 @@ export interface QueryMerchantInfoForManagementRequest {
6103
6375
  */
6104
6376
  export interface UnifiedTlinxOrderRequest {
6105
6377
  /**
6106
- * 开发者流水号
6107
- */
6108
- DeveloperNo: string;
6109
- /**
6110
- * 收单系统分配的开放ID
6378
+ * 使用门店OpenId
6111
6379
  */
6112
6380
  OpenId: string;
6113
6381
  /**
6114
- * 交易结果异步通知url地址
6382
+ * 使用门店OpenKey
6115
6383
  */
6116
- NotifyUrl: string;
6384
+ OpenKey: string;
6117
6385
  /**
6118
- * 收单系统分配的密钥
6386
+ * 开发者流水号
6119
6387
  */
6120
- OpenKey: string;
6388
+ DeveloperNo: string;
6121
6389
  /**
6122
6390
  * 支付标签
6123
6391
  */
@@ -6127,41 +6395,33 @@ export interface UnifiedTlinxOrderRequest {
6127
6395
  */
6128
6396
  TradeAmount: string;
6129
6397
  /**
6130
- * 订单备注
6131
- */
6132
- Remark?: string;
6133
- /**
6134
- * 订单标记,订单附加数据。
6135
- */
6136
- Tag?: string;
6137
- /**
6138
- * 抹零金额(以分为单位,没有小数点)
6398
+ * 交易结果异步通知url地址
6139
6399
  */
6140
- IgnoreAmount?: string;
6400
+ NotifyUrl: string;
6141
6401
  /**
6142
- * 条码支付的授权码(条码抢扫手机扫到的一串数字)
6402
+ * 付款方式名称(当PayTag为Diy时,PayName不能为空)
6143
6403
  */
6144
- AuthCode?: string;
6404
+ PayName?: string;
6145
6405
  /**
6146
- * 原始交易金额(以分为单位,没有小数点)
6406
+ * 公众号支付时,支付成功后跳转url地址
6147
6407
  */
6148
- OriginalAmount?: string;
6408
+ JumpUrl?: string;
6149
6409
  /**
6150
6410
  * 订单名称(描述)
6151
6411
  */
6152
6412
  OrderName?: string;
6153
6413
  /**
6154
- * 公众号支付时,支付成功后跳转url地址
6414
+ * 原始交易金额(以分为单位,没有小数点)
6155
6415
  */
6156
- JumpUrl?: string;
6416
+ OriginalAmount?: string;
6157
6417
  /**
6158
- * 沙箱环境填sandbox,正式环境不填
6418
+ * 抹零金额(以分为单位,没有小数点)
6159
6419
  */
6160
- Profile?: string;
6420
+ IgnoreAmount?: string;
6161
6421
  /**
6162
- * 收单机构原始交易报文,请转换为json
6422
+ * 折扣金额(以分为单位,没有小数点)
6163
6423
  */
6164
- TradeResult?: string;
6424
+ DiscountAmount?: string;
6165
6425
  /**
6166
6426
  * 交易帐号(银行卡号)
6167
6427
  */
@@ -6171,13 +6431,21 @@ export interface UnifiedTlinxOrderRequest {
6171
6431
  */
6172
6432
  TradeNo?: string;
6173
6433
  /**
6174
- * 折扣金额(以分为单位,没有小数点)
6434
+ * 条码支付的授权码(条码抢扫手机扫到的一串数字)
6175
6435
  */
6176
- DiscountAmount?: string;
6436
+ AuthCode?: string;
6177
6437
  /**
6178
- * 付款方式名称(当PayTag为Diy时,PayName不能为空)
6438
+ * 订单标记,订单附加数据。
6179
6439
  */
6180
- PayName?: string;
6440
+ Tag?: string;
6441
+ /**
6442
+ * 订单备注
6443
+ */
6444
+ Remark?: string;
6445
+ /**
6446
+ * 收单机构原始交易报文,请转换为json
6447
+ */
6448
+ TradeResult?: string;
6181
6449
  /**
6182
6450
  * 0-不分账,1-需分账。为1时标记为待分账订单,待分账订单不会进行清算。不传默认为不分账。
6183
6451
  */
@@ -6196,6 +6464,10 @@ export interface UnifiedTlinxOrderRequest {
6196
6464
  用户在子商户appid下的唯一标识。
6197
6465
  */
6198
6466
  SubOpenId?: string;
6467
+ /**
6468
+ * 沙箱环境填sandbox,正式环境不填
6469
+ */
6470
+ Profile?: string;
6199
6471
  }
6200
6472
  /**
6201
6473
  * DeduceQuota请求参数结构体
@@ -6317,6 +6589,56 @@ export interface QueryExchangerateResult {
6317
6589
  */
6318
6590
  Data: Array<QueryExchangerateData>;
6319
6591
  }
6592
+ /**
6593
+ * QueryMemberTransactionDetails请求参数结构体
6594
+ */
6595
+ export interface QueryMemberTransactionDetailsRequest {
6596
+ /**
6597
+ * 查询的交易发生时间类型。
6598
+ __1__:当日
6599
+ __2__:历史
6600
+ */
6601
+ QueryDateType: string;
6602
+ /**
6603
+ * 查询的交易类型。
6604
+ __1__:全部
6605
+ __2__:转出
6606
+ __3__:转入
6607
+ */
6608
+ QueryTranType: string;
6609
+ /**
6610
+ * 父账户账号。
6611
+ _平安渠道为资金汇总账号_
6612
+ */
6613
+ BankAccountNumber: string;
6614
+ /**
6615
+ * 子账户账号。
6616
+ _平安渠道为见证子账户的账号_
6617
+ */
6618
+ SubAccountNumber: string;
6619
+ /**
6620
+ * 分页号, 起始值为1。
6621
+ */
6622
+ PageOffSet: string;
6623
+ /**
6624
+ * 查询开始日期,格式:yyyyMMdd。
6625
+ __若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
6626
+ */
6627
+ QueryStartDate?: string;
6628
+ /**
6629
+ * 查询终止日期,格式:yyyyMMdd。
6630
+ __若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
6631
+ */
6632
+ QueryEndDate?: string;
6633
+ /**
6634
+ * 环境名。
6635
+ __release__: 现网环境
6636
+ __sandbox__: 沙箱环境
6637
+ __development__: 开发环境
6638
+ _缺省: release_
6639
+ */
6640
+ MidasEnvironment?: string;
6641
+ }
6320
6642
  /**
6321
6643
  * QueryBatchPaymentResult请求参数结构体
6322
6644
  */
@@ -6787,18 +7109,37 @@ development: 开发环境
6787
7109
  MidasEnvironment?: string;
6788
7110
  }
6789
7111
  /**
6790
- * QueryAgentStatements请求参数结构体
7112
+ * QueryRefund请求参数结构体
6791
7113
  */
6792
- export interface QueryAgentStatementsRequest {
7114
+ export interface QueryRefundRequest {
6793
7115
  /**
6794
- * 结算单日期,月结算单填每月1日
7116
+ * 用户ID,长度不小于5位,仅支持字母和数字的组合。
6795
7117
  */
6796
- Date: string;
7118
+ UserId: string;
6797
7119
  /**
6798
- * 日结算单:daily
6799
- 月结算单:monthly
7120
+ * 退款订单号,仅支持数字、字母、下划线(_)、横杠字符(-)、点(.)的组合。
6800
7121
  */
6801
- Type: string;
7122
+ RefundId: string;
7123
+ /**
7124
+ * 聚鑫分配的支付主MidasAppId
7125
+ */
7126
+ MidasAppId: string;
7127
+ /**
7128
+ * 聚鑫分配的安全ID
7129
+ */
7130
+ MidasSecretId: string;
7131
+ /**
7132
+ * 按照聚鑫安全密钥计算的签名
7133
+ */
7134
+ MidasSignature: string;
7135
+ /**
7136
+ * 环境名:
7137
+ release: 现网环境
7138
+ sandbox: 沙箱环境
7139
+ development: 开发环境
7140
+ 缺省: release
7141
+ */
7142
+ MidasEnvironment?: string;
6802
7143
  }
6803
7144
  /**
6804
7145
  * CreateCustAcctId请求参数结构体
@@ -6907,11 +7248,11 @@ export interface CreateBatchPaymentData {
6907
7248
  */
6908
7249
  export interface DistributeQueryRequest {
6909
7250
  /**
6910
- * 收单系统分配的开放ID
7251
+ * 使用门店OpenId
6911
7252
  */
6912
7253
  OpenId: string;
6913
7254
  /**
6914
- * 收单系统分配的密钥
7255
+ * 使用门店OpenKey
6915
7256
  */
6916
7257
  OpenKey: string;
6917
7258
  /**
@@ -6919,21 +7260,21 @@ export interface DistributeQueryRequest {
6919
7260
  */
6920
7261
  Type: string;
6921
7262
  /**
6922
- * 沙箱环境填sandbox,正式环境不填
7263
+ * 商户分账单号,type为2时,和DistributeNo二者传其一
6923
7264
  */
6924
- Profile?: string;
7265
+ OutDistributeNo?: string;
6925
7266
  /**
6926
7267
  * 平台分账单号,type为2时,和OutDistributeNo二者传其一
6927
7268
  */
6928
7269
  DistributeNo?: string;
6929
- /**
6930
- * 商户分账单号,type为2时,和DistributeNo二者传其一
6931
- */
6932
- OutDistributeNo?: string;
6933
7270
  /**
6934
7271
  * 平台交易订单号
6935
7272
  */
6936
7273
  OrderNo?: string;
7274
+ /**
7275
+ * 沙箱环境填sandbox,正式环境不填
7276
+ */
7277
+ Profile?: string;
6937
7278
  }
6938
7279
  /**
6939
7280
  * CloseOrder请求参数结构体
@@ -7306,10 +7647,6 @@ export interface ViewContractRequest {
7306
7647
  * 收单系统分配的密钥
7307
7648
  */
7308
7649
  OpenKey: string;
7309
- /**
7310
- * 沙箱环境填sandbox,正式环境不填
7311
- */
7312
- Profile?: string;
7313
7650
  /**
7314
7651
  * 外部合同主键编号(ContractId或OutContractId必须传一个)
7315
7652
  */
@@ -7318,6 +7655,10 @@ export interface ViewContractRequest {
7318
7655
  * 合同主键(ContractId或OutContractId必须传一个)
7319
7656
  */
7320
7657
  ContractId?: string;
7658
+ /**
7659
+ * 沙箱环境填sandbox,正式环境不填
7660
+ */
7661
+ Profile?: string;
7321
7662
  }
7322
7663
  /**
7323
7664
  * QueryBankTransactionDetails请求参数结构体
@@ -8636,11 +8977,11 @@ export interface QueryInvoiceV2Request {
8636
8977
  */
8637
8978
  export interface DistributeAccreditQueryRequest {
8638
8979
  /**
8639
- * 收单系统分配的开放ID
8980
+ * 使用门店OpenId
8640
8981
  */
8641
8982
  OpenId: string;
8642
8983
  /**
8643
- * 收单系统分配的密钥
8984
+ * 使用门店OpenKey
8644
8985
  */
8645
8986
  OpenKey: string;
8646
8987
  /**
@@ -8870,6 +9211,31 @@ export interface QuerySmallAmountTransferRequest {
8870
9211
  */
8871
9212
  Profile?: string;
8872
9213
  }
9214
+ /**
9215
+ * 支持的银行信息
9216
+ */
9217
+ export interface SupportBankInfo {
9218
+ /**
9219
+ * 银行简称。
9220
+ */
9221
+ BankCode: string;
9222
+ /**
9223
+ * 银行名称。
9224
+ */
9225
+ BankName: string;
9226
+ /**
9227
+ * 状态。
9228
+ __MAINTAINING__: 维护中
9229
+ __WORKING__: 正常工作
9230
+ 注意:此字段可能返回 null,表示取不到有效值。
9231
+ */
9232
+ MaintainStatus: string;
9233
+ /**
9234
+ * 银行渠道维护公告。
9235
+ 注意:此字段可能返回 null,表示取不到有效值。
9236
+ */
9237
+ BankNotice: string;
9238
+ }
8873
9239
  /**
8874
9240
  * ModifyMntMbrBindRelateAcctBankCode请求参数结构体
8875
9241
  */
@@ -9017,6 +9383,35 @@ export interface AgentTaxPayment {
9017
9383
  */
9018
9384
  Tax: number;
9019
9385
  }
9386
+ /**
9387
+ * UploadFile请求参数结构体
9388
+ */
9389
+ export interface UploadFileRequest {
9390
+ /**
9391
+ * 文件名
9392
+ */
9393
+ FileName: string;
9394
+ /**
9395
+ * 文件类型
9396
+ __IdCard__:身份证
9397
+ __IdCardCheck__:身份证加验证(只支持人像面)
9398
+ */
9399
+ FileType: string;
9400
+ /**
9401
+ * 文件链接
9402
+ __FileUrl和FileContent二选一__
9403
+ */
9404
+ FileUrl?: string;
9405
+ /**
9406
+ * 文件内容,Base64编码
9407
+ __FileUrl和FileContent二选一__
9408
+ */
9409
+ FileContent?: string;
9410
+ /**
9411
+ * 文件扩展信息
9412
+ */
9413
+ FileExtendInfo?: Array<AnchorExtendInfo>;
9414
+ }
9020
9415
  /**
9021
9416
  * QueryBankWithdrawCashDetails返回参数结构体
9022
9417
  */
@@ -9917,25 +10312,25 @@ _不填默认为生产环境_
9917
10312
  */
9918
10313
  export interface DistributeRemoveReceiverRequest {
9919
10314
  /**
9920
- * 收单系统分配的开放ID
10315
+ * 使用门店OpenId
9921
10316
  */
9922
10317
  OpenId: string;
9923
10318
  /**
9924
- * 收单系统分配的密钥
10319
+ * 使用门店OpenKey
9925
10320
  */
9926
10321
  OpenKey: string;
9927
10322
  /**
9928
10323
  * 商户编号
9929
10324
  */
9930
10325
  MerchantNo: string;
9931
- /**
9932
- * 沙箱环境填sandbox,正式环境不填
9933
- */
9934
- Profile?: string;
9935
10326
  /**
9936
10327
  * 备注
9937
10328
  */
9938
10329
  Remark?: string;
10330
+ /**
10331
+ * 沙箱环境填sandbox,正式环境不填
10332
+ */
10333
+ Profile?: string;
9939
10334
  }
9940
10335
  /**
9941
10336
  * DeleteAgentTaxPaymentInfos请求参数结构体
@@ -9999,85 +10394,85 @@ export interface AddShopRequest {
9999
10394
  */
10000
10395
  OpenId: string;
10001
10396
  /**
10002
- * 门店简称(例如:南山店)
10397
+ * 收单系统分配的密钥
10003
10398
  */
10004
- ShopName: string;
10399
+ OpenKey: string;
10005
10400
  /**
10006
- * 商户编号
10401
+ * 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
10007
10402
  */
10008
- MerchantNo: string;
10403
+ OutShopId: string;
10009
10404
  /**
10010
- * 整体门面(含招牌)图片【公共区】
10405
+ * 门店简称(例如:南山店)
10011
10406
  */
10012
- PictureTwo: string;
10407
+ ShopName: string;
10013
10408
  /**
10014
- * 店内环境图片【公共区】
10409
+ * 门店全称(例如:江山小厨(南山店))
10015
10410
  */
10016
- PictureThree: string;
10411
+ ShopFullName: string;
10017
10412
  /**
10018
- * 整体门面(含招牌)图片【公共区】
10413
+ * 商户编号
10019
10414
  */
10020
- PictureOne: string;
10415
+ MerchantNo: string;
10021
10416
  /**
10022
10417
  * 门店电话
10023
10418
  */
10024
10419
  Telephone: string;
10025
10420
  /**
10026
- * 机构门店主键(系统有唯一性校验),建议使用门店表的主键ID,防止重复添加门店
10421
+ * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
10027
10422
  */
10028
- OutShopId: string;
10423
+ OpenHours: string;
10029
10424
  /**
10030
10425
  * 门店所在的城市编码
10031
10426
  */
10032
10427
  CityId: string;
10033
- /**
10034
- * 门店全称(例如:江山小厨(南山店))
10035
- */
10036
- ShopFullName: string;
10037
- /**
10038
- * 营业时间,多个以小写逗号分开(9:00-12:00,13:00-18:00)
10039
- */
10040
- OpenHours: string;
10041
10428
  /**
10042
10429
  * 门店详细地址,不含省市区县名称
10043
10430
  */
10044
10431
  Address: string;
10045
10432
  /**
10046
- * 收单系统分配的密钥
10047
- */
10048
- OpenKey: string;
10049
- /**
10050
- * 沙箱环境填sandbox,正式环境不填
10433
+ * 整体门面(含招牌)图片【公共区】
10051
10434
  */
10052
- Profile?: string;
10435
+ PictureOne: string;
10053
10436
  /**
10054
- * 高德地图纬度
10437
+ * 整体门面(含招牌)图片【公共区】
10055
10438
  */
10056
- LatitudeTwo?: string;
10439
+ PictureTwo: string;
10057
10440
  /**
10058
- * 其他照片【公共区】
10441
+ * 店内环境图片【公共区】
10059
10442
  */
10060
- OtherPicture?: string;
10443
+ PictureThree: string;
10061
10444
  /**
10062
- * 高德地图经度
10445
+ * 负责人手机号码
10063
10446
  */
10064
- LongitudeTwo?: string;
10447
+ FinancialTelephone?: string;
10065
10448
  /**
10066
10449
  * 门店负责人
10067
10450
  */
10068
10451
  Contact?: string;
10452
+ /**
10453
+ * 百度地图纬度
10454
+ */
10455
+ Latitude?: string;
10456
+ /**
10457
+ * 高德地图纬度
10458
+ */
10459
+ LatitudeTwo?: string;
10069
10460
  /**
10070
10461
  * 百度地图经度
10071
10462
  */
10072
10463
  Longitude?: string;
10073
10464
  /**
10074
- * 百度地图纬度
10465
+ * 高德地图经度
10075
10466
  */
10076
- Latitude?: string;
10467
+ LongitudeTwo?: string;
10077
10468
  /**
10078
- * 负责人手机号码
10469
+ * 其他照片【公共区】
10079
10470
  */
10080
- FinancialTelephone?: string;
10471
+ OtherPicture?: string;
10472
+ /**
10473
+ * 沙箱环境填sandbox,正式环境不填
10474
+ */
10475
+ Profile?: string;
10081
10476
  }
10082
10477
  /**
10083
10478
  * 批量转账明细实体
@@ -10383,6 +10778,53 @@ export interface QueryTransferResultRequest {
10383
10778
  */
10384
10779
  Profile?: string;
10385
10780
  }
10781
+ /**
10782
+ * 查询对账文件申请结果
10783
+ */
10784
+ export interface QueryReconciliationFileApplyInfoResult {
10785
+ /**
10786
+ * 申请对账文件的任务ID。
10787
+ */
10788
+ ApplyFileId: string;
10789
+ /**
10790
+ * 对账文件申请状态。
10791
+ __I__:申请中
10792
+ __S__:申请成功
10793
+ __F__:申请失败
10794
+ */
10795
+ ApplyStatus: string;
10796
+ /**
10797
+ * 申请结果描述。
10798
+ 注意:此字段可能返回 null,表示取不到有效值。
10799
+ */
10800
+ ApplyMessage: string;
10801
+ /**
10802
+ * 对账文件下载地址列表。
10803
+ 注意:此字段可能返回 null,表示取不到有效值。
10804
+ */
10805
+ FileUrlArray: Array<string>;
10806
+ }
10807
+ /**
10808
+ * 申请对账文件结果
10809
+ */
10810
+ export interface ApplyReconciliationFileResult {
10811
+ /**
10812
+ * 申请对账文件的任务ID。
10813
+ */
10814
+ ApplyFileId: string;
10815
+ /**
10816
+ * 对账文件申请状态。
10817
+ __I__:申请中
10818
+ __S__:申请成功
10819
+ __F__:申请失败
10820
+ */
10821
+ ApplyStatus: string;
10822
+ /**
10823
+ * 申请结果描述。
10824
+ 注意:此字段可能返回 null,表示取不到有效值。
10825
+ */
10826
+ ApplyMessage: string;
10827
+ }
10386
10828
  /**
10387
10829
  * QueryOpenBankExternalSubMerchantBankAccount返回参数结构体
10388
10830
  */
@@ -10724,6 +11166,55 @@ development 开发环境
10724
11166
  */
10725
11167
  TransFee?: string;
10726
11168
  }
11169
+ /**
11170
+ * QueryFundsTransactionDetails请求参数结构体
11171
+ */
11172
+ export interface QueryFundsTransactionDetailsRequest {
11173
+ /**
11174
+ * 查询的交易发生时间类型。
11175
+ __1__:当日
11176
+ __2__:历史
11177
+ */
11178
+ QueryDateType: string;
11179
+ /**
11180
+ * 查询的交易类型。
11181
+ __2__:提现/退款
11182
+ __3__:清分/充值
11183
+ */
11184
+ QueryTranType: string;
11185
+ /**
11186
+ * 父账户账号。
11187
+ _平安渠道为资金汇总账号_
11188
+ */
11189
+ BankAccountNumber: string;
11190
+ /**
11191
+ * 子账户账号。
11192
+ _平安渠道为见证子账户的账号_
11193
+ */
11194
+ SubAccountNumber: string;
11195
+ /**
11196
+ * 分页号, 起始值为1。
11197
+ */
11198
+ PageOffSet: string;
11199
+ /**
11200
+ * 查询开始日期,格式:yyyyMMdd。
11201
+ __若是历史查询,则必输,当日查询时,不起作用;开始日期不能超过当前日期__
11202
+ */
11203
+ QueryStartDate?: string;
11204
+ /**
11205
+ * 查询终止日期,格式:yyyyMMdd。
11206
+ __若是历史查询,则必输,当日查询时,不起作用;终止日期不能超过当前日期__
11207
+ */
11208
+ QueryEndDate?: string;
11209
+ /**
11210
+ * 环境名。
11211
+ __release__: 现网环境
11212
+ __sandbox__: 沙箱环境
11213
+ __development__: 开发环境
11214
+ _缺省: release_
11215
+ */
11216
+ MidasEnvironment?: string;
11217
+ }
10727
11218
  /**
10728
11219
  * 第三方子商户银行卡绑定返回结果
10729
11220
  */
@@ -10811,11 +11302,11 @@ export interface CreateMerchantResultData {
10811
11302
  */
10812
11303
  export interface DistributeCancelRequest {
10813
11304
  /**
10814
- * 收单系统分配的开放ID
11305
+ * 使用门店OpenId
10815
11306
  */
10816
11307
  OpenId: string;
10817
11308
  /**
10818
- * 收单系统分配的密钥
11309
+ * 使用门店OpenKey
10819
11310
  */
10820
11311
  OpenKey: string;
10821
11312
  /**
@@ -10823,62 +11314,42 @@ export interface DistributeCancelRequest {
10823
11314
  */
10824
11315
  OrderNo: string;
10825
11316
  /**
10826
- * 沙箱环境填sandbox,正式环境不填
11317
+ * 商户分账单号,type为2时,和DistributeNo二者传其一
10827
11318
  */
10828
- Profile?: string;
11319
+ OutDistributeNo?: string;
10829
11320
  /**
10830
11321
  * 平台分账单号,type为2时,和OutDistributeNo二者传其一
10831
11322
  */
10832
11323
  DistributeNo?: string;
10833
11324
  /**
10834
- * 商户分账单号,type为2时,和DistributeNo二者传其一
11325
+ * 沙箱环境填sandbox,正式环境不填
10835
11326
  */
10836
- OutDistributeNo?: string;
11327
+ Profile?: string;
10837
11328
  }
10838
11329
  /**
10839
- * RegisterBillSupportWithdraw请求参数结构体
11330
+ * QueryOpenBankSupportBankList返回参数结构体
10840
11331
  */
10841
- export interface RegisterBillSupportWithdrawRequest {
10842
- /**
10843
- * STRING(32),交易网会员代码
10844
- */
10845
- TranNetMemberCode: string;
10846
- /**
10847
- * STRING(50),订单号
10848
- */
10849
- OrderNo: string;
10850
- /**
10851
- * STRING(20),挂账金额(包含交易费用)
10852
- */
10853
- SuspendAmt: string;
11332
+ export interface QueryOpenBankSupportBankListResponse {
10854
11333
  /**
10855
- * STRING(20),交易费用(暂未使用,默认传0.0)
10856
- */
10857
- TranFee: string;
10858
- /**
10859
- * String(22),商户号(签约客户号)
10860
- */
10861
- MrchCode: string;
10862
- /**
10863
- * STRING(300),备注
10864
- */
10865
- Remark?: string;
10866
- /**
10867
- * STRING(300),保留域1
11334
+ * 错误码。
11335
+ __SUCCESS__: 成功
11336
+ __其他__: 见附录-错误码表
10868
11337
  */
10869
- ReservedMsgOne?: string;
11338
+ ErrCode: string;
10870
11339
  /**
10871
- * STRING(300),保留域2
11340
+ * 错误消息。
11341
+ 注意:此字段可能返回 null,表示取不到有效值。
10872
11342
  */
10873
- ReservedMsgTwo?: string;
11343
+ ErrMessage: string;
10874
11344
  /**
10875
- * STRING(300),保留域3
11345
+ * 返回结果。
11346
+ 注意:此字段可能返回 null,表示取不到有效值。
10876
11347
  */
10877
- ReservedMsgThree?: string;
11348
+ Result: QueryOpenBankSupportBankListResult;
10878
11349
  /**
10879
- * STRING(12),接入环境,默认接入沙箱环境。接入正式环境填"prod"
11350
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10880
11351
  */
10881
- Profile?: string;
11352
+ RequestId?: string;
10882
11353
  }
10883
11354
  /**
10884
11355
  * 成功申报材料查询结果
@@ -11026,6 +11497,11 @@ export interface OpenBankPayeeInfo {
11026
11497
  * 联行号。渠道为TENPAY,付款方式为OPENBANK_PAYMENT时必选
11027
11498
  */
11028
11499
  BankBranchId?: string;
11500
+ /**
11501
+ * 收款方绑卡序列号。
11502
+ 当渠道为TENPAY,付款方式为EBANK_PAYMENT时,上送收款方入驻云企付平台时,下发的绑卡序列号。
11503
+ */
11504
+ BindSerialNo?: string;
11029
11505
  }
11030
11506
  /**
11031
11507
  * 添加门店响应对象
@@ -11350,6 +11826,19 @@ export interface MigrateOrderRefundRequest {
11350
11826
  */
11351
11827
  RefundReason?: string;
11352
11828
  }
11829
+ /**
11830
+ * 云企付-查询账户余额
11831
+ */
11832
+ export interface QueryOpenBankBankAccountBalanceResult {
11833
+ /**
11834
+ * 总余额,单位分
11835
+ */
11836
+ TotalBalance: string;
11837
+ /**
11838
+ * 昨日余额,单位分
11839
+ */
11840
+ YesterdayBalance: string;
11841
+ }
11353
11842
  /**
11354
11843
  * QuerySinglePaymentResult接口返回响应
11355
11844
  */
@@ -11497,6 +11986,27 @@ export interface ExternalContractUserInfo {
11497
11986
  */
11498
11987
  ExternalUserId: string;
11499
11988
  }
11989
+ /**
11990
+ * 支行信息
11991
+ */
11992
+ export interface BankBranchInfo {
11993
+ /**
11994
+ * 银行名称。
11995
+ */
11996
+ BankName: string;
11997
+ /**
11998
+ * 银行简称。
11999
+ */
12000
+ BankAbbreviation: string;
12001
+ /**
12002
+ * 支行名。
12003
+ */
12004
+ BankBranchName: string;
12005
+ /**
12006
+ * 联行号。
12007
+ */
12008
+ BankBranchId: string;
12009
+ }
11500
12010
  /**
11501
12011
  * 用户信息
11502
12012
  */
@@ -11556,6 +12066,43 @@ export interface ApplyApplicationMaterialRequest {
11556
12066
  */
11557
12067
  Profile?: string;
11558
12068
  }
12069
+ /**
12070
+ * QueryOpenBankBankAccountBalance请求参数结构体
12071
+ */
12072
+ export interface QueryOpenBankBankAccountBalanceRequest {
12073
+ /**
12074
+ * 云企付渠道商户号。外部接入平台入驻云企付平台后下发。
12075
+ */
12076
+ ChannelMerchantId: string;
12077
+ /**
12078
+ * 云企付渠道子商户号。入驻在渠道商户下的子商户ID,如付款方的商户ID,对应创建支付订单中接口参数中的PayerInfo中的payerId。
12079
+ */
12080
+ ChannelSubMerchantId: string;
12081
+ /**
12082
+ * 渠道名称。
12083
+ __TENPAY__: 商企付
12084
+ __WECHAT__: 微信支付
12085
+ __ALIPAY__: 支付宝
12086
+ */
12087
+ ChannelName: string;
12088
+ /**
12089
+ * 支付方式,如
12090
+ __EBANK_PAYMENT__:ebank付款
12091
+ __OPENBANK_PAYMENT__: openbank付款
12092
+ */
12093
+ PaymentMethod: string;
12094
+ /**
12095
+ * 绑卡序列号,银行账户唯一ID,区分多卡或多账户的场景
12096
+ */
12097
+ BindSerialNo: string;
12098
+ /**
12099
+ * 环境类型
12100
+ release:生产环境
12101
+ sandbox:沙箱环境
12102
+ 缺省默认为生产环境
12103
+ */
12104
+ Environment?: string;
12105
+ }
11559
12106
  /**
11560
12107
  * ModifyAgentTaxPaymentInfo请求参数结构体
11561
12108
  */
@@ -11832,10 +12379,6 @@ export interface DownloadOrgFileRequest {
11832
12379
  * 收单系统分配的密钥
11833
12380
  */
11834
12381
  OpenKey: string;
11835
- /**
11836
- * 沙箱环境填sandbox,正式环境不填
11837
- */
11838
- Profile?: string;
11839
12382
  /**
11840
12383
  * 存储区域(0私密区,1公共区),请严格按文件要求,上传到不同的区域
11841
12384
  */
@@ -11844,6 +12387,10 @@ export interface DownloadOrgFileRequest {
11844
12387
  * 文件路径
11845
12388
  */
11846
12389
  FilePath?: string;
12390
+ /**
12391
+ * 沙箱环境填sandbox,正式环境不填
12392
+ */
12393
+ Profile?: string;
11847
12394
  }
11848
12395
  /**
11849
12396
  * 签约同步信息
@@ -11931,37 +12478,18 @@ export interface Order {
11931
12478
  Items: Array<OrderItem>;
11932
12479
  }
11933
12480
  /**
11934
- * QueryRefund请求参数结构体
12481
+ * QueryAgentStatements请求参数结构体
11935
12482
  */
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;
11949
- /**
11950
- * 聚鑫分配的安全ID
11951
- */
11952
- MidasSecretId: string;
12483
+ export interface QueryAgentStatementsRequest {
11953
12484
  /**
11954
- * 按照聚鑫安全密钥计算的签名
12485
+ * 结算单日期,月结算单填每月1日
11955
12486
  */
11956
- MidasSignature: string;
12487
+ Date: string;
11957
12488
  /**
11958
- * 环境名:
11959
- release: 现网环境
11960
- sandbox: 沙箱环境
11961
- development: 开发环境
11962
- 缺省: release
12489
+ * 日结算单:daily
12490
+ 月结算单:monthly
11963
12491
  */
11964
- MidasEnvironment?: string;
12492
+ Type: string;
11965
12493
  }
11966
12494
  /**
11967
12495
  * CreateExternalAnchor接口返回参数
@@ -12173,33 +12701,27 @@ export interface QueryInvoiceResponse {
12173
12701
  RequestId?: string;
12174
12702
  }
12175
12703
  /**
12176
- * UploadFile请求参数结构体
12704
+ * QueryOpenBankBankAccountBalance返回参数结构体
12177
12705
  */
12178
- export interface UploadFileRequest {
12706
+ export interface QueryOpenBankBankAccountBalanceResponse {
12179
12707
  /**
12180
- * 文件名
12181
- */
12182
- FileName: string;
12183
- /**
12184
- * 文件类型
12185
- __IdCard__:身份证
12186
- __IdCardCheck__:身份证加验证(只支持人像面)
12708
+ * 业务系统返回码,SUCCESS表示成功,其他表示失败。
12187
12709
  */
12188
- FileType: string;
12710
+ ErrCode: string;
12189
12711
  /**
12190
- * 文件链接
12191
- __FileUrl和FileContent二选一__
12712
+ * 业务系统返回消息。
12713
+ 注意:此字段可能返回 null,表示取不到有效值。
12192
12714
  */
12193
- FileUrl?: string;
12715
+ ErrMessage: string;
12194
12716
  /**
12195
- * 文件内容,Base64编码
12196
- __FileUrl和FileContent二选一__
12717
+ * 账户余额查询响应对象。
12718
+ 注意:此字段可能返回 null,表示取不到有效值。
12197
12719
  */
12198
- FileContent?: string;
12720
+ Result: QueryOpenBankBankAccountBalanceResult;
12199
12721
  /**
12200
- * 文件扩展信息
12722
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12201
12723
  */
12202
- FileExtendInfo?: Array<AnchorExtendInfo>;
12724
+ RequestId?: string;
12203
12725
  }
12204
12726
  /**
12205
12727
  * ViewMerchant返回参数结构体
@@ -12260,6 +12782,32 @@ export interface UploadFileResponse {
12260
12782
  */
12261
12783
  RequestId?: string;
12262
12784
  }
12785
+ /**
12786
+ * 聚鑫-查询会员间交易信息列表结果
12787
+ */
12788
+ export interface QueryMemberTransactionDetailsResult {
12789
+ /**
12790
+ * 本次交易返回查询结果记录数。
12791
+ */
12792
+ ResultCount: number;
12793
+ /**
12794
+ * 符合业务查询条件的记录总数。
12795
+ 注意:此字段可能返回 null,表示取不到有效值。
12796
+ */
12797
+ TotalCount: number;
12798
+ /**
12799
+ * 结束标志。
12800
+ __0__:否
12801
+ __1__:是
12802
+ 注意:此字段可能返回 null,表示取不到有效值。
12803
+ */
12804
+ EndFlag: string;
12805
+ /**
12806
+ * 会员间交易信息数组
12807
+ 注意:此字段可能返回 null,表示取不到有效值。
12808
+ */
12809
+ TranItemArray: Array<MemberTransactionItem>;
12810
+ }
12263
12811
  /**
12264
12812
  * 创建商户结果
12265
12813
  */
@@ -12637,6 +13185,73 @@ export interface CreateSinglePaymentRequest {
12637
13185
  */
12638
13186
  NotifyUrl?: string;
12639
13187
  }
13188
+ /**
13189
+ * 会员间交易明细信息
13190
+ */
13191
+ export interface MemberTransactionItem {
13192
+ /**
13193
+ * 交易类型。
13194
+ __1__:转出
13195
+ __2__:转入
13196
+ */
13197
+ TransType: string;
13198
+ /**
13199
+ * 交易状态。
13200
+ __0__:成功
13201
+ */
13202
+ TranStatus: string;
13203
+ /**
13204
+ * 交易金额。
13205
+ */
13206
+ TransAmount: string;
13207
+ /**
13208
+ * 交易日期,格式:yyyyMMdd。
13209
+ */
13210
+ TransDate: string;
13211
+ /**
13212
+ * 交易时间,格式:HHmmss。
13213
+ 注意:此字段可能返回 null,表示取不到有效值。
13214
+ */
13215
+ TransTime: string;
13216
+ /**
13217
+ * 银行系统流水号。
13218
+ _平安渠道为见证系统流水号_
13219
+ */
13220
+ BankSequenceNumber: string;
13221
+ /**
13222
+ * 银行记账类型。
13223
+ _平安渠道为:_
13224
+ _1:会员支付_
13225
+ _2:会员冻结_
13226
+ _3:会员解冻_
13227
+ _4:登记挂账_
13228
+ _6:下单预支付_
13229
+ _7:确认并付款_
13230
+ _8:会员退款_
13231
+ _22:见证+收单平台调账_
13232
+ _23:见证+收单资金冻结_
13233
+ _24:见证+收单资金解冻_
13234
+ _25:会员间交易退款_
13235
+ 注意:此字段可能返回 null,表示取不到有效值。
13236
+ */
13237
+ BankBookingType: string;
13238
+ /**
13239
+ * 转入方子账户账号。
13240
+ _平安渠道为转入见证子账户的账号_
13241
+ */
13242
+ InSubAccountNumber: string;
13243
+ /**
13244
+ * 转出方子账户账号。
13245
+ _平安渠道为转出见证子账户的账号_
13246
+ */
13247
+ OutSubAccountNumber: string;
13248
+ /**
13249
+ * 备注。
13250
+ _平安渠道,如果是见证+收单的交易,返回交易订单号_
13251
+ 注意:此字段可能返回 null,表示取不到有效值。
13252
+ */
13253
+ Remark: string;
13254
+ }
12640
13255
  /**
12641
13256
  * 分账接收方响应对象
12642
13257
  */
@@ -12652,37 +13267,37 @@ export interface DistributeReceiverResult {
12652
13267
  */
12653
13268
  export interface DistributeApplyRequest {
12654
13269
  /**
12655
- * 收单系统分配的开放ID
13270
+ * 使用门店OpenId
12656
13271
  */
12657
13272
  OpenId: string;
12658
13273
  /**
12659
- * 商户分账单号
13274
+ * 使用门店OpenKey
12660
13275
  */
12661
- OutDistributeNo: string;
13276
+ OpenKey: string;
12662
13277
  /**
12663
- * 收单系统分配的密钥
13278
+ * 商户分账单号
12664
13279
  */
12665
- OpenKey: string;
13280
+ OutDistributeNo: string;
12666
13281
  /**
12667
13282
  * 分账明细
12668
13283
  */
12669
13284
  Details: Array<MultiApplyDetail>;
12670
13285
  /**
12671
- * 沙箱环境填sandbox,正式环境不填
13286
+ * 商户交易订单号,和OrderNo二者传其一
12672
13287
  */
12673
- Profile?: string;
13288
+ DeveloperNo?: string;
12674
13289
  /**
12675
- * 说明
13290
+ * 平台交易订单号,和DeveloperNo二者传其一
12676
13291
  */
12677
- Remark?: string;
13292
+ OrderNo?: string;
12678
13293
  /**
12679
- * 商户交易订单号,和OrderNo二者传其一
13294
+ * 说明
12680
13295
  */
12681
- DeveloperNo?: string;
13296
+ Remark?: string;
12682
13297
  /**
12683
- * 平台交易订单号,和DeveloperNo二者传其一
13298
+ * 沙箱环境填sandbox,正式环境不填
12684
13299
  */
12685
- OrderNo?: string;
13300
+ Profile?: string;
12686
13301
  }
12687
13302
  /**
12688
13303
  * ViewShop请求参数结构体
@@ -12696,10 +13311,6 @@ export interface ViewShopRequest {
12696
13311
  * 收单系统分配的密钥
12697
13312
  */
12698
13313
  OpenKey: string;
12699
- /**
12700
- * 沙箱环境填sandbox,正式环境不填
12701
- */
12702
- Profile?: string;
12703
13314
  /**
12704
13315
  * 外部商户主键编号(ShopNo或OutShopId必须传一个)
12705
13316
  */
@@ -12708,6 +13319,10 @@ export interface ViewShopRequest {
12708
13319
  * 门店编号(ShopNo或OutShopId必须传一个)
12709
13320
  */
12710
13321
  ShopNo?: string;
13322
+ /**
13323
+ * 沙箱环境填sandbox,正式环境不填
13324
+ */
13325
+ Profile?: string;
12711
13326
  }
12712
13327
  /**
12713
13328
  * ApplyOutwardOrder返回参数结构体
@@ -12959,10 +13574,44 @@ export interface CreateAgentTaxPaymentInfosResponse {
12959
13574
  */
12960
13575
  RequestId?: string;
12961
13576
  }
13577
+ /**
13578
+ * ApplyReconciliationFile返回参数结构体
13579
+ */
13580
+ export interface ApplyReconciliationFileResponse {
13581
+ /**
13582
+ * 错误码。
13583
+ __SUCCESS__: 成功
13584
+ __其他__: 见附录-错误码表
13585
+ */
13586
+ ErrCode: string;
13587
+ /**
13588
+ * 错误消息。
13589
+ */
13590
+ ErrMessage: string;
13591
+ /**
13592
+ * 返回结果。
13593
+ 注意:此字段可能返回 null,表示取不到有效值。
13594
+ */
13595
+ Result: ApplyReconciliationFileResult;
13596
+ /**
13597
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13598
+ */
13599
+ RequestId?: string;
13600
+ }
12962
13601
  /**
12963
13602
  * 合同-支付方式列表响应对象
12964
13603
  */
12965
13604
  export interface ContractPayListResult {
13605
+ /**
13606
+ * 支付方式编号
13607
+ 注意:此字段可能返回 null,表示取不到有效值。
13608
+ */
13609
+ PaymentId: string;
13610
+ /**
13611
+ * 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
13612
+ 注意:此字段可能返回 null,表示取不到有效值。
13613
+ */
13614
+ PaymentType: string;
12966
13615
  /**
12967
13616
  * 支付标签
12968
13617
  注意:此字段可能返回 null,表示取不到有效值。
@@ -12973,41 +13622,36 @@ export interface ContractPayListResult {
12973
13622
  注意:此字段可能返回 null,表示取不到有效值。
12974
13623
  */
12975
13624
  PaymentIcon: string;
12976
- /**
12977
- * 支付方式
12978
- 注意:此字段可能返回 null,表示取不到有效值。
12979
- */
12980
- PaymentOptionSix?: string;
12981
13625
  /**
12982
13626
  * 付款方式名称
12983
13627
  注意:此字段可能返回 null,表示取不到有效值。
12984
13628
  */
12985
13629
  PaymentName: string;
12986
13630
  /**
12987
- * 支付方式
13631
+ * 付款方式名称(内部名称)
12988
13632
  注意:此字段可能返回 null,表示取不到有效值。
12989
13633
  */
12990
- PaymentOptionSeven?: string;
13634
+ PaymentInternalName: string;
12991
13635
  /**
12992
13636
  * 支付方式
12993
13637
  注意:此字段可能返回 null,表示取不到有效值。
12994
13638
  */
12995
- PaymentOptionTwo?: string;
13639
+ PaymentOptionOne?: string;
12996
13640
  /**
12997
13641
  * 支付方式
12998
13642
  注意:此字段可能返回 null,表示取不到有效值。
12999
13643
  */
13000
- PaymentOptionOne?: string;
13644
+ PaymentOptionTwo?: string;
13001
13645
  /**
13002
13646
  * 支付方式
13003
13647
  注意:此字段可能返回 null,表示取不到有效值。
13004
13648
  */
13005
- PaymentOptionOther?: string;
13649
+ PaymentOptionThree?: string;
13006
13650
  /**
13007
- * 支持的交易类型(多个以小写逗号分开,0现金,1刷卡,2主扫,3被扫,4JSPAY,5预授权)
13651
+ * 支付方式
13008
13652
  注意:此字段可能返回 null,表示取不到有效值。
13009
13653
  */
13010
- PaymentType: string;
13654
+ PaymentOptionFour?: string;
13011
13655
  /**
13012
13656
  * 支付方式
13013
13657
  注意:此字段可能返回 null,表示取不到有效值。
@@ -13017,27 +13661,22 @@ export interface ContractPayListResult {
13017
13661
  * 支付方式
13018
13662
  注意:此字段可能返回 null,表示取不到有效值。
13019
13663
  */
13020
- PaymentOptionNine?: string;
13021
- /**
13022
- * 支付方式编号
13023
- 注意:此字段可能返回 null,表示取不到有效值。
13024
- */
13025
- PaymentId: string;
13664
+ PaymentOptionSix?: string;
13026
13665
  /**
13027
13666
  * 支付方式
13028
13667
  注意:此字段可能返回 null,表示取不到有效值。
13029
13668
  */
13030
- PaymentOptionThree?: string;
13669
+ PaymentOptionSeven?: string;
13031
13670
  /**
13032
- * 付款方式名称(内部名称)
13671
+ * 支付方式
13033
13672
  注意:此字段可能返回 null,表示取不到有效值。
13034
13673
  */
13035
- PaymentInternalName: string;
13674
+ PaymentOptionOther?: string;
13036
13675
  /**
13037
13676
  * 支付方式
13038
13677
  注意:此字段可能返回 null,表示取不到有效值。
13039
13678
  */
13040
- PaymentOptionFour?: string;
13679
+ PaymentOptionNine?: string;
13041
13680
  /**
13042
13681
  * 支付方式
13043
13682
  注意:此字段可能返回 null,表示取不到有效值。
@@ -13132,21 +13771,17 @@ export interface DescribeOrderStatusRequest {
13132
13771
  TransDate?: string;
13133
13772
  }
13134
13773
  /**
13135
- * 云企付-关单响应
13774
+ * 米大师内部存放的合约信息
13136
13775
  */
13137
- export interface CloseOpenBankPaymentOrderResult {
13138
- /**
13139
- * 外部商户订单号
13140
- */
13141
- OutOrderId: string;
13776
+ export interface ChannelContractInfo {
13142
13777
  /**
13143
- * 云企付平台订单号
13778
+ * 外部合约协议号
13144
13779
  */
13145
- ChannelOrderId: string;
13780
+ OutContractCode: string;
13146
13781
  /**
13147
- * 订单状态。关单成功CLOSED
13782
+ * 米大师内部生成的合约协议号
13148
13783
  */
13149
- OrderStatus: string;
13784
+ ChannelContractCode: string;
13150
13785
  }
13151
13786
  /**
13152
13787
  * CreateAnchor返回参数结构体
@@ -13176,6 +13811,19 @@ export interface MerchantRiskInfo {
13176
13811
  */
13177
13812
  RiskTypes: string;
13178
13813
  }
13814
+ /**
13815
+ * 付款人查询结果
13816
+ */
13817
+ export interface QueryPayerinfoResult {
13818
+ /**
13819
+ * 错误码
13820
+ */
13821
+ Code: string;
13822
+ /**
13823
+ * 付款人查询数据
13824
+ */
13825
+ Data: QueryPayerinfoData;
13826
+ }
13179
13827
  /**
13180
13828
  * 查询订单付款状态响应对象
13181
13829
  */
@@ -13833,6 +14481,36 @@ export interface QueryAgentTaxPaymentBatchRequest {
13833
14481
  */
13834
14482
  Profile?: string;
13835
14483
  }
14484
+ /**
14485
+ * ApplyReconciliationFile请求参数结构体
14486
+ */
14487
+ export interface ApplyReconciliationFileRequest {
14488
+ /**
14489
+ * 申请的文件类型。
14490
+ __CZ__:充值文件
14491
+ __TX__:提现文件
14492
+ __JY__:交易文件
14493
+ __YE__:余额文件
14494
+ */
14495
+ ApplyFileType: string;
14496
+ /**
14497
+ * 申请的对账文件日期,格式:yyyyMMdd。
14498
+ */
14499
+ ApplyFileDate: string;
14500
+ /**
14501
+ * 父账户账号。
14502
+ _平安渠道为资金汇总账号_
14503
+ */
14504
+ BankAccountNumber: string;
14505
+ /**
14506
+ * 环境名。
14507
+ __release__: 现网环境
14508
+ __sandbox__: 沙箱环境
14509
+ __development__: 开发环境
14510
+ _缺省: release_
14511
+ */
14512
+ MidasEnvironment?: string;
14513
+ }
13836
14514
  /**
13837
14515
  * RegisterBillSupportWithdraw返回参数结构体
13838
14516
  */
@@ -14194,6 +14872,30 @@ export interface QueryMerchantBalanceResult {
14194
14872
  */
14195
14873
  Data: QueryMerchantBalanceData;
14196
14874
  }
14875
+ /**
14876
+ * QueryFundsTransactionDetails返回参数结构体
14877
+ */
14878
+ export interface QueryFundsTransactionDetailsResponse {
14879
+ /**
14880
+ * 错误码。
14881
+ __SUCCESS__: 成功
14882
+ __其他__: 见附录-错误码表
14883
+ */
14884
+ ErrCode: string;
14885
+ /**
14886
+ * 错误消息。
14887
+ */
14888
+ ErrMessage: string;
14889
+ /**
14890
+ * 返回结果。
14891
+ 注意:此字段可能返回 null,表示取不到有效值。
14892
+ */
14893
+ Result: QueryFundsTransactionDetailsResult;
14894
+ /**
14895
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14896
+ */
14897
+ RequestId?: string;
14898
+ }
14197
14899
  /**
14198
14900
  * 米大师内部生成的合约信息
14199
14901
  */
@@ -14709,6 +15411,60 @@ export interface DistributeCancelResponse {
14709
15411
  */
14710
15412
  RequestId?: string;
14711
15413
  }
15414
+ /**
15415
+ * QueryOpenBankBankBranchList请求参数结构体
15416
+ */
15417
+ export interface QueryOpenBankBankBranchListRequest {
15418
+ /**
15419
+ * 渠道商户ID。
15420
+ */
15421
+ ChannelMerchantId: string;
15422
+ /**
15423
+ * 渠道名称。
15424
+ __TENPAY__: 商企付
15425
+ __WECHAT__: 微信支付
15426
+ __ALIPAY__: 支付宝
15427
+ */
15428
+ ChannelName: string;
15429
+ /**
15430
+ * 支付方式。
15431
+ __EBANK_PAYMENT__:ebank付款
15432
+ __OPENBANK_PAYMENT__: openbank付款
15433
+ */
15434
+ PaymentMethod: string;
15435
+ /**
15436
+ * 支行名称。
15437
+ */
15438
+ BankBranchName: string;
15439
+ /**
15440
+ * 银行简称。
15441
+ */
15442
+ BankAbbreviation: string;
15443
+ /**
15444
+ * 页码。Index和Count必须大于等于1。
15445
+ */
15446
+ PageNumber: Paging;
15447
+ /**
15448
+ * 环境类型。
15449
+ __release__:生产环境
15450
+ __sandbox__:沙箱环境
15451
+ _不填默认为生产环境_
15452
+ */
15453
+ Environment?: string;
15454
+ }
15455
+ /**
15456
+ * 查询联行号返回结果
15457
+ */
15458
+ export interface QueryOpenBankBankBranchListResult {
15459
+ /**
15460
+ * 支行列表。
15461
+ */
15462
+ BankBranchList: Array<BankBranchInfo>;
15463
+ /**
15464
+ * 列表总数。
15465
+ */
15466
+ Count: number;
15467
+ }
14712
15468
  /**
14713
15469
  * 提交贸易材料结果
14714
15470
  */
@@ -14793,17 +15549,21 @@ export interface DeduceQuotaResponse {
14793
15549
  RequestId?: string;
14794
15550
  }
14795
15551
  /**
14796
- * 米大师内部存放的合约信息
15552
+ * 云企付-关单响应
14797
15553
  */
14798
- export interface ChannelContractInfo {
15554
+ export interface CloseOpenBankPaymentOrderResult {
14799
15555
  /**
14800
- * 外部合约协议号
15556
+ * 外部商户订单号
14801
15557
  */
14802
- OutContractCode: string;
15558
+ OutOrderId: string;
14803
15559
  /**
14804
- * 米大师内部生成的合约协议号
15560
+ * 云企付平台订单号
14805
15561
  */
14806
- ChannelContractCode: string;
15562
+ ChannelOrderId: string;
15563
+ /**
15564
+ * 订单状态。关单成功CLOSED
15565
+ */
15566
+ OrderStatus: string;
14807
15567
  }
14808
15568
  /**
14809
15569
  * CreateBatchPayment转账明细
@@ -14838,6 +15598,51 @@ export interface CreateBatchPaymentRecipient {
14838
15598
  */
14839
15599
  ReqReserved?: string;
14840
15600
  }
15601
+ /**
15602
+ * RegisterBillSupportWithdraw请求参数结构体
15603
+ */
15604
+ export interface RegisterBillSupportWithdrawRequest {
15605
+ /**
15606
+ * STRING(32),交易网会员代码
15607
+ */
15608
+ TranNetMemberCode: string;
15609
+ /**
15610
+ * STRING(50),订单号
15611
+ */
15612
+ OrderNo: string;
15613
+ /**
15614
+ * STRING(20),挂账金额(包含交易费用)
15615
+ */
15616
+ SuspendAmt: string;
15617
+ /**
15618
+ * STRING(20),交易费用(暂未使用,默认传0.0)
15619
+ */
15620
+ TranFee: string;
15621
+ /**
15622
+ * String(22),商户号(签约客户号)
15623
+ */
15624
+ MrchCode: string;
15625
+ /**
15626
+ * STRING(300),备注
15627
+ */
15628
+ Remark?: string;
15629
+ /**
15630
+ * STRING(300),保留域1
15631
+ */
15632
+ ReservedMsgOne?: string;
15633
+ /**
15634
+ * STRING(300),保留域2
15635
+ */
15636
+ ReservedMsgTwo?: string;
15637
+ /**
15638
+ * STRING(300),保留域3
15639
+ */
15640
+ ReservedMsgThree?: string;
15641
+ /**
15642
+ * STRING(12),接入环境,默认接入沙箱环境。接入正式环境填"prod"
15643
+ */
15644
+ Profile?: string;
15645
+ }
14841
15646
  /**
14842
15647
  * DeleteAgentTaxPaymentInfo返回参数结构体
14843
15648
  */
@@ -14847,6 +15652,25 @@ export interface DeleteAgentTaxPaymentInfoResponse {
14847
15652
  */
14848
15653
  RequestId?: string;
14849
15654
  }
15655
+ /**
15656
+ * 云企付-按日期查询回单下载地址
15657
+ */
15658
+ export interface QueryOpenBankDailyReceiptDownloadUrlResult {
15659
+ /**
15660
+ * 回单文件下载链接
15661
+ */
15662
+ DownloadUrl: string;
15663
+ /**
15664
+ * 过期时间
15665
+ */
15666
+ ExpireTime: string;
15667
+ /**
15668
+ * 回单状态
15669
+ PENDING: 处理中
15670
+ READY: 可以下载
15671
+ */
15672
+ ReceiptStatus: string;
15673
+ }
14850
15674
  /**
14851
15675
  * CreateSinglePay请求参数结构体
14852
15676
  */