tencentcloud-sdk-partners 3.0.1013 → 3.0.1014
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180321/client.rb +24 -0
- data/lib/v20180321/models.rb +80 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f958331fccd11047d4911aed4e69f89e2eeb813
|
4
|
+
data.tar.gz: 8aad1c8845df9e8f3e690746186eea79c5d7bfd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cad8d25d8df7c240b4dfeae1bed762567ba2a2a927d3246eed28c8f755ef15512e77ba8e149ef1eaed0739c12a1a4d723d05b8a5522f8db3fda9f56dead6612
|
7
|
+
data.tar.gz: babd68533b6e4d5d4152caa037744ca7825c0ced849226ba9d457e595bece3fba6e402a3eb42b801c3307e6610b5f559dcd2203347001e8f9884e09e4f0bff87
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1014
|
data/lib/v20180321/client.rb
CHANGED
@@ -368,6 +368,30 @@ module TencentCloud
|
|
368
368
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
369
369
|
end
|
370
370
|
|
371
|
+
# 查询合作伙伴名下客户的参与增量激励考核信息列表
|
372
|
+
|
373
|
+
# @param request: Request instance for DescribeClientJoinIncreaseList.
|
374
|
+
# @type request: :class:`Tencentcloud::partners::V20180321::DescribeClientJoinIncreaseListRequest`
|
375
|
+
# @rtype: :class:`Tencentcloud::partners::V20180321::DescribeClientJoinIncreaseListResponse`
|
376
|
+
def DescribeClientJoinIncreaseList(request)
|
377
|
+
body = send_request('DescribeClientJoinIncreaseList', request.serialize)
|
378
|
+
response = JSON.parse(body)
|
379
|
+
if response['Response'].key?('Error') == false
|
380
|
+
model = DescribeClientJoinIncreaseListResponse.new
|
381
|
+
model.deserialize(response['Response'])
|
382
|
+
model
|
383
|
+
else
|
384
|
+
code = response['Response']['Error']['Code']
|
385
|
+
message = response['Response']['Error']['Message']
|
386
|
+
reqid = response['Response']['RequestId']
|
387
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
388
|
+
end
|
389
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
390
|
+
raise e
|
391
|
+
rescue StandardError => e
|
392
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
393
|
+
end
|
394
|
+
|
371
395
|
# 【该接口已下线,请切换使用升级版本DescribeRebateInfosNew】代理商可查询自己名下全部返佣信息
|
372
396
|
|
373
397
|
# @param request: Request instance for DescribeRebateInfos.
|
data/lib/v20180321/models.rb
CHANGED
@@ -582,6 +582,43 @@ module TencentCloud
|
|
582
582
|
end
|
583
583
|
end
|
584
584
|
|
585
|
+
# 客户增量激励考核信息列表
|
586
|
+
class ClientIncreaseInfoList < TencentCloud::Common::AbstractModel
|
587
|
+
# @param ClientUin: 客户UIN
|
588
|
+
# @type ClientUin: String
|
589
|
+
# @param IsJoinIncrease: 是否参与增量政策,
|
590
|
+
# Y:是,N:否
|
591
|
+
# @type IsJoinIncrease: String
|
592
|
+
# @param IncreaseUseAssociateDate: 增量考核关联时间
|
593
|
+
# @type IncreaseUseAssociateDate: String
|
594
|
+
# @param TLevel: 参与增量考核的原始客户等级
|
595
|
+
# @type TLevel: String
|
596
|
+
# @param IncreaseGoal: 增量考核目标,分
|
597
|
+
# @type IncreaseGoal: String
|
598
|
+
# @param TotalBaseAmt: 完成订单金额,分
|
599
|
+
# @type TotalBaseAmt: String
|
600
|
+
|
601
|
+
attr_accessor :ClientUin, :IsJoinIncrease, :IncreaseUseAssociateDate, :TLevel, :IncreaseGoal, :TotalBaseAmt
|
602
|
+
|
603
|
+
def initialize(clientuin=nil, isjoinincrease=nil, increaseuseassociatedate=nil, tlevel=nil, increasegoal=nil, totalbaseamt=nil)
|
604
|
+
@ClientUin = clientuin
|
605
|
+
@IsJoinIncrease = isjoinincrease
|
606
|
+
@IncreaseUseAssociateDate = increaseuseassociatedate
|
607
|
+
@TLevel = tlevel
|
608
|
+
@IncreaseGoal = increasegoal
|
609
|
+
@TotalBaseAmt = totalbaseamt
|
610
|
+
end
|
611
|
+
|
612
|
+
def deserialize(params)
|
613
|
+
@ClientUin = params['ClientUin']
|
614
|
+
@IsJoinIncrease = params['IsJoinIncrease']
|
615
|
+
@IncreaseUseAssociateDate = params['IncreaseUseAssociateDate']
|
616
|
+
@TLevel = params['TLevel']
|
617
|
+
@IncreaseGoal = params['IncreaseGoal']
|
618
|
+
@TotalBaseAmt = params['TotalBaseAmt']
|
619
|
+
end
|
620
|
+
end
|
621
|
+
|
585
622
|
# CreatePayRelationForClient请求参数结构体
|
586
623
|
class CreatePayRelationForClientRequest < TencentCloud::Common::AbstractModel
|
587
624
|
# @param ClientUin: 客户账号ID
|
@@ -1240,6 +1277,49 @@ module TencentCloud
|
|
1240
1277
|
end
|
1241
1278
|
end
|
1242
1279
|
|
1280
|
+
# DescribeClientJoinIncreaseList请求参数结构体
|
1281
|
+
class DescribeClientJoinIncreaseListRequest < TencentCloud::Common::AbstractModel
|
1282
|
+
# @param ClientUins: 客户UIN列表
|
1283
|
+
# @type ClientUins: Array
|
1284
|
+
|
1285
|
+
attr_accessor :ClientUins
|
1286
|
+
|
1287
|
+
def initialize(clientuins=nil)
|
1288
|
+
@ClientUins = clientuins
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
def deserialize(params)
|
1292
|
+
@ClientUins = params['ClientUins']
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
# DescribeClientJoinIncreaseList返回参数结构体
|
1297
|
+
class DescribeClientJoinIncreaseListResponse < TencentCloud::Common::AbstractModel
|
1298
|
+
# @param List: 已审核代客列表
|
1299
|
+
# @type List: Array
|
1300
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1301
|
+
# @type RequestId: String
|
1302
|
+
|
1303
|
+
attr_accessor :List, :RequestId
|
1304
|
+
|
1305
|
+
def initialize(list=nil, requestid=nil)
|
1306
|
+
@List = list
|
1307
|
+
@RequestId = requestid
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
def deserialize(params)
|
1311
|
+
unless params['List'].nil?
|
1312
|
+
@List = []
|
1313
|
+
params['List'].each do |i|
|
1314
|
+
clientincreaseinfolist_tmp = ClientIncreaseInfoList.new
|
1315
|
+
clientincreaseinfolist_tmp.deserialize(i)
|
1316
|
+
@List << clientincreaseinfolist_tmp
|
1317
|
+
end
|
1318
|
+
end
|
1319
|
+
@RequestId = params['RequestId']
|
1320
|
+
end
|
1321
|
+
end
|
1322
|
+
|
1243
1323
|
# DescribeRebateInfosNew请求参数结构体
|
1244
1324
|
class DescribeRebateInfosNewRequest < TencentCloud::Common::AbstractModel
|
1245
1325
|
# @param RebateMonth: 返佣月份,如2018-02
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-partners
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1014
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|