tencentcloud-sdk-ccc 3.0.535 → 3.0.537
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/v20200210/models.rb +19 -9
- 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: f5cfbbb090fe624e7e40c153d3802ed16d4bf717
|
4
|
+
data.tar.gz: f5cab2891449861636d9ecaececb28e005d0baab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ee6ddb3b987a7eccf2de365816e8f1461c6c0c514feb0421d99bf07b98f7ade1e82309b84f0f932d45c312b15ee456b137b8f89e5487f2e6ed536c21bf9af40
|
7
|
+
data.tar.gz: 13ec1c086b6b18165f48847552ebd19c03d5b7311452ec4dfbee32d65216754fca90ab85cbf8f2a3d7eb38b1dd11086f3bf80b0d7d7e6929633438358b602e2c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.537
|
data/lib/v20200210/models.rb
CHANGED
@@ -2836,6 +2836,9 @@ module TencentCloud
|
|
2836
2836
|
# @type Name: String
|
2837
2837
|
# @param Mail: 坐席邮箱
|
2838
2838
|
# @type Mail: String
|
2839
|
+
# @param StaffNumber: 工号
|
2840
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2841
|
+
# @type StaffNumber: String
|
2839
2842
|
# @param Phone: 坐席电话号码(带0086前缀)
|
2840
2843
|
# @type Phone: String
|
2841
2844
|
# @param Nick: 坐席昵称
|
@@ -2845,30 +2848,27 @@ module TencentCloud
|
|
2845
2848
|
# @param SkillGroupNameList: 坐席关联的技能组列表
|
2846
2849
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2847
2850
|
# @type SkillGroupNameList: Array
|
2848
|
-
# @param StaffNumber: 工号
|
2849
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2850
|
-
# @type StaffNumber: String
|
2851
2851
|
|
2852
|
-
attr_accessor :Name, :Mail, :Phone, :Nick, :UserId, :SkillGroupNameList
|
2852
|
+
attr_accessor :Name, :Mail, :StaffNumber, :Phone, :Nick, :UserId, :SkillGroupNameList
|
2853
2853
|
|
2854
|
-
def initialize(name=nil, mail=nil, phone=nil, nick=nil, userid=nil, skillgroupnamelist=nil
|
2854
|
+
def initialize(name=nil, mail=nil, staffnumber=nil, phone=nil, nick=nil, userid=nil, skillgroupnamelist=nil)
|
2855
2855
|
@Name = name
|
2856
2856
|
@Mail = mail
|
2857
|
+
@StaffNumber = staffnumber
|
2857
2858
|
@Phone = phone
|
2858
2859
|
@Nick = nick
|
2859
2860
|
@UserId = userid
|
2860
2861
|
@SkillGroupNameList = skillgroupnamelist
|
2861
|
-
@StaffNumber = staffnumber
|
2862
2862
|
end
|
2863
2863
|
|
2864
2864
|
def deserialize(params)
|
2865
2865
|
@Name = params['Name']
|
2866
2866
|
@Mail = params['Mail']
|
2867
|
+
@StaffNumber = params['StaffNumber']
|
2867
2868
|
@Phone = params['Phone']
|
2868
2869
|
@Nick = params['Nick']
|
2869
2870
|
@UserId = params['UserId']
|
2870
2871
|
@SkillGroupNameList = params['SkillGroupNameList']
|
2871
|
-
@StaffNumber = params['StaffNumber']
|
2872
2872
|
end
|
2873
2873
|
end
|
2874
2874
|
|
@@ -3173,10 +3173,16 @@ module TencentCloud
|
|
3173
3173
|
# @type UseMobileAccept: Integer
|
3174
3174
|
# @param UseMobileCallOut: 手机外呼开关
|
3175
3175
|
# @type UseMobileCallOut: Boolean
|
3176
|
+
# @param LastOnlineTimestamp: 最近一次上线时间戳
|
3177
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3178
|
+
# @type LastOnlineTimestamp: Integer
|
3179
|
+
# @param LastStatusTimestamp: 最近一次状态时间戳
|
3180
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3181
|
+
# @type LastStatusTimestamp: Integer
|
3176
3182
|
|
3177
|
-
attr_accessor :Email, :Status, :StatusExtra, :OnlineDuration, :FreeDuration, :BusyDuration, :NotReadyDuration, :RestDuration, :AfterCallWorkDuration, :Reason, :ReserveRest, :ReserveNotReady, :UseMobileAccept, :UseMobileCallOut
|
3183
|
+
attr_accessor :Email, :Status, :StatusExtra, :OnlineDuration, :FreeDuration, :BusyDuration, :NotReadyDuration, :RestDuration, :AfterCallWorkDuration, :Reason, :ReserveRest, :ReserveNotReady, :UseMobileAccept, :UseMobileCallOut, :LastOnlineTimestamp, :LastStatusTimestamp
|
3178
3184
|
|
3179
|
-
def initialize(email=nil, status=nil, statusextra=nil, onlineduration=nil, freeduration=nil, busyduration=nil, notreadyduration=nil, restduration=nil, aftercallworkduration=nil, reason=nil, reserverest=nil, reservenotready=nil, usemobileaccept=nil, usemobilecallout=nil)
|
3185
|
+
def initialize(email=nil, status=nil, statusextra=nil, onlineduration=nil, freeduration=nil, busyduration=nil, notreadyduration=nil, restduration=nil, aftercallworkduration=nil, reason=nil, reserverest=nil, reservenotready=nil, usemobileaccept=nil, usemobilecallout=nil, lastonlinetimestamp=nil, laststatustimestamp=nil)
|
3180
3186
|
@Email = email
|
3181
3187
|
@Status = status
|
3182
3188
|
@StatusExtra = statusextra
|
@@ -3191,6 +3197,8 @@ module TencentCloud
|
|
3191
3197
|
@ReserveNotReady = reservenotready
|
3192
3198
|
@UseMobileAccept = usemobileaccept
|
3193
3199
|
@UseMobileCallOut = usemobilecallout
|
3200
|
+
@LastOnlineTimestamp = lastonlinetimestamp
|
3201
|
+
@LastStatusTimestamp = laststatustimestamp
|
3194
3202
|
end
|
3195
3203
|
|
3196
3204
|
def deserialize(params)
|
@@ -3211,6 +3219,8 @@ module TencentCloud
|
|
3211
3219
|
@ReserveNotReady = params['ReserveNotReady']
|
3212
3220
|
@UseMobileAccept = params['UseMobileAccept']
|
3213
3221
|
@UseMobileCallOut = params['UseMobileCallOut']
|
3222
|
+
@LastOnlineTimestamp = params['LastOnlineTimestamp']
|
3223
|
+
@LastStatusTimestamp = params['LastStatusTimestamp']
|
3214
3224
|
end
|
3215
3225
|
end
|
3216
3226
|
|
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.
|
4
|
+
version: 3.0.537
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|