class TencentCloud::Trtc::V20190722::DescribeDetailEventRequest

DescribeDetailEvent请求参数结构体

Attributes

CommId[RW]

@param CommId: 通话 ID(唯一标识一次通话): sdkappid_roomgString(房间号_createTime(房间创建时间,unix时间戳,单位s)。通过 DescribeRoomInformation(查询房间列表)接口获取。(链接:cloud.tencent.com/document/product/647/44050) @type CommId: String @param StartTime: 查询开始时间,14天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer @param UserId: 用户id @type UserId: String @param RoomId: 房间号 @type RoomId: String

EndTime[RW]

@param CommId: 通话 ID(唯一标识一次通话): sdkappid_roomgString(房间号_createTime(房间创建时间,unix时间戳,单位s)。通过 DescribeRoomInformation(查询房间列表)接口获取。(链接:cloud.tencent.com/document/product/647/44050) @type CommId: String @param StartTime: 查询开始时间,14天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer @param UserId: 用户id @type UserId: String @param RoomId: 房间号 @type RoomId: String

RoomId[RW]

@param CommId: 通话 ID(唯一标识一次通话): sdkappid_roomgString(房间号_createTime(房间创建时间,unix时间戳,单位s)。通过 DescribeRoomInformation(查询房间列表)接口获取。(链接:cloud.tencent.com/document/product/647/44050) @type CommId: String @param StartTime: 查询开始时间,14天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer @param UserId: 用户id @type UserId: String @param RoomId: 房间号 @type RoomId: String

StartTime[RW]

@param CommId: 通话 ID(唯一标识一次通话): sdkappid_roomgString(房间号_createTime(房间创建时间,unix时间戳,单位s)。通过 DescribeRoomInformation(查询房间列表)接口获取。(链接:cloud.tencent.com/document/product/647/44050) @type CommId: String @param StartTime: 查询开始时间,14天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer @param UserId: 用户id @type UserId: String @param RoomId: 房间号 @type RoomId: String

UserId[RW]

@param CommId: 通话 ID(唯一标识一次通话): sdkappid_roomgString(房间号_createTime(房间创建时间,unix时间戳,单位s)。通过 DescribeRoomInformation(查询房间列表)接口获取。(链接:cloud.tencent.com/document/product/647/44050) @type CommId: String @param StartTime: 查询开始时间,14天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer @param UserId: 用户id @type UserId: String @param RoomId: 房间号 @type RoomId: String

Public Class Methods

new(commid=nil, starttime=nil, endtime=nil, userid=nil, roomid=nil) click to toggle source
# File lib/v20190722/models.rb, line 419
def initialize(commid=nil, starttime=nil, endtime=nil, userid=nil, roomid=nil)
  @CommId = commid
  @StartTime = starttime
  @EndTime = endtime
  @UserId = userid
  @RoomId = roomid
end

Public Instance Methods

deserialize(params) click to toggle source
# File lib/v20190722/models.rb, line 427
def deserialize(params)
  @CommId = params['CommId']
  @StartTime = params['StartTime']
  @EndTime = params['EndTime']
  @UserId = params['UserId']
  @RoomId = params['RoomId']
end