class TencentCloud::Trtc::V20190722::RemoveUserRequest

RemoveUser请求参数结构体

Attributes

RoomId[RW]

@param SdkAppId: TRTC的SDKAppId。 @type SdkAppId: Integer @param RoomId: 房间号。 @type RoomId: Integer @param UserIds: 要移出的用户列表,最多10个。 @type UserIds: Array

SdkAppId[RW]

@param SdkAppId: TRTC的SDKAppId。 @type SdkAppId: Integer @param RoomId: 房间号。 @type RoomId: Integer @param UserIds: 要移出的用户列表,最多10个。 @type UserIds: Array

UserIds[RW]

@param SdkAppId: TRTC的SDKAppId。 @type SdkAppId: Integer @param RoomId: 房间号。 @type RoomId: Integer @param UserIds: 要移出的用户列表,最多10个。 @type UserIds: Array

Public Class Methods

new(sdkappid=nil, roomid=nil, userids=nil) click to toggle source
# File lib/v20190722/models.rb, line 1706
def initialize(sdkappid=nil, roomid=nil, userids=nil)
  @SdkAppId = sdkappid
  @RoomId = roomid
  @UserIds = userids
end

Public Instance Methods

deserialize(params) click to toggle source
# File lib/v20190722/models.rb, line 1712
def deserialize(params)
  @SdkAppId = params['SdkAppId']
  @RoomId = params['RoomId']
  @UserIds = params['UserIds']
end