Class: TencentCloud::Iotcloud::V20180614::ListLogPayloadRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotcloud::V20180614::ListLogPayloadRequest
- Defined in:
- lib/v20180614/models.rb
Overview
ListLogPayload请求参数结构体
Instance Attribute Summary collapse
-
#Context ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish.
-
#Keywords ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish.
-
#MaxNum ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish.
-
#MaxTime ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish.
-
#MinTime ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mintime = nil, maxtime = nil, keywords = nil, context = nil, maxnum = nil) ⇒ ListLogPayloadRequest
constructor
A new instance of ListLogPayloadRequest.
Constructor Details
#initialize(mintime = nil, maxtime = nil, keywords = nil, context = nil, maxnum = nil) ⇒ ListLogPayloadRequest
Returns a new instance of ListLogPayloadRequest.
3220 3221 3222 3223 3224 3225 3226 |
# File 'lib/v20180614/models.rb', line 3220 def initialize(mintime=nil, maxtime=nil, keywords=nil, context=nil, maxnum=nil) @MinTime = mintime @MaxTime = maxtime @Keywords = keywords @Context = context @MaxNum = maxnum end |
Instance Attribute Details
#Context ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish
3218 3219 3220 |
# File 'lib/v20180614/models.rb', line 3218 def Context @Context end |
#Keywords ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish
3218 3219 3220 |
# File 'lib/v20180614/models.rb', line 3218 def Keywords @Keywords end |
#MaxNum ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish
3218 3219 3220 |
# File 'lib/v20180614/models.rb', line 3218 def MaxNum @MaxNum end |
#MaxTime ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish
3218 3219 3220 |
# File 'lib/v20180614/models.rb', line 3218 def MaxTime @MaxTime end |
#MinTime ⇒ Object
一个典型的查询示例:ProductID:ABCDE12345 DeviceName:test publish
3218 3219 3220 |
# File 'lib/v20180614/models.rb', line 3218 def MinTime @MinTime end |
Instance Method Details
#deserialize(params) ⇒ Object
3228 3229 3230 3231 3232 3233 3234 |
# File 'lib/v20180614/models.rb', line 3228 def deserialize(params) @MinTime = params['MinTime'] @MaxTime = params['MaxTime'] @Keywords = params['Keywords'] @Context = params['Context'] @MaxNum = params['MaxNum'] end |