Class: TencentCloud::Live::V20180801::DescribeDeliverLogDownListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeDeliverLogDownListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeDeliverLogDownList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(loginfolist = nil, totalnum = nil, requestid = nil) ⇒ DescribeDeliverLogDownListResponse
constructor
A new instance of DescribeDeliverLogDownListResponse.
Constructor Details
#initialize(loginfolist = nil, totalnum = nil, requestid = nil) ⇒ DescribeDeliverLogDownListResponse
Returns a new instance of DescribeDeliverLogDownListResponse.
6211 6212 6213 6214 6215 |
# File 'lib/v20180801/models.rb', line 6211 def initialize(loginfolist=nil, totalnum=nil, requestid=nil) @LogInfoList = loginfolist @TotalNum = totalnum @RequestId = requestid end |
Instance Attribute Details
#LogInfoList ⇒ Object
6209 6210 6211 |
# File 'lib/v20180801/models.rb', line 6209 def LogInfoList @LogInfoList end |
#RequestId ⇒ Object
6209 6210 6211 |
# File 'lib/v20180801/models.rb', line 6209 def RequestId @RequestId end |
#TotalNum ⇒ Object
6209 6210 6211 |
# File 'lib/v20180801/models.rb', line 6209 def TotalNum @TotalNum end |
Instance Method Details
#deserialize(params) ⇒ Object
6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 |
# File 'lib/v20180801/models.rb', line 6217 def deserialize(params) unless params['LogInfoList'].nil? @LogInfoList = [] params['LogInfoList'].each do |i| pushloginfo_tmp = PushLogInfo.new pushloginfo_tmp.deserialize(i) @LogInfoList << pushloginfo_tmp end end @TotalNum = params['TotalNum'] @RequestId = params['RequestId'] end |