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.



12619
12620
12621
12622
# File 'lib/v20190423/models.rb', line 12619

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

Instance Attribute Details

#RoomIdObject

Parameters:

  • RoomId:

    房间id

  • TRTCUserIds:

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



12617
12618
12619
# File 'lib/v20190423/models.rb', line 12617

def RoomId
  @RoomId
end

#TRTCUserIdsObject

Parameters:

  • RoomId:

    房间id

  • TRTCUserIds:

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



12617
12618
12619
# File 'lib/v20190423/models.rb', line 12617

def TRTCUserIds
  @TRTCUserIds
end

Instance Method Details

#deserialize(params) ⇒ Object



12624
12625
12626
12627
# File 'lib/v20190423/models.rb', line 12624

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