class TencentCloud::Trtc::V20190722::DescribeHistoryScaleRequest

DescribeHistoryScale请求参数结构体

Attributes

EndTime[RW]

@param SdkAppId: 用户sdkappid @type SdkAppId: String @param StartTime: 查询开始时间,5天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer

SdkAppId[RW]

@param SdkAppId: 用户sdkappid @type SdkAppId: String @param StartTime: 查询开始时间,5天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer

StartTime[RW]

@param SdkAppId: 用户sdkappid @type SdkAppId: String @param StartTime: 查询开始时间,5天内。本地unix时间戳(1588031999s) @type StartTime: Integer @param EndTime: 查询结束时间,本地unix时间戳(1588031999s) @type EndTime: Integer

Public Class Methods

new(sdkappid=nil, starttime=nil, endtime=nil) click to toggle source
# File lib/v20190722/models.rb, line 474
def initialize(sdkappid=nil, starttime=nil, endtime=nil)
  @SdkAppId = sdkappid
  @StartTime = starttime
  @EndTime = endtime
end

Public Instance Methods

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