tencentcloud-sdk-ccc 3.0.941 → 3.0.943

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200210/models.rb +62 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17062e4b03804aad3956965dbad856a00b7fb065
4
- data.tar.gz: e50978d45d48a4295f3ae4bc13febeb22ec8cfe9
3
+ metadata.gz: 6e3269bab6ac3b880830dec3b2eace9f69045f20
4
+ data.tar.gz: 009f65bcd7cf12f506de4599e28c57b7ecd67b0e
5
5
  SHA512:
6
- metadata.gz: 0a8306b8193dcc2a862680c8fbe7df1bcff5844e8a0a0943e3d0986b897f23dc048a764ab1028ffb4d20b05709aac94f78fd9a93b9f4c6664ece57b9e8ab3916
7
- data.tar.gz: 6b33f40f04c6661e90df01222896a01c5c1283c23c615f770a9d855badc9f3c7d0cf5606940eb27f5f0331db39cc5274158dccc21f2180d4711033f17a184da4
6
+ metadata.gz: 0ebaf5b95f9fcd1e1a2ea2c767746df7df8d9ed316fe4bc6e733d37da96aad9c69b124c71ab66bb3e837642dba81ae1d817ef521284518a0ff9df042228c274b
7
+ data.tar.gz: 04de7c6b5bdf88f2e1beef2daf1234c9e1226d24fc87cef26a7e471439c0551f19d66119a844b14cc66a7cc6513601b00bc2e0f9eb9d16790abb23d153b344e8
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.941
1
+ 3.0.943
@@ -626,10 +626,12 @@ module TencentCloud
626
626
  # @type BusinessId: String
627
627
  # @param ModifyTime: 修改时间
628
628
  # @type ModifyTime: Integer
629
+ # @param ContractNo: 合同编号
630
+ # @type ContractNo: String
629
631
 
630
- attr_accessor :Id, :CompanyName, :CreateTime, :CheckTime, :CheckMsg, :State, :BusinessId, :ModifyTime
632
+ attr_accessor :Id, :CompanyName, :CreateTime, :CheckTime, :CheckMsg, :State, :BusinessId, :ModifyTime, :ContractNo
631
633
 
632
- def initialize(id=nil, companyname=nil, createtime=nil, checktime=nil, checkmsg=nil, state=nil, businessid=nil, modifytime=nil)
634
+ def initialize(id=nil, companyname=nil, createtime=nil, checktime=nil, checkmsg=nil, state=nil, businessid=nil, modifytime=nil, contractno=nil)
633
635
  @Id = id
634
636
  @CompanyName = companyname
635
637
  @CreateTime = createtime
@@ -638,6 +640,7 @@ module TencentCloud
638
640
  @State = state
639
641
  @BusinessId = businessid
640
642
  @ModifyTime = modifytime
643
+ @ContractNo = contractno
641
644
  end
642
645
 
643
646
  def deserialize(params)
@@ -649,6 +652,7 @@ module TencentCloud
649
652
  @State = params['State']
650
653
  @BusinessId = params['BusinessId']
651
654
  @ModifyTime = params['ModifyTime']
655
+ @ContractNo = params['ContractNo']
652
656
  end
653
657
  end
654
658
 
@@ -1458,10 +1462,16 @@ module TencentCloud
1458
1462
  # @type IVRId: Integer
1459
1463
  # @param RetryTimes: 呼叫重试次数,0 - 2
1460
1464
  # @type RetryTimes: Integer
1465
+ # @param Variables: 自定义变量
1466
+ # @type Variables: Array
1467
+ # @param UUI: UUI
1468
+ # @type UUI: String
1469
+ # @param CalleeAttributes: 被叫属性
1470
+ # @type CalleeAttributes: Array
1461
1471
 
1462
- attr_accessor :SdkAppId, :Name, :Callees, :Callers, :CallOrder, :SkillGroupId, :Priority, :ExpectedAbandonRate, :RetryInterval, :StartTime, :EndTime, :IVRId, :RetryTimes
1472
+ attr_accessor :SdkAppId, :Name, :Callees, :Callers, :CallOrder, :SkillGroupId, :Priority, :ExpectedAbandonRate, :RetryInterval, :StartTime, :EndTime, :IVRId, :RetryTimes, :Variables, :UUI, :CalleeAttributes
1463
1473
 
1464
- def initialize(sdkappid=nil, name=nil, callees=nil, callers=nil, callorder=nil, skillgroupid=nil, priority=nil, expectedabandonrate=nil, retryinterval=nil, starttime=nil, endtime=nil, ivrid=nil, retrytimes=nil)
1474
+ def initialize(sdkappid=nil, name=nil, callees=nil, callers=nil, callorder=nil, skillgroupid=nil, priority=nil, expectedabandonrate=nil, retryinterval=nil, starttime=nil, endtime=nil, ivrid=nil, retrytimes=nil, variables=nil, uui=nil, calleeattributes=nil)
1465
1475
  @SdkAppId = sdkappid
1466
1476
  @Name = name
1467
1477
  @Callees = callees
@@ -1475,6 +1485,9 @@ module TencentCloud
1475
1485
  @EndTime = endtime
1476
1486
  @IVRId = ivrid
1477
1487
  @RetryTimes = retrytimes
1488
+ @Variables = variables
1489
+ @UUI = uui
1490
+ @CalleeAttributes = calleeattributes
1478
1491
  end
1479
1492
 
1480
1493
  def deserialize(params)
@@ -1491,6 +1504,23 @@ module TencentCloud
1491
1504
  @EndTime = params['EndTime']
1492
1505
  @IVRId = params['IVRId']
1493
1506
  @RetryTimes = params['RetryTimes']
1507
+ unless params['Variables'].nil?
1508
+ @Variables = []
1509
+ params['Variables'].each do |i|
1510
+ variable_tmp = Variable.new
1511
+ variable_tmp.deserialize(i)
1512
+ @Variables << variable_tmp
1513
+ end
1514
+ end
1515
+ @UUI = params['UUI']
1516
+ unless params['CalleeAttributes'].nil?
1517
+ @CalleeAttributes = []
1518
+ params['CalleeAttributes'].each do |i|
1519
+ calleeattribute_tmp = CalleeAttribute.new
1520
+ calleeattribute_tmp.deserialize(i)
1521
+ @CalleeAttributes << calleeattribute_tmp
1522
+ end
1523
+ end
1494
1524
  end
1495
1525
  end
1496
1526
 
@@ -5469,10 +5499,16 @@ module TencentCloud
5469
5499
  # @type IVRId: Integer
5470
5500
  # @param RetryTimes: 呼叫重试次数,0 - 2
5471
5501
  # @type RetryTimes: Integer
5502
+ # @param Variables: 自定义变量
5503
+ # @type Variables: Array
5504
+ # @param UUI: UUI
5505
+ # @type UUI: String
5506
+ # @param CalleeAttributes: 被叫属性
5507
+ # @type CalleeAttributes: Array
5472
5508
 
5473
- attr_accessor :SdkAppId, :CampaignId, :Name, :Callees, :Callers, :CallOrder, :SkillGroupId, :Priority, :ExpectedAbandonRate, :RetryInterval, :StartTime, :EndTime, :IVRId, :RetryTimes
5509
+ attr_accessor :SdkAppId, :CampaignId, :Name, :Callees, :Callers, :CallOrder, :SkillGroupId, :Priority, :ExpectedAbandonRate, :RetryInterval, :StartTime, :EndTime, :IVRId, :RetryTimes, :Variables, :UUI, :CalleeAttributes
5474
5510
 
5475
- def initialize(sdkappid=nil, campaignid=nil, name=nil, callees=nil, callers=nil, callorder=nil, skillgroupid=nil, priority=nil, expectedabandonrate=nil, retryinterval=nil, starttime=nil, endtime=nil, ivrid=nil, retrytimes=nil)
5511
+ def initialize(sdkappid=nil, campaignid=nil, name=nil, callees=nil, callers=nil, callorder=nil, skillgroupid=nil, priority=nil, expectedabandonrate=nil, retryinterval=nil, starttime=nil, endtime=nil, ivrid=nil, retrytimes=nil, variables=nil, uui=nil, calleeattributes=nil)
5476
5512
  @SdkAppId = sdkappid
5477
5513
  @CampaignId = campaignid
5478
5514
  @Name = name
@@ -5487,6 +5523,9 @@ module TencentCloud
5487
5523
  @EndTime = endtime
5488
5524
  @IVRId = ivrid
5489
5525
  @RetryTimes = retrytimes
5526
+ @Variables = variables
5527
+ @UUI = uui
5528
+ @CalleeAttributes = calleeattributes
5490
5529
  end
5491
5530
 
5492
5531
  def deserialize(params)
@@ -5504,6 +5543,23 @@ module TencentCloud
5504
5543
  @EndTime = params['EndTime']
5505
5544
  @IVRId = params['IVRId']
5506
5545
  @RetryTimes = params['RetryTimes']
5546
+ unless params['Variables'].nil?
5547
+ @Variables = []
5548
+ params['Variables'].each do |i|
5549
+ variable_tmp = Variable.new
5550
+ variable_tmp.deserialize(i)
5551
+ @Variables << variable_tmp
5552
+ end
5553
+ end
5554
+ @UUI = params['UUI']
5555
+ unless params['CalleeAttributes'].nil?
5556
+ @CalleeAttributes = []
5557
+ params['CalleeAttributes'].each do |i|
5558
+ calleeattribute_tmp = CalleeAttribute.new
5559
+ calleeattribute_tmp.deserialize(i)
5560
+ @CalleeAttributes << calleeattribute_tmp
5561
+ end
5562
+ end
5507
5563
  end
5508
5564
  end
5509
5565
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ccc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.941
4
+ version: 3.0.943
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-12 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common