Class: TencentCloud::Emr::V20190103::DescribeInsightListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeInsightListResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeInsightList返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ResultList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, resultlist = nil, requestid = nil) ⇒ DescribeInsightListResponse
constructor
A new instance of DescribeInsightListResponse.
Constructor Details
#initialize(totalcount = nil, resultlist = nil, requestid = nil) ⇒ DescribeInsightListResponse
Returns a new instance of DescribeInsightListResponse.
4172 4173 4174 4175 4176 |
# File 'lib/v20190103/models.rb', line 4172 def initialize(totalcount=nil, resultlist=nil, requestid=nil) @TotalCount = totalcount @ResultList = resultlist @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4170 4171 4172 |
# File 'lib/v20190103/models.rb', line 4170 def RequestId @RequestId end |
#ResultList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4170 4171 4172 |
# File 'lib/v20190103/models.rb', line 4170 def ResultList @ResultList end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4170 4171 4172 |
# File 'lib/v20190103/models.rb', line 4170 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 |
# File 'lib/v20190103/models.rb', line 4178 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ResultList'].nil? @ResultList = [] params['ResultList'].each do |i| insightresult_tmp = InsightResult.new insightresult_tmp.deserialize(i) @ResultList << insightresult_tmp end end @RequestId = params['RequestId'] end |