Class: TencentCloud::Vod::V20180717::DescribeCLSLogsetsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::DescribeCLSLogsetsResponse
- Defined in:
- lib/v20180717/models.rb
Overview
DescribeCLSLogsets返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(logsets = nil, requestid = nil) ⇒ DescribeCLSLogsetsResponse
constructor
A new instance of DescribeCLSLogsetsResponse.
Constructor Details
#initialize(logsets = nil, requestid = nil) ⇒ DescribeCLSLogsetsResponse
Returns a new instance of DescribeCLSLogsetsResponse.
10138 10139 10140 10141 |
# File 'lib/v20180717/models.rb', line 10138 def initialize(logsets=nil, requestid=nil) @Logsets = logsets @RequestId = requestid end |
Instance Attribute Details
#Logsets ⇒ Object
10136 10137 10138 |
# File 'lib/v20180717/models.rb', line 10136 def Logsets @Logsets end |
#RequestId ⇒ Object
10136 10137 10138 |
# File 'lib/v20180717/models.rb', line 10136 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 |
# File 'lib/v20180717/models.rb', line 10143 def deserialize(params) unless params['Logsets'].nil? @Logsets = [] params['Logsets'].each do |i| clslogsetinfo_tmp = CLSLogsetInfo.new clslogsetinfo_tmp.deserialize(i) @Logsets << clslogsetinfo_tmp end end @RequestId = params['RequestId'] end |