tencentcloud-sdk-cpdp 1.0.345 → 1.0.348

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ae7a952ea16203b9165c8c4be3326beac20cc76
4
- data.tar.gz: ca7483ce32efbad64dcb17cf4b4728d3427d326c
3
+ metadata.gz: dc761205d060972dc6365b087eeacc5857f0a710
4
+ data.tar.gz: d0dcbbd12d69b02730d7406b824cab0803856ca7
5
5
  SHA512:
6
- metadata.gz: f136924f2a7e83dbd5f628024dfd2128ebb9fbcababbca33248c825de66526f1300f9b393bd570083abc80244367f0ca78ca3b850c59190550ad65e9bc908d79
7
- data.tar.gz: 33fcf7b0c4587af46e02072b077eb0928e782ebc1a2b35c9262df477293329a341ff771fa014ec88f33619d1948e8e81cd3394a9af610e3d6acdf9c44759ae61
6
+ metadata.gz: 1ba68219a7d2181b99c7fdb970f45cf5e05ddbc8ebdb0bb251ae4e9b2d964af29baf0ffdc12926659471e3f63918d0389723c87d19ad227d3de39ea97122d214
7
+ data.tar.gz: fc505360af7e17c34a9f97a0f09946b425c315fe6404d1d5a9aa0b0b8da5ec0785bd922e22d3ed2630accc240bc8e56ede41c514d9afb4212a43bcbd45960523
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.345
1
+ 1.0.348
@@ -53,6 +53,54 @@ module TencentCloud
53
53
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
54
  end
55
55
 
56
+ # 灵云V2-补充证件信息
57
+
58
+ # @param request: Request instance for AddFlexIdInfo.
59
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::AddFlexIdInfoRequest`
60
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::AddFlexIdInfoResponse`
61
+ def AddFlexIdInfo(request)
62
+ body = send_request('AddFlexIdInfo', request.serialize)
63
+ response = JSON.parse(body)
64
+ if response['Response'].key?('Error') == false
65
+ model = AddFlexIdInfoResponse.new
66
+ model.deserialize(response['Response'])
67
+ model
68
+ else
69
+ code = response['Response']['Error']['Code']
70
+ message = response['Response']['Error']['Message']
71
+ reqid = response['Response']['RequestId']
72
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
73
+ end
74
+ rescue TencentCloud::Common::TencentCloudSDKException => e
75
+ raise e
76
+ rescue StandardError => e
77
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
78
+ end
79
+
80
+ # 灵云V2-补充手机号信息
81
+
82
+ # @param request: Request instance for AddFlexPhoneNo.
83
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::AddFlexPhoneNoRequest`
84
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::AddFlexPhoneNoResponse`
85
+ def AddFlexPhoneNo(request)
86
+ body = send_request('AddFlexPhoneNo', request.serialize)
87
+ response = JSON.parse(body)
88
+ if response['Response'].key?('Error') == false
89
+ model = AddFlexPhoneNoResponse.new
90
+ model.deserialize(response['Response'])
91
+ model
92
+ else
93
+ code = response['Response']['Error']['Code']
94
+ message = response['Response']['Error']['Message']
95
+ reqid = response['Response']['RequestId']
96
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
97
+ end
98
+ rescue TencentCloud::Common::TencentCloudSDKException => e
99
+ raise e
100
+ rescue StandardError => e
101
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
102
+ end
103
+
56
104
  # 云支付-添加商户接口
57
105
 
58
106
  # @param request: Request instance for AddMerchant.
@@ -2751,6 +2799,30 @@ module TencentCloud
2751
2799
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2752
2800
  end
2753
2801
 
2802
+ # 灵云V2-查询对账单文件下载链接
2803
+
2804
+ # @param request: Request instance for QueryFlexBillDownloadUrl.
2805
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::QueryFlexBillDownloadUrlRequest`
2806
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::QueryFlexBillDownloadUrlResponse`
2807
+ def QueryFlexBillDownloadUrl(request)
2808
+ body = send_request('QueryFlexBillDownloadUrl', request.serialize)
2809
+ response = JSON.parse(body)
2810
+ if response['Response'].key?('Error') == false
2811
+ model = QueryFlexBillDownloadUrlResponse.new
2812
+ model.deserialize(response['Response'])
2813
+ model
2814
+ else
2815
+ code = response['Response']['Error']['Code']
2816
+ message = response['Response']['Error']['Message']
2817
+ reqid = response['Response']['RequestId']
2818
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2819
+ end
2820
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2821
+ raise e
2822
+ rescue StandardError => e
2823
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2824
+ end
2825
+
2754
2826
  # 灵云V2-查询冻结订单列表
2755
2827
 
2756
2828
  # @param request: Request instance for QueryFlexFreezeOrderList.
@@ -2775,6 +2847,30 @@ module TencentCloud
2775
2847
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2776
2848
  end
2777
2849
 
2850
+ # 灵云V2-订单汇总列表查询
2851
+
2852
+ # @param request: Request instance for QueryFlexOrderSummaryList.
2853
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::QueryFlexOrderSummaryListRequest`
2854
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::QueryFlexOrderSummaryListResponse`
2855
+ def QueryFlexOrderSummaryList(request)
2856
+ body = send_request('QueryFlexOrderSummaryList', request.serialize)
2857
+ response = JSON.parse(body)
2858
+ if response['Response'].key?('Error') == false
2859
+ model = QueryFlexOrderSummaryListResponse.new
2860
+ model.deserialize(response['Response'])
2861
+ model
2862
+ else
2863
+ code = response['Response']['Error']['Code']
2864
+ message = response['Response']['Error']['Message']
2865
+ reqid = response['Response']['RequestId']
2866
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2867
+ end
2868
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2869
+ raise e
2870
+ rescue StandardError => e
2871
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2872
+ end
2873
+
2778
2874
  # 灵云V2-收款用户账户余额查询
2779
2875
 
2780
2876
  # @param request: Request instance for QueryFlexPayeeAccountBalance.
@@ -250,6 +250,126 @@ module TencentCloud
250
250
  end
251
251
  end
252
252
 
253
+ # AddFlexIdInfo请求参数结构体
254
+ class AddFlexIdInfoRequest < TencentCloud::Common::AbstractModel
255
+ # @param IdType: 证件类型
256
+ # 0:身份证
257
+ # 1:社会信用代码
258
+ # @type IdType: Integer
259
+ # @param IdNo: 证件号
260
+ # @type IdNo: String
261
+ # @param PayeeId: 收款用户ID
262
+ # @type PayeeId: String
263
+ # @param Environment: 环境类型
264
+ # __release__:生产环境
265
+ # __sandbox__:沙箱环境
266
+ # __test__:测试环境
267
+ # 缺省默认为生产环境
268
+ # @type Environment: String
269
+
270
+ attr_accessor :IdType, :IdNo, :PayeeId, :Environment
271
+
272
+ def initialize(idtype=nil, idno=nil, payeeid=nil, environment=nil)
273
+ @IdType = idtype
274
+ @IdNo = idno
275
+ @PayeeId = payeeid
276
+ @Environment = environment
277
+ end
278
+
279
+ def deserialize(params)
280
+ @IdType = params['IdType']
281
+ @IdNo = params['IdNo']
282
+ @PayeeId = params['PayeeId']
283
+ @Environment = params['Environment']
284
+ end
285
+ end
286
+
287
+ # AddFlexIdInfo返回参数结构体
288
+ class AddFlexIdInfoResponse < TencentCloud::Common::AbstractModel
289
+ # @param ErrCode: 错误码。SUCCESS为成功,其他为失败
290
+ # @type ErrCode: String
291
+ # @param ErrMessage: 错误消息
292
+ # @type ErrMessage: String
293
+ # @param Result: 无
294
+ # 注意:此字段可能返回 null,表示取不到有效值。
295
+ # @type Result: String
296
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
297
+ # @type RequestId: String
298
+
299
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
300
+
301
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
302
+ @ErrCode = errcode
303
+ @ErrMessage = errmessage
304
+ @Result = result
305
+ @RequestId = requestid
306
+ end
307
+
308
+ def deserialize(params)
309
+ @ErrCode = params['ErrCode']
310
+ @ErrMessage = params['ErrMessage']
311
+ @Result = params['Result']
312
+ @RequestId = params['RequestId']
313
+ end
314
+ end
315
+
316
+ # AddFlexPhoneNo请求参数结构体
317
+ class AddFlexPhoneNoRequest < TencentCloud::Common::AbstractModel
318
+ # @param PhoneNo: 手机号
319
+ # @type PhoneNo: String
320
+ # @param PayeeId: 收款用户ID
321
+ # @type PayeeId: String
322
+ # @param Environment: 环境类型
323
+ # __release__:生产环境
324
+ # __sandbox__:沙箱环境
325
+ # __test__:测试环境
326
+ # 缺省默认为生产环境
327
+ # @type Environment: String
328
+
329
+ attr_accessor :PhoneNo, :PayeeId, :Environment
330
+
331
+ def initialize(phoneno=nil, payeeid=nil, environment=nil)
332
+ @PhoneNo = phoneno
333
+ @PayeeId = payeeid
334
+ @Environment = environment
335
+ end
336
+
337
+ def deserialize(params)
338
+ @PhoneNo = params['PhoneNo']
339
+ @PayeeId = params['PayeeId']
340
+ @Environment = params['Environment']
341
+ end
342
+ end
343
+
344
+ # AddFlexPhoneNo返回参数结构体
345
+ class AddFlexPhoneNoResponse < TencentCloud::Common::AbstractModel
346
+ # @param ErrCode: 错误码。SUCCESS为成功,其他为失败
347
+ # @type ErrCode: String
348
+ # @param ErrMessage: 错误消息
349
+ # @type ErrMessage: String
350
+ # @param Result: 无
351
+ # 注意:此字段可能返回 null,表示取不到有效值。
352
+ # @type Result: String
353
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
354
+ # @type RequestId: String
355
+
356
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
357
+
358
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
359
+ @ErrCode = errcode
360
+ @ErrMessage = errmessage
361
+ @Result = result
362
+ @RequestId = requestid
363
+ end
364
+
365
+ def deserialize(params)
366
+ @ErrCode = params['ErrCode']
367
+ @ErrMessage = params['ErrMessage']
368
+ @Result = params['Result']
369
+ @RequestId = params['RequestId']
370
+ end
371
+ end
372
+
253
373
  # AddMerchant请求参数结构体
254
374
  class AddMerchantRequest < TencentCloud::Common::AbstractModel
255
375
  # @param OpenId: 收单系统分配的开放ID
@@ -1032,16 +1152,23 @@ module TencentCloud
1032
1152
  # @type FundingAccountInfo: :class:`Tencentcloud::Cpdp.v20190820.models.FlexFundingAccountInfo`
1033
1153
  # @param Remark: 提现备注
1034
1154
  # @type Remark: String
1155
+ # @param Environment: 环境类型
1156
+ # __release__:生产环境
1157
+ # __sandbox__:沙箱环境
1158
+ # __test__:测试环境
1159
+ # 缺省默认为生产环境
1160
+ # @type Environment: String
1035
1161
 
1036
- attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :FundingAccountInfo, :Remark
1162
+ attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :FundingAccountInfo, :Remark, :Environment
1037
1163
 
1038
- def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, fundingaccountinfo=nil, remark=nil)
1164
+ def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, fundingaccountinfo=nil, remark=nil, environment=nil)
1039
1165
  @PayeeId = payeeid
1040
1166
  @IncomeType = incometype
1041
1167
  @AmountBeforeTax = amountbeforetax
1042
1168
  @OutOrderId = outorderid
1043
1169
  @FundingAccountInfo = fundingaccountinfo
1044
1170
  @Remark = remark
1171
+ @Environment = environment
1045
1172
  end
1046
1173
 
1047
1174
  def deserialize(params)
@@ -1054,6 +1181,7 @@ module TencentCloud
1054
1181
  @FundingAccountInfo.deserialize(params['FundingAccountInfo'])
1055
1182
  end
1056
1183
  @Remark = params['Remark']
1184
+ @Environment = params['Environment']
1057
1185
  end
1058
1186
  end
1059
1187
 
@@ -1131,15 +1259,22 @@ module TencentCloud
1131
1259
  # @type OutOrderId: String
1132
1260
  # @param Remark: 备注
1133
1261
  # @type Remark: String
1262
+ # @param Environment: 环境类型
1263
+ # __release__:生产环境
1264
+ # __sandbox__:沙箱环境
1265
+ # __test__:测试环境
1266
+ # 缺省默认为生产环境
1267
+ # @type Environment: String
1134
1268
 
1135
- attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :Remark
1269
+ attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :Remark, :Environment
1136
1270
 
1137
- def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, remark=nil)
1271
+ def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, remark=nil, environment=nil)
1138
1272
  @PayeeId = payeeid
1139
1273
  @IncomeType = incometype
1140
1274
  @AmountBeforeTax = amountbeforetax
1141
1275
  @OutOrderId = outorderid
1142
1276
  @Remark = remark
1277
+ @Environment = environment
1143
1278
  end
1144
1279
 
1145
1280
  def deserialize(params)
@@ -1148,6 +1283,7 @@ module TencentCloud
1148
1283
  @AmountBeforeTax = params['AmountBeforeTax']
1149
1284
  @OutOrderId = params['OutOrderId']
1150
1285
  @Remark = params['Remark']
1286
+ @Environment = params['Environment']
1151
1287
  end
1152
1288
  end
1153
1289
 
@@ -5248,10 +5384,18 @@ module TencentCloud
5248
5384
  # @type IdType: Integer
5249
5385
  # @param Remark: 备注
5250
5386
  # @type Remark: String
5387
+ # @param PhoneNo: 手机号码
5388
+ # @type PhoneNo: String
5389
+ # @param Environment: 环境类型
5390
+ # __release__:生产环境
5391
+ # __sandbox__:沙箱环境
5392
+ # __test__:测试环境
5393
+ # 缺省默认为生产环境
5394
+ # @type Environment: String
5251
5395
 
5252
- attr_accessor :OutUserId, :Name, :IdNo, :AccountName, :ServiceProviderId, :TaxInfo, :IdType, :Remark
5396
+ attr_accessor :OutUserId, :Name, :IdNo, :AccountName, :ServiceProviderId, :TaxInfo, :IdType, :Remark, :PhoneNo, :Environment
5253
5397
 
5254
- def initialize(outuserid=nil, name=nil, idno=nil, accountname=nil, serviceproviderid=nil, taxinfo=nil, idtype=nil, remark=nil)
5398
+ def initialize(outuserid=nil, name=nil, idno=nil, accountname=nil, serviceproviderid=nil, taxinfo=nil, idtype=nil, remark=nil, phoneno=nil, environment=nil)
5255
5399
  @OutUserId = outuserid
5256
5400
  @Name = name
5257
5401
  @IdNo = idno
@@ -5260,6 +5404,8 @@ module TencentCloud
5260
5404
  @TaxInfo = taxinfo
5261
5405
  @IdType = idtype
5262
5406
  @Remark = remark
5407
+ @PhoneNo = phoneno
5408
+ @Environment = environment
5263
5409
  end
5264
5410
 
5265
5411
  def deserialize(params)
@@ -5274,6 +5420,8 @@ module TencentCloud
5274
5420
  end
5275
5421
  @IdType = params['IdType']
5276
5422
  @Remark = params['Remark']
5423
+ @PhoneNo = params['PhoneNo']
5424
+ @Environment = params['Environment']
5277
5425
  end
5278
5426
  end
5279
5427
 
@@ -9760,6 +9908,26 @@ module TencentCloud
9760
9908
  end
9761
9909
  end
9762
9910
 
9911
+ # 对账单文件下载链接
9912
+ class FlexBillDownloadUrlResult < TencentCloud::Common::AbstractModel
9913
+ # @param Url: 对账单文件下载链接
9914
+ # @type Url: String
9915
+ # @param ExpireTime: 下载链接过期时间
9916
+ # @type ExpireTime: String
9917
+
9918
+ attr_accessor :Url, :ExpireTime
9919
+
9920
+ def initialize(url=nil, expiretime=nil)
9921
+ @Url = url
9922
+ @ExpireTime = expiretime
9923
+ end
9924
+
9925
+ def deserialize(params)
9926
+ @Url = params['Url']
9927
+ @ExpireTime = params['ExpireTime']
9928
+ end
9929
+ end
9930
+
9763
9931
  # 灵云V2-银行信息
9764
9932
  class FlexFundingAccountInfo < TencentCloud::Common::AbstractModel
9765
9933
  # @param FundingAccountNo: 资金账户号
@@ -9802,16 +9970,23 @@ module TencentCloud
9802
9970
  # @type OperationType: String
9803
9971
  # @param Remark: 冻结备注
9804
9972
  # @type Remark: String
9973
+ # @param Environment: 环境类型
9974
+ # __release__:生产环境
9975
+ # __sandbox__:沙箱环境
9976
+ # __test__:测试环境
9977
+ # 缺省默认为生产环境
9978
+ # @type Environment: String
9805
9979
 
9806
- attr_accessor :PayeeId, :AmountBeforeTax, :IncomeType, :OutOrderId, :OperationType, :Remark
9980
+ attr_accessor :PayeeId, :AmountBeforeTax, :IncomeType, :OutOrderId, :OperationType, :Remark, :Environment
9807
9981
 
9808
- def initialize(payeeid=nil, amountbeforetax=nil, incometype=nil, outorderid=nil, operationtype=nil, remark=nil)
9982
+ def initialize(payeeid=nil, amountbeforetax=nil, incometype=nil, outorderid=nil, operationtype=nil, remark=nil, environment=nil)
9809
9983
  @PayeeId = payeeid
9810
9984
  @AmountBeforeTax = amountbeforetax
9811
9985
  @IncomeType = incometype
9812
9986
  @OutOrderId = outorderid
9813
9987
  @OperationType = operationtype
9814
9988
  @Remark = remark
9989
+ @Environment = environment
9815
9990
  end
9816
9991
 
9817
9992
  def deserialize(params)
@@ -9821,6 +9996,7 @@ module TencentCloud
9821
9996
  @OutOrderId = params['OutOrderId']
9822
9997
  @OperationType = params['OperationType']
9823
9998
  @Remark = params['Remark']
9999
+ @Environment = params['Environment']
9824
10000
  end
9825
10001
  end
9826
10002
 
@@ -10910,19 +11086,27 @@ module TencentCloud
10910
11086
  # ENABLE:启用
10911
11087
  # DISABLE:停用
10912
11088
  # @type AccountRightStatus: String
11089
+ # @param Environment: 环境类型
11090
+ # __release__:生产环境
11091
+ # __sandbox__:沙箱环境
11092
+ # __test__:测试环境
11093
+ # 缺省默认为生产环境
11094
+ # @type Environment: String
10913
11095
 
10914
- attr_accessor :PayeeId, :AccountRightType, :AccountRightStatus
11096
+ attr_accessor :PayeeId, :AccountRightType, :AccountRightStatus, :Environment
10915
11097
 
10916
- def initialize(payeeid=nil, accountrighttype=nil, accountrightstatus=nil)
11098
+ def initialize(payeeid=nil, accountrighttype=nil, accountrightstatus=nil, environment=nil)
10917
11099
  @PayeeId = payeeid
10918
11100
  @AccountRightType = accountrighttype
10919
11101
  @AccountRightStatus = accountrightstatus
11102
+ @Environment = environment
10920
11103
  end
10921
11104
 
10922
11105
  def deserialize(params)
10923
11106
  @PayeeId = params['PayeeId']
10924
11107
  @AccountRightType = params['AccountRightType']
10925
11108
  @AccountRightStatus = params['AccountRightStatus']
11109
+ @Environment = params['Environment']
10926
11110
  end
10927
11111
  end
10928
11112
 
@@ -11815,6 +11999,73 @@ module TencentCloud
11815
11999
  end
11816
12000
  end
11817
12001
 
12002
+ # 订单汇总列表
12003
+ class OrderSummaries < TencentCloud::Common::AbstractModel
12004
+ # @param List: 汇总列表
12005
+ # @type List: Array
12006
+ # @param Count: 总数
12007
+ # @type Count: Integer
12008
+
12009
+ attr_accessor :List, :Count
12010
+
12011
+ def initialize(list=nil, count=nil)
12012
+ @List = list
12013
+ @Count = count
12014
+ end
12015
+
12016
+ def deserialize(params)
12017
+ unless params['List'].nil?
12018
+ @List = []
12019
+ params['List'].each do |i|
12020
+ ordersummaryresult_tmp = OrderSummaryResult.new
12021
+ ordersummaryresult_tmp.deserialize(i)
12022
+ @List << ordersummaryresult_tmp
12023
+ end
12024
+ end
12025
+ @Count = params['Count']
12026
+ end
12027
+ end
12028
+
12029
+ # 订单汇总结果
12030
+ class OrderSummaryResult < TencentCloud::Common::AbstractModel
12031
+ # @param SummaryId: 汇总ID
12032
+ # @type SummaryId: String
12033
+ # @param PayeeId: 收款账户ID
12034
+ # @type PayeeId: String
12035
+ # @param Name: 收款账户名称
12036
+ # @type Name: String
12037
+ # @param IncomeType: 收入类型
12038
+ # @type IncomeType: String
12039
+ # @param SummaryAmount: 汇总金额
12040
+ # @type SummaryAmount: String
12041
+ # @param SummaryTime: 汇总日期
12042
+ # @type SummaryTime: String
12043
+ # @param SummaryCount: 汇总记录数量
12044
+ # @type SummaryCount: Integer
12045
+
12046
+ attr_accessor :SummaryId, :PayeeId, :Name, :IncomeType, :SummaryAmount, :SummaryTime, :SummaryCount
12047
+
12048
+ def initialize(summaryid=nil, payeeid=nil, name=nil, incometype=nil, summaryamount=nil, summarytime=nil, summarycount=nil)
12049
+ @SummaryId = summaryid
12050
+ @PayeeId = payeeid
12051
+ @Name = name
12052
+ @IncomeType = incometype
12053
+ @SummaryAmount = summaryamount
12054
+ @SummaryTime = summarytime
12055
+ @SummaryCount = summarycount
12056
+ end
12057
+
12058
+ def deserialize(params)
12059
+ @SummaryId = params['SummaryId']
12060
+ @PayeeId = params['PayeeId']
12061
+ @Name = params['Name']
12062
+ @IncomeType = params['IncomeType']
12063
+ @SummaryAmount = params['SummaryAmount']
12064
+ @SummaryTime = params['SummaryTime']
12065
+ @SummaryCount = params['SummaryCount']
12066
+ end
12067
+ end
12068
+
11818
12069
  # 公司信息
11819
12070
  class OrganizationInfo < TencentCloud::Common::AbstractModel
11820
12071
  # @param OrganizationName: 公司名称,个体工商户必输
@@ -12548,10 +12799,12 @@ module TencentCloud
12548
12799
  # @param Remark: 提现备注
12549
12800
  # 注意:此字段可能返回 null,表示取不到有效值。
12550
12801
  # @type Remark: String
12802
+ # @param PayeeId: 收款用户ID
12803
+ # @type PayeeId: String
12551
12804
 
12552
- attr_accessor :IncomeType, :AmountBeforeTax, :AmountAfterTax, :Tax, :OutOrderId, :OrderId, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark
12805
+ attr_accessor :IncomeType, :AmountBeforeTax, :AmountAfterTax, :Tax, :OutOrderId, :OrderId, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark, :PayeeId
12553
12806
 
12554
- def initialize(incometype=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil, outorderid=nil, orderid=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil)
12807
+ def initialize(incometype=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil, outorderid=nil, orderid=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil, payeeid=nil)
12555
12808
  @IncomeType = incometype
12556
12809
  @AmountBeforeTax = amountbeforetax
12557
12810
  @AmountAfterTax = amountaftertax
@@ -12563,6 +12816,7 @@ module TencentCloud
12563
12816
  @Status = status
12564
12817
  @StatusDesc = statusdesc
12565
12818
  @Remark = remark
12819
+ @PayeeId = payeeid
12566
12820
  end
12567
12821
 
12568
12822
  def deserialize(params)
@@ -12577,6 +12831,7 @@ module TencentCloud
12577
12831
  @Status = params['Status']
12578
12832
  @StatusDesc = params['StatusDesc']
12579
12833
  @Remark = params['Remark']
12834
+ @PayeeId = params['PayeeId']
12580
12835
  end
12581
12836
  end
12582
12837
 
@@ -15204,19 +15459,27 @@ module TencentCloud
15204
15459
  # @type IncomeType: String
15205
15460
  # @param AmountAfterTax: 税后金额
15206
15461
  # @type AmountAfterTax: String
15462
+ # @param Environment: 环境类型
15463
+ # __release__:生产环境
15464
+ # __sandbox__:沙箱环境
15465
+ # __test__:测试环境
15466
+ # 缺省默认为生产环境
15467
+ # @type Environment: String
15207
15468
 
15208
- attr_accessor :PayeeId, :IncomeType, :AmountAfterTax
15469
+ attr_accessor :PayeeId, :IncomeType, :AmountAfterTax, :Environment
15209
15470
 
15210
- def initialize(payeeid=nil, incometype=nil, amountaftertax=nil)
15471
+ def initialize(payeeid=nil, incometype=nil, amountaftertax=nil, environment=nil)
15211
15472
  @PayeeId = payeeid
15212
15473
  @IncomeType = incometype
15213
15474
  @AmountAfterTax = amountaftertax
15475
+ @Environment = environment
15214
15476
  end
15215
15477
 
15216
15478
  def deserialize(params)
15217
15479
  @PayeeId = params['PayeeId']
15218
15480
  @IncomeType = params['IncomeType']
15219
15481
  @AmountAfterTax = params['AmountAfterTax']
15482
+ @Environment = params['Environment']
15220
15483
  end
15221
15484
  end
15222
15485
 
@@ -15252,6 +15515,70 @@ module TencentCloud
15252
15515
  end
15253
15516
  end
15254
15517
 
15518
+ # QueryFlexBillDownloadUrl请求参数结构体
15519
+ class QueryFlexBillDownloadUrlRequest < TencentCloud::Common::AbstractModel
15520
+ # @param BillDate: 对账单日期
15521
+ # @type BillDate: String
15522
+ # @param BillType: 对账单类型:FREEZE, SETTLEMENT,PAYMENT
15523
+ # @type BillType: String
15524
+ # @param ServiceProviderId: 服务商ID,如不填则查询平台级别对账单文件
15525
+ # @type ServiceProviderId: String
15526
+ # @param Environment: 环境类型
15527
+ # __release__:生产环境
15528
+ # __sandbox__:沙箱环境
15529
+ # __test__:测试环境
15530
+ # 缺省默认为生产环境
15531
+ # @type Environment: String
15532
+
15533
+ attr_accessor :BillDate, :BillType, :ServiceProviderId, :Environment
15534
+
15535
+ def initialize(billdate=nil, billtype=nil, serviceproviderid=nil, environment=nil)
15536
+ @BillDate = billdate
15537
+ @BillType = billtype
15538
+ @ServiceProviderId = serviceproviderid
15539
+ @Environment = environment
15540
+ end
15541
+
15542
+ def deserialize(params)
15543
+ @BillDate = params['BillDate']
15544
+ @BillType = params['BillType']
15545
+ @ServiceProviderId = params['ServiceProviderId']
15546
+ @Environment = params['Environment']
15547
+ end
15548
+ end
15549
+
15550
+ # QueryFlexBillDownloadUrl返回参数结构体
15551
+ class QueryFlexBillDownloadUrlResponse < TencentCloud::Common::AbstractModel
15552
+ # @param ErrCode: 错误码。SUCCESS为成功,其他为失败
15553
+ # @type ErrCode: String
15554
+ # @param ErrMessage: 错误消息
15555
+ # @type ErrMessage: String
15556
+ # @param Result: 返回结果
15557
+ # 注意:此字段可能返回 null,表示取不到有效值。
15558
+ # @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.FlexBillDownloadUrlResult`
15559
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
15560
+ # @type RequestId: String
15561
+
15562
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
15563
+
15564
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
15565
+ @ErrCode = errcode
15566
+ @ErrMessage = errmessage
15567
+ @Result = result
15568
+ @RequestId = requestid
15569
+ end
15570
+
15571
+ def deserialize(params)
15572
+ @ErrCode = params['ErrCode']
15573
+ @ErrMessage = params['ErrMessage']
15574
+ unless params['Result'].nil?
15575
+ @Result = FlexBillDownloadUrlResult.new
15576
+ @Result.deserialize(params['Result'])
15577
+ end
15578
+ @RequestId = params['RequestId']
15579
+ end
15580
+ end
15581
+
15255
15582
  # QueryFlexFreezeOrderList请求参数结构体
15256
15583
  class QueryFlexFreezeOrderListRequest < TencentCloud::Common::AbstractModel
15257
15584
  # @param PayeeId: 收款用户ID
@@ -15266,15 +15593,22 @@ module TencentCloud
15266
15593
  # @type EndTime: String
15267
15594
  # @param PageNumber: 分页
15268
15595
  # @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
15596
+ # @param Environment: 环境类型
15597
+ # __release__:生产环境
15598
+ # __sandbox__:沙箱环境
15599
+ # __test__:测试环境
15600
+ # 缺省默认为生产环境
15601
+ # @type Environment: String
15269
15602
 
15270
- attr_accessor :PayeeId, :OperationType, :StartTime, :EndTime, :PageNumber
15603
+ attr_accessor :PayeeId, :OperationType, :StartTime, :EndTime, :PageNumber, :Environment
15271
15604
 
15272
- def initialize(payeeid=nil, operationtype=nil, starttime=nil, endtime=nil, pagenumber=nil)
15605
+ def initialize(payeeid=nil, operationtype=nil, starttime=nil, endtime=nil, pagenumber=nil, environment=nil)
15273
15606
  @PayeeId = payeeid
15274
15607
  @OperationType = operationtype
15275
15608
  @StartTime = starttime
15276
15609
  @EndTime = endtime
15277
15610
  @PageNumber = pagenumber
15611
+ @Environment = environment
15278
15612
  end
15279
15613
 
15280
15614
  def deserialize(params)
@@ -15286,6 +15620,7 @@ module TencentCloud
15286
15620
  @PageNumber = Paging.new
15287
15621
  @PageNumber.deserialize(params['PageNumber'])
15288
15622
  end
15623
+ @Environment = params['Environment']
15289
15624
  end
15290
15625
  end
15291
15626
 
@@ -15321,6 +15656,77 @@ module TencentCloud
15321
15656
  end
15322
15657
  end
15323
15658
 
15659
+ # QueryFlexOrderSummaryList请求参数结构体
15660
+ class QueryFlexOrderSummaryListRequest < TencentCloud::Common::AbstractModel
15661
+ # @param SummaryDate: 汇总日期:yyyy-MM-dd
15662
+ # @type SummaryDate: String
15663
+ # @param PageNumber: 分页
15664
+ # @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
15665
+ # @param OrderType: 汇总订单类型:FREEZE, SETTLEMENT,PAYMENT
15666
+ # @type OrderType: String
15667
+ # @param PayeeId: 收款用户ID
15668
+ # @type PayeeId: String
15669
+ # @param Environment: 环境类型
15670
+ # __release__:生产环境
15671
+ # __sandbox__:沙箱环境
15672
+ # __test__:测试环境
15673
+ # 缺省默认为生产环境
15674
+ # @type Environment: String
15675
+
15676
+ attr_accessor :SummaryDate, :PageNumber, :OrderType, :PayeeId, :Environment
15677
+
15678
+ def initialize(summarydate=nil, pagenumber=nil, ordertype=nil, payeeid=nil, environment=nil)
15679
+ @SummaryDate = summarydate
15680
+ @PageNumber = pagenumber
15681
+ @OrderType = ordertype
15682
+ @PayeeId = payeeid
15683
+ @Environment = environment
15684
+ end
15685
+
15686
+ def deserialize(params)
15687
+ @SummaryDate = params['SummaryDate']
15688
+ unless params['PageNumber'].nil?
15689
+ @PageNumber = Paging.new
15690
+ @PageNumber.deserialize(params['PageNumber'])
15691
+ end
15692
+ @OrderType = params['OrderType']
15693
+ @PayeeId = params['PayeeId']
15694
+ @Environment = params['Environment']
15695
+ end
15696
+ end
15697
+
15698
+ # QueryFlexOrderSummaryList返回参数结构体
15699
+ class QueryFlexOrderSummaryListResponse < TencentCloud::Common::AbstractModel
15700
+ # @param ErrCode: 错误码。SUCCESS为成功,其他为失败
15701
+ # @type ErrCode: String
15702
+ # @param ErrMessage: 错误消息
15703
+ # @type ErrMessage: String
15704
+ # @param Result: 返回结果
15705
+ # 注意:此字段可能返回 null,表示取不到有效值。
15706
+ # @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.OrderSummaries`
15707
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
15708
+ # @type RequestId: String
15709
+
15710
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
15711
+
15712
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
15713
+ @ErrCode = errcode
15714
+ @ErrMessage = errmessage
15715
+ @Result = result
15716
+ @RequestId = requestid
15717
+ end
15718
+
15719
+ def deserialize(params)
15720
+ @ErrCode = params['ErrCode']
15721
+ @ErrMessage = params['ErrMessage']
15722
+ unless params['Result'].nil?
15723
+ @Result = OrderSummaries.new
15724
+ @Result.deserialize(params['Result'])
15725
+ end
15726
+ @RequestId = params['RequestId']
15727
+ end
15728
+ end
15729
+
15324
15730
  # QueryFlexPayeeAccountBalance请求参数结构体
15325
15731
  class QueryFlexPayeeAccountBalanceRequest < TencentCloud::Common::AbstractModel
15326
15732
  # @param PayeeId: 收款用户ID
@@ -15329,17 +15735,25 @@ module TencentCloud
15329
15735
  # LABOR:劳务所得
15330
15736
  # OCCASION:偶然所得
15331
15737
  # @type IncomeType: String
15738
+ # @param Environment: 环境类型
15739
+ # __release__:生产环境
15740
+ # __sandbox__:沙箱环境
15741
+ # __test__:测试环境
15742
+ # 缺省默认为生产环境
15743
+ # @type Environment: String
15332
15744
 
15333
- attr_accessor :PayeeId, :IncomeType
15745
+ attr_accessor :PayeeId, :IncomeType, :Environment
15334
15746
 
15335
- def initialize(payeeid=nil, incometype=nil)
15747
+ def initialize(payeeid=nil, incometype=nil, environment=nil)
15336
15748
  @PayeeId = payeeid
15337
15749
  @IncomeType = incometype
15750
+ @Environment = environment
15338
15751
  end
15339
15752
 
15340
15753
  def deserialize(params)
15341
15754
  @PayeeId = params['PayeeId']
15342
15755
  @IncomeType = params['IncomeType']
15756
+ @Environment = params['Environment']
15343
15757
  end
15344
15758
  end
15345
15759
 
@@ -15381,17 +15795,25 @@ module TencentCloud
15381
15795
  # @type PayeeId: String
15382
15796
  # @param OutUserId: 外部用户ID
15383
15797
  # @type OutUserId: String
15798
+ # @param Environment: 环境类型
15799
+ # __release__:生产环境
15800
+ # __sandbox__:沙箱环境
15801
+ # __test__:测试环境
15802
+ # 缺省默认为生产环境
15803
+ # @type Environment: String
15384
15804
 
15385
- attr_accessor :PayeeId, :OutUserId
15805
+ attr_accessor :PayeeId, :OutUserId, :Environment
15386
15806
 
15387
- def initialize(payeeid=nil, outuserid=nil)
15807
+ def initialize(payeeid=nil, outuserid=nil, environment=nil)
15388
15808
  @PayeeId = payeeid
15389
15809
  @OutUserId = outuserid
15810
+ @Environment = environment
15390
15811
  end
15391
15812
 
15392
15813
  def deserialize(params)
15393
15814
  @PayeeId = params['PayeeId']
15394
15815
  @OutUserId = params['OutUserId']
15816
+ @Environment = params['Environment']
15395
15817
  end
15396
15818
  end
15397
15819
 
@@ -15437,14 +15859,21 @@ module TencentCloud
15437
15859
  # @type EndTime: String
15438
15860
  # @param PageNumber: 分页
15439
15861
  # @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
15862
+ # @param Environment: 环境类型
15863
+ # __release__:生产环境
15864
+ # __sandbox__:沙箱环境
15865
+ # __test__:测试环境
15866
+ # 缺省默认为生产环境
15867
+ # @type Environment: String
15440
15868
 
15441
- attr_accessor :PropertyInfo, :StartTime, :EndTime, :PageNumber
15869
+ attr_accessor :PropertyInfo, :StartTime, :EndTime, :PageNumber, :Environment
15442
15870
 
15443
- def initialize(propertyinfo=nil, starttime=nil, endtime=nil, pagenumber=nil)
15871
+ def initialize(propertyinfo=nil, starttime=nil, endtime=nil, pagenumber=nil, environment=nil)
15444
15872
  @PropertyInfo = propertyinfo
15445
15873
  @StartTime = starttime
15446
15874
  @EndTime = endtime
15447
15875
  @PageNumber = pagenumber
15876
+ @Environment = environment
15448
15877
  end
15449
15878
 
15450
15879
  def deserialize(params)
@@ -15458,6 +15887,7 @@ module TencentCloud
15458
15887
  @PageNumber = Paging.new
15459
15888
  @PageNumber.deserialize(params['PageNumber'])
15460
15889
  end
15890
+ @Environment = params['Environment']
15461
15891
  end
15462
15892
  end
15463
15893
 
@@ -15499,17 +15929,25 @@ module TencentCloud
15499
15929
  # @type PayeeId: String
15500
15930
  # @param OutUserId: 外部用户ID
15501
15931
  # @type OutUserId: String
15932
+ # @param Environment: 环境类型
15933
+ # __release__:生产环境
15934
+ # __sandbox__:沙箱环境
15935
+ # __test__:测试环境
15936
+ # 缺省默认为生产环境
15937
+ # @type Environment: String
15502
15938
 
15503
- attr_accessor :PayeeId, :OutUserId
15939
+ attr_accessor :PayeeId, :OutUserId, :Environment
15504
15940
 
15505
- def initialize(payeeid=nil, outuserid=nil)
15941
+ def initialize(payeeid=nil, outuserid=nil, environment=nil)
15506
15942
  @PayeeId = payeeid
15507
15943
  @OutUserId = outuserid
15944
+ @Environment = environment
15508
15945
  end
15509
15946
 
15510
15947
  def deserialize(params)
15511
15948
  @PayeeId = params['PayeeId']
15512
15949
  @OutUserId = params['OutUserId']
15950
+ @Environment = params['Environment']
15513
15951
  end
15514
15952
  end
15515
15953
 
@@ -15555,14 +15993,21 @@ module TencentCloud
15555
15993
  # @type EndTime: String
15556
15994
  # @param PageNumber: 分页
15557
15995
  # @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
15996
+ # @param Environment: 环境类型
15997
+ # __release__:生产环境
15998
+ # __sandbox__:沙箱环境
15999
+ # __test__:测试环境
16000
+ # 缺省默认为生产环境
16001
+ # @type Environment: String
15558
16002
 
15559
- attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber
16003
+ attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber, :Environment
15560
16004
 
15561
- def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil)
16005
+ def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil, environment=nil)
15562
16006
  @PayeeId = payeeid
15563
16007
  @StartTime = starttime
15564
16008
  @EndTime = endtime
15565
16009
  @PageNumber = pagenumber
16010
+ @Environment = environment
15566
16011
  end
15567
16012
 
15568
16013
  def deserialize(params)
@@ -15573,6 +16018,7 @@ module TencentCloud
15573
16018
  @PageNumber = Paging.new
15574
16019
  @PageNumber.deserialize(params['PageNumber'])
15575
16020
  end
16021
+ @Environment = params['Environment']
15576
16022
  end
15577
16023
  end
15578
16024
 
@@ -15614,17 +16060,25 @@ module TencentCloud
15614
16060
  # @type OutOrderId: String
15615
16061
  # @param OrderId: 订单ID
15616
16062
  # @type OrderId: String
16063
+ # @param Environment: 环境类型
16064
+ # __release__:生产环境
16065
+ # __sandbox__:沙箱环境
16066
+ # __test__:测试环境
16067
+ # 缺省默认为生产环境
16068
+ # @type Environment: String
15617
16069
 
15618
- attr_accessor :OutOrderId, :OrderId
16070
+ attr_accessor :OutOrderId, :OrderId, :Environment
15619
16071
 
15620
- def initialize(outorderid=nil, orderid=nil)
16072
+ def initialize(outorderid=nil, orderid=nil, environment=nil)
15621
16073
  @OutOrderId = outorderid
15622
16074
  @OrderId = orderid
16075
+ @Environment = environment
15623
16076
  end
15624
16077
 
15625
16078
  def deserialize(params)
15626
16079
  @OutOrderId = params['OutOrderId']
15627
16080
  @OrderId = params['OrderId']
16081
+ @Environment = params['Environment']
15628
16082
  end
15629
16083
  end
15630
16084
 
@@ -15670,14 +16124,28 @@ module TencentCloud
15670
16124
  # @type EndTime: String
15671
16125
  # @param PageNumber: 分页
15672
16126
  # @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
16127
+ # @param OperationType: 操作类型。
16128
+ # ENABLE_SETTLE: 正常结算
16129
+ # DISABLE_SETTLE: 停用结算
16130
+ # UNFREEZE_SETTLE: 解冻结算
16131
+ # 若需要支持多个操作类型,则以;分隔
16132
+ # @type OperationType: String
16133
+ # @param Environment: 环境类型
16134
+ # __release__:生产环境
16135
+ # __sandbox__:沙箱环境
16136
+ # __test__:测试环境
16137
+ # 缺省默认为生产环境
16138
+ # @type Environment: String
15673
16139
 
15674
- attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber
16140
+ attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber, :OperationType, :Environment
15675
16141
 
15676
- def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil)
16142
+ def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil, operationtype=nil, environment=nil)
15677
16143
  @PayeeId = payeeid
15678
16144
  @StartTime = starttime
15679
16145
  @EndTime = endtime
15680
16146
  @PageNumber = pagenumber
16147
+ @OperationType = operationtype
16148
+ @Environment = environment
15681
16149
  end
15682
16150
 
15683
16151
  def deserialize(params)
@@ -15688,6 +16156,8 @@ module TencentCloud
15688
16156
  @PageNumber = Paging.new
15689
16157
  @PageNumber.deserialize(params['PageNumber'])
15690
16158
  end
16159
+ @OperationType = params['OperationType']
16160
+ @Environment = params['Environment']
15691
16161
  end
15692
16162
  end
15693
16163
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cpdp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.345
4
+ version: 1.0.348
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-30 00:00:00.000000000 Z
11
+ date: 2022-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common