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.
9062 9063 9064 9065 9066 |
# File 'lib/v20180801/models.rb', line 9062 def initialize(loginfolist=nil, totalnum=nil, requestid=nil) @LogInfoList = loginfolist @TotalNum = totalnum @RequestId = requestid end |
Instance Attribute Details
#LogInfoList ⇒ Object
9060 9061 9062 |
# File 'lib/v20180801/models.rb', line 9060 def LogInfoList @LogInfoList end |
#RequestId ⇒ Object
9060 9061 9062 |
# File 'lib/v20180801/models.rb', line 9060 def RequestId @RequestId end |
#TotalNum ⇒ Object
9060 9061 9062 |
# File 'lib/v20180801/models.rb', line 9060 def TotalNum @TotalNum end |
Instance Method Details
#deserialize(params) ⇒ Object
9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 |
# File 'lib/v20180801/models.rb', line 9068 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 |