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.
13439 13440 13441 13442 |
# File 'lib/v20180525/models.rb', line 13439 def initialize(appcharts=nil, requestid=nil) @AppCharts = appcharts @RequestId = requestid end |
Instance Attribute Details
#AppCharts ⇒ Object
13437 13438 13439 |
# File 'lib/v20180525/models.rb', line 13437 def AppCharts @AppCharts end |
#RequestId ⇒ Object
13437 13438 13439 |
# File 'lib/v20180525/models.rb', line 13437 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 |
# File 'lib/v20180525/models.rb', line 13444 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 |