Class: TencentCloud::Tke::V20180525::GetTkeAppChartListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::GetTkeAppChartListResponse
- Defined in:
- lib/v20180525/models.rb
Overview
GetTkeAppChartList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(appcharts = nil, requestid = nil) ⇒ GetTkeAppChartListResponse
constructor
A new instance of GetTkeAppChartListResponse.
Constructor Details
#initialize(appcharts = nil, requestid = nil) ⇒ GetTkeAppChartListResponse
Returns a new instance of GetTkeAppChartListResponse.
12228 12229 12230 12231 |
# File 'lib/v20180525/models.rb', line 12228 def initialize(appcharts=nil, requestid=nil) @AppCharts = appcharts @RequestId = requestid end |
Instance Attribute Details
#AppCharts ⇒ Object
12226 12227 12228 |
# File 'lib/v20180525/models.rb', line 12226 def AppCharts @AppCharts end |
#RequestId ⇒ Object
12226 12227 12228 |
# File 'lib/v20180525/models.rb', line 12226 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 |
# File 'lib/v20180525/models.rb', line 12233 def deserialize(params) unless params['AppCharts'].nil? @AppCharts = [] params['AppCharts'].each do |i| appchart_tmp = AppChart.new appchart_tmp.deserialize(i) @AppCharts << appchart_tmp end end @RequestId = params['RequestId'] end |