tencentcloud-sdk-gme 3.0.499 → 3.0.501

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/v20180711/models.rb +17 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c8597de8b8174bc469b9170c4ba5df16494100f5
4
- data.tar.gz: 490ac67d6c6de12f3890e17f9b394c69187bf073
3
+ metadata.gz: dd10541c03b70dea3b8666aff698bc318d518d68
4
+ data.tar.gz: f0e68e56936331669032c5f9c01792c769cdd8a7
5
5
  SHA512:
6
- metadata.gz: 0f742047e71d3622f9c0ee40b647e94129a3e99cf7e153f23942a207fe89a9e8501b77d3d2983fc8df3c35e59493fc8b0f440763dbc887fd6e861e3ba6902e6a
7
- data.tar.gz: 2a29c7b341b978efeeb9bc65f1435e791c171c77cd6bafe3449e7879964b58284f1dde26551c1b829e843c87624a701922105142690de72f3d3b41e723a9c8bd
6
+ metadata.gz: 8a64d01001b7474b6e7e4673f6572f4a2bdb76fe9f6d6cb6844aa83882c35f9cfe3620721da7d612c583d0249a380aaef1530bd4be3c307ee6296f1035efeb93
7
+ data.tar.gz: 5c5b1b6b66430c42fa074517666df5d4736affe18742cb9af2c4b7b02304c4690cf2640b444f2f51e94faa3104e03d276ff492a44aa66c77bcc8dd2f6d07aac7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.499
1
+ 3.0.501
@@ -697,27 +697,27 @@ module TencentCloud
697
697
  class DeleteRoomMemberRequest < TencentCloud::Common::AbstractModel
698
698
  # @param RoomId: 要操作的房间id
699
699
  # @type RoomId: String
700
- # @param Uids: 要剔除的用户列表
701
- # @type Uids: Array
702
700
  # @param DeleteType: 剔除类型 1-删除房间 2-剔除用户
703
701
  # @type DeleteType: Integer
704
702
  # @param BizId: 应用id
705
703
  # @type BizId: Integer
704
+ # @param Uids: 要剔除的用户列表
705
+ # @type Uids: Array
706
706
 
707
- attr_accessor :RoomId, :Uids, :DeleteType, :BizId
707
+ attr_accessor :RoomId, :DeleteType, :BizId, :Uids
708
708
 
709
- def initialize(roomid=nil, uids=nil, deletetype=nil, bizid=nil)
709
+ def initialize(roomid=nil, deletetype=nil, bizid=nil, uids=nil)
710
710
  @RoomId = roomid
711
- @Uids = uids
712
711
  @DeleteType = deletetype
713
712
  @BizId = bizid
713
+ @Uids = uids
714
714
  end
715
715
 
716
716
  def deserialize(params)
717
717
  @RoomId = params['RoomId']
718
- @Uids = params['Uids']
719
718
  @DeleteType = params['DeleteType']
720
719
  @BizId = params['BizId']
720
+ @Uids = params['Uids']
721
721
  end
722
722
  end
723
723
 
@@ -2206,21 +2206,26 @@ module TencentCloud
2206
2206
 
2207
2207
  # 用户麦克风状态
2208
2208
  class UserMicStatus < TencentCloud::Common::AbstractModel
2209
- # @param Uid: 客户端用于标识用户的Openid。
2210
- # @type Uid: Integer
2211
2209
  # @param EnableMic: 开麦状态。1表示关闭麦克风,2表示打开麦克风。
2212
2210
  # @type EnableMic: Integer
2211
+ # @param Uid: 客户端用于标识用户的Openid。(Uid、StrUid必须填一个,优先处理StrUid。)
2212
+ # @type Uid: Integer
2213
+ # @param StrUid: 客户端用于标识字符串型用户的Openid。(Uid、StrUid必须填一个,优先处理StrUid。)
2214
+ # 注意:此字段可能返回 null,表示取不到有效值。
2215
+ # @type StrUid: String
2213
2216
 
2214
- attr_accessor :Uid, :EnableMic
2217
+ attr_accessor :EnableMic, :Uid, :StrUid
2215
2218
 
2216
- def initialize(uid=nil, enablemic=nil)
2217
- @Uid = uid
2219
+ def initialize(enablemic=nil, uid=nil, struid=nil)
2218
2220
  @EnableMic = enablemic
2221
+ @Uid = uid
2222
+ @StrUid = struid
2219
2223
  end
2220
2224
 
2221
2225
  def deserialize(params)
2222
- @Uid = params['Uid']
2223
2226
  @EnableMic = params['EnableMic']
2227
+ @Uid = params['Uid']
2228
+ @StrUid = params['StrUid']
2224
2229
  end
2225
2230
  end
2226
2231
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.499
4
+ version: 3.0.501
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-02-01 00:00:00.000000000 Z
11
+ date: 2023-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common