tencentcloud-sdk-ccc 3.0.1079 → 3.0.1087

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 +65 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c070a785e8bef3b3c9dd7fcf10056e62ed10a7db
4
- data.tar.gz: ec2ee329a7cc4a47fce9088952103b25b02ce61d
3
+ metadata.gz: a34e3a44560000a5181995ee682e4358a5314605
4
+ data.tar.gz: 663dc912375a092e75374fe53a847838ab437ed3
5
5
  SHA512:
6
- metadata.gz: a97be54833d54a3c9e1956d59b080dfe742dcae84045387a091e3aba3b0d17bc946f2147efea32f6bad288bb3798edd25f93a3ba8572fab7467ac9f4e4313b51
7
- data.tar.gz: b9f04308289d9f54fa7ed971483fc47f8087b9549f99672abb9f1d5ba1678ccde68f4ba8fa9b3c1fbed1d07e44cb1d3e0334df4ad6a4248805ed6f5a9c4c9d0f
6
+ metadata.gz: 8be9afdbcbd3beed5af367ab8b3e03b15556fc7d513571828e8a9a97bd099b675236b2f4bcf1c59f904cc5c1cbc4bbb2a9afa607d3018cb8eeb529d8a8402177
7
+ data.tar.gz: ef9944a61f1be3e900ccc4774f5d2532157b99f9ef861109665273d0080c00463035df1432da3ba6a42542923914cbdf1b69dbe8a974aa32ef2b4abe2f4ba296
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1079
1
+ 3.0.1087
@@ -4559,6 +4559,61 @@ module TencentCloud
4559
4559
  end
4560
4560
  end
4561
4561
 
4562
+ # 呼转配置
4563
+ class ForwardingConfig < TencentCloud::Common::AbstractModel
4564
+ # @param Enabled: 是否启用
4565
+ # @type Enabled: Boolean
4566
+ # @param Condition: 1 无条件呼转 2 有条件呼转
4567
+ # @type Condition: Integer
4568
+ # @param Target: 呼转目标
4569
+ # @type Target: :class:`Tencentcloud::Ccc.v20200210.models.ForwardingTarget`
4570
+
4571
+ attr_accessor :Enabled, :Condition, :Target
4572
+
4573
+ def initialize(enabled=nil, condition=nil, target=nil)
4574
+ @Enabled = enabled
4575
+ @Condition = condition
4576
+ @Target = target
4577
+ end
4578
+
4579
+ def deserialize(params)
4580
+ @Enabled = params['Enabled']
4581
+ @Condition = params['Condition']
4582
+ unless params['Target'].nil?
4583
+ @Target = ForwardingTarget.new
4584
+ @Target.deserialize(params['Target'])
4585
+ end
4586
+ end
4587
+ end
4588
+
4589
+ # 呼转目标
4590
+ class ForwardingTarget < TencentCloud::Common::AbstractModel
4591
+ # @param Type: 呼转目标类型 1 座席 2 技能组 3 分机
4592
+ # @type Type: Integer
4593
+ # @param StaffUserId: 呼转目标为座席的账号 Type 为 1 时填写
4594
+ # @type StaffUserId: String
4595
+ # @param SkillGroupId: 呼转目标为技能组的 ID,Type 为 2 时填写
4596
+ # @type SkillGroupId: Integer
4597
+ # @param Extension: 呼转目标为分机的账号,Type 为 3 时填写
4598
+ # @type Extension: String
4599
+
4600
+ attr_accessor :Type, :StaffUserId, :SkillGroupId, :Extension
4601
+
4602
+ def initialize(type=nil, staffuserid=nil, skillgroupid=nil, extension=nil)
4603
+ @Type = type
4604
+ @StaffUserId = staffuserid
4605
+ @SkillGroupId = skillgroupid
4606
+ @Extension = extension
4607
+ end
4608
+
4609
+ def deserialize(params)
4610
+ @Type = params['Type']
4611
+ @StaffUserId = params['StaffUserId']
4612
+ @SkillGroupId = params['SkillGroupId']
4613
+ @Extension = params['Extension']
4614
+ end
4615
+ end
4616
+
4562
4617
  # HangUpCall请求参数结构体
4563
4618
  class HangUpCallRequest < TencentCloud::Common::AbstractModel
4564
4619
  # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
@@ -5754,8 +5809,7 @@ module TencentCloud
5754
5809
  # @type Nick: String
5755
5810
  # @param StaffNumber: 座席工号
5756
5811
  # @type StaffNumber: String
5757
- # @param RoleId: 用户角色id
5758
- # 一个用户绑定了多个角色时以RoleIdList为准
5812
+ # @param RoleId: 用户角色 ID,一个用户绑定了多个角色时以RoleIdList为准
5759
5813
  # @type RoleId: Integer
5760
5814
  # @param RoleIdList: 用户角色id列表
5761
5815
  # @type RoleIdList: Integer
@@ -5767,15 +5821,17 @@ module TencentCloud
5767
5821
  # @type LastModifyTimestamp: Integer
5768
5822
  # @param ExtensionNumber: 座席分机号(1 到 8 打头,4 - 6 位)
5769
5823
  # @type ExtensionNumber: String
5824
+ # @param ForwardingConfig: 呼叫转移配置
5825
+ # @type ForwardingConfig: :class:`Tencentcloud::Ccc.v20200210.models.ForwardingConfig`
5770
5826
 
5771
- attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber
5827
+ attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
5772
5828
  extend Gem::Deprecate
5773
5829
  deprecate :RoleId, :none, 2025, 6
5774
5830
  deprecate :RoleId=, :none, 2025, 6
5775
5831
  deprecate :RoleIdList, :none, 2025, 6
5776
5832
  deprecate :RoleIdList=, :none, 2025, 6
5777
5833
 
5778
- def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil)
5834
+ def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil, forwardingconfig=nil)
5779
5835
  @Name = name
5780
5836
  @Mail = mail
5781
5837
  @Phone = phone
@@ -5787,6 +5843,7 @@ module TencentCloud
5787
5843
  @SkillGroupList = skillgrouplist
5788
5844
  @LastModifyTimestamp = lastmodifytimestamp
5789
5845
  @ExtensionNumber = extensionnumber
5846
+ @ForwardingConfig = forwardingconfig
5790
5847
  end
5791
5848
 
5792
5849
  def deserialize(params)
@@ -5808,6 +5865,10 @@ module TencentCloud
5808
5865
  end
5809
5866
  @LastModifyTimestamp = params['LastModifyTimestamp']
5810
5867
  @ExtensionNumber = params['ExtensionNumber']
5868
+ unless params['ForwardingConfig'].nil?
5869
+ @ForwardingConfig = ForwardingConfig.new
5870
+ @ForwardingConfig.deserialize(params['ForwardingConfig'])
5871
+ end
5811
5872
  end
5812
5873
  end
5813
5874
 
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.1079
4
+ version: 3.0.1087
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-06-11 00:00:00.000000000 Z
11
+ date: 2025-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common