Class: TencentCloud::Live::V20180801::DescribeLogDownloadListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeLogDownloadListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeLogDownloadList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(loginfolist = nil, totalnum = nil, requestid = nil) ⇒ DescribeLogDownloadListResponse
constructor
A new instance of DescribeLogDownloadListResponse.
Constructor Details
#initialize(loginfolist = nil, totalnum = nil, requestid = nil) ⇒ DescribeLogDownloadListResponse
Returns a new instance of DescribeLogDownloadListResponse.
8993 8994 8995 8996 8997 |
# File 'lib/v20180801/models.rb', line 8993 def initialize(loginfolist=nil, totalnum=nil, requestid=nil) @LogInfoList = loginfolist @TotalNum = totalnum @RequestId = requestid end |
Instance Attribute Details
#LogInfoList ⇒ Object
8991 8992 8993 |
# File 'lib/v20180801/models.rb', line 8991 def LogInfoList @LogInfoList end |
#RequestId ⇒ Object
8991 8992 8993 |
# File 'lib/v20180801/models.rb', line 8991 def RequestId @RequestId end |
#TotalNum ⇒ Object
8991 8992 8993 |
# File 'lib/v20180801/models.rb', line 8991 def TotalNum @TotalNum end |
Instance Method Details
#deserialize(params) ⇒ Object
8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 |
# File 'lib/v20180801/models.rb', line 8999 def deserialize(params) unless params['LogInfoList'].nil? @LogInfoList = [] params['LogInfoList'].each do |i| loginfo_tmp = LogInfo.new loginfo_tmp.deserialize(i) @LogInfoList << loginfo_tmp end end @TotalNum = params['TotalNum'] @RequestId = params['RequestId'] end |