Class: TencentCloud::Iotexplorer::V20190423::InvokeVideosKeywordsAnalyzerRequest

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

Overview

InvokeVideosKeywordsAnalyzer请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(productid = nil, devicename = nil, starttimems = nil, endtimems = nil, keywordsmaxnum = nil) ⇒ InvokeVideosKeywordsAnalyzerRequest

Returns a new instance of InvokeVideosKeywordsAnalyzerRequest.



10038
10039
10040
10041
10042
10043
10044
# File 'lib/v20190423/models.rb', line 10038

def initialize(productid=nil, devicename=nil, starttimems=nil, endtimems=nil, keywordsmaxnum=nil)
  @ProductId = productid
  @DeviceName = devicename
  @StartTimeMs = starttimems
  @EndTimeMs = endtimems
  @KeywordsMaxNum = keywordsmaxnum
end

Instance Attribute Details

#DeviceNameObject

注:

  1. 单位为毫秒(ms)

  2. 时间区间必须控制在某一个自然天内,不支持跨天

Parameters:

  • KeywordsMaxNum:

    返回的关键字最大数量,默认为5;最大不能超过10



10036
10037
10038
# File 'lib/v20190423/models.rb', line 10036

def DeviceName
  @DeviceName
end

#EndTimeMsObject

注:

  1. 单位为毫秒(ms)

  2. 时间区间必须控制在某一个自然天内,不支持跨天

Parameters:

  • KeywordsMaxNum:

    返回的关键字最大数量,默认为5;最大不能超过10



10036
10037
10038
# File 'lib/v20190423/models.rb', line 10036

def EndTimeMs
  @EndTimeMs
end

#KeywordsMaxNumObject

注:

  1. 单位为毫秒(ms)

  2. 时间区间必须控制在某一个自然天内,不支持跨天

Parameters:

  • KeywordsMaxNum:

    返回的关键字最大数量,默认为5;最大不能超过10



10036
10037
10038
# File 'lib/v20190423/models.rb', line 10036

def KeywordsMaxNum
  @KeywordsMaxNum
end

#ProductIdObject

注:

  1. 单位为毫秒(ms)

  2. 时间区间必须控制在某一个自然天内,不支持跨天

Parameters:

  • KeywordsMaxNum:

    返回的关键字最大数量,默认为5;最大不能超过10



10036
10037
10038
# File 'lib/v20190423/models.rb', line 10036

def ProductId
  @ProductId
end

#StartTimeMsObject

注:

  1. 单位为毫秒(ms)

  2. 时间区间必须控制在某一个自然天内,不支持跨天

Parameters:

  • KeywordsMaxNum:

    返回的关键字最大数量,默认为5;最大不能超过10



10036
10037
10038
# File 'lib/v20190423/models.rb', line 10036

def StartTimeMs
  @StartTimeMs
end

Instance Method Details

#deserialize(params) ⇒ Object



10046
10047
10048
10049
10050
10051
10052
# File 'lib/v20190423/models.rb', line 10046

def deserialize(params)
  @ProductId = params['ProductId']
  @DeviceName = params['DeviceName']
  @StartTimeMs = params['StartTimeMs']
  @EndTimeMs = params['EndTimeMs']
  @KeywordsMaxNum = params['KeywordsMaxNum']
end