Class: TencentCloud::Iotexplorer::V20190423::RemoveUserByRoomIdFromTRTCRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190423/models.rb

Overview

RemoveUserByRoomIdFromTRTC请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(roomid = nil, trtcuserids = nil) ⇒ RemoveUserByRoomIdFromTRTCRequest

Returns a new instance of RemoveUserByRoomIdFromTRTCRequest.



12635
12636
12637
12638
# File 'lib/v20190423/models.rb', line 12635

def initialize(roomid=nil, trtcuserids=nil)
  @RoomId = roomid
  @TRTCUserIds = trtcuserids
end

Instance Attribute Details

#RoomIdObject

Parameters:

  • RoomId:

    房间id

  • TRTCUserIds:

    用户名称数组,数组元素不可重复,最长不超过 10 个。



12633
12634
12635
# File 'lib/v20190423/models.rb', line 12633

def RoomId
  @RoomId
end

#TRTCUserIdsObject

Parameters:

  • RoomId:

    房间id

  • TRTCUserIds:

    用户名称数组,数组元素不可重复,最长不超过 10 个。



12633
12634
12635
# File 'lib/v20190423/models.rb', line 12633

def TRTCUserIds
  @TRTCUserIds
end

Instance Method Details

#deserialize(params) ⇒ Object



12640
12641
12642
12643
# File 'lib/v20190423/models.rb', line 12640

def deserialize(params)
  @RoomId = params['RoomId']
  @TRTCUserIds = params['TRTCUserIds']
end